@charset "UTF-8";
/* ============================================================
   PaySpot ME — Krediti / Loans page
   Used ONLY by kredit-cg.html + krediti-en.html.

   Self-contained + namespaced under .cr so it never collides with
   the legacy css/style.css. The shared header/footer keep
   css/site-chrome.css + js/site.js; this file styles the page body
   that lives inside the fixed-scroll .root.

   Design: the PaySpot "ink vault" language — near-black surfaces,
   brand red, the diamond mark — shared with css/payments.css and
   css/transfer.css so the service pages read as one family. The
   signature here is the live "loan dossier": the required documents
   attach themselves one by one, a progress bar fills, then an
   ODOBRENO / APPROVED stamp drops with a reference code. No fees or
   rates are invented — the source page quotes none; the documentation
   checklist itself is the content.
   Type roles: Space Grotesk (display/figures), Poppins (body, matches
   the site), Space Mono (codes + data).
   ============================================================ */

.cr {
  /* ---- tokens (mirror the brand system) ---- */
  --red: #e10000;
  --red-600: #c20000;
  --red-700: #a30000;
  --red-300: #ff6a62;
  --red-soft: #ffecec;

  --ink: #0e0f14;
  --ink-1: #14151a;
  --ink-2: #1a1c24;
  --panel: #15161d;
  --text: #1f2330;
  --muted: #626875;
  --muted-2: #8a909c;
  --line: #e9ebf0;
  --line-2: #f0f2f6;

  --paper: #ffffff;
  --soft: #eef0f4;

  --green: #18e08a;
  --amber: #f5b13d;

  --radius-xl: 30px;
  --radius: 20px;
  --radius-sm: 12px;
  --pill: 999px;

  --shadow-md: 0 16px 40px rgba(16, 18, 27, 0.1);
  --shadow-lg: 0 34px 80px rgba(16, 18, 27, 0.18);
  --shadow-red: 0 18px 40px rgba(225, 0, 0, 0.3);

  --grad-red: linear-gradient(120deg, #ff3b30 0%, #e10000 55%, #b00000 100%);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --disp: "Space Grotesk", "Poppins", system-ui, sans-serif;
  --body: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: "Space Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;

  --mark-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath fill='%23ffffff' fill-opacity='.06' d='M94 16L16 94L76 94L94 76ZM106 16L184 94L124 94L106 76ZM184 106L136 154L106 124L124 106ZM16 106L140 230L170 200L76 106Z'/%3E%3C/svg%3E");
  --mark-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath fill='%23e6eaf1' d='M94 16L16 94L76 94L94 76ZM106 16L184 94L124 94L106 76ZM184 106L136 154L106 124L124 106ZM16 106L140 230L170 200L76 106Z'/%3E%3C/svg%3E");

  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}

.cr *,
.cr *::before,
.cr *::after {
  box-sizing: border-box;
}
.cr h1,
.cr h2,
.cr h3,
.cr h4,
.cr p {
  margin: 0;
}
/* The reset above (.cr p = spec 0,1,1) out-specifies single-class paragraph
   margins, so they silently collapse to 0. Re-assert with the .cr prefix —
   margin only, so color/variant rules are untouched. */
.cr .cr-lead {
  margin-top: 26px;
}
.cr .cr-sub {
  margin-top: 14px;
}
/* the dossier note is a <p> too — keep it off the approval seal above it */
.cr .cr-dos-note {
  margin-top: 20px;
}
.cr a {
  color: inherit;
  text-decoration: none;
}
.cr ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cr img {
  display: block;
  max-width: 100%;
}
.cr :focus-visible {
  outline: 3px solid rgba(225, 0, 0, 0.5);
  outline-offset: 3px;
  border-radius: 6px;
}

.cr-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* shared eyebrow — uppercase red micro-label with a leading bar */
.cr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.cr-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}
.cr-eyebrow--light {
  color: var(--red-300);
}
.cr-eyebrow--light::before {
  background: var(--red-300);
}
.cr-eyebrow--center {
  justify-content: center;
}

/* section heading block */
.cr-head {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.cr-head .cr-eyebrow {
  margin-bottom: 16px;
}
.cr-title {
  font-family: var(--disp);
  font-size: clamp(27px, 3.6vw, 40px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cr-title .hl {
  color: var(--red);
}
.cr-title--light {
  color: #fff;
}
.cr-sub {
  margin-top: 14px;
  font-size: 16.5px;
  color: var(--muted);
}
.cr-sub--light {
  color: rgba(255, 255, 255, 0.66);
}

/* buttons */
.cr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
/* scoped under .cr so the color wins over `.cr a { color: inherit }`
   (which otherwise out-specifies a single-class button rule) */
.cr .cr-btn-primary {
  background: var(--grad-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.cr .cr-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(225, 0, 0, 0.4);
}
.cr .cr-btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.cr .cr-btn-light:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-3px);
}
.cr .cr-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.cr .cr-btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
}

/* ============================================================
   HERO  —  copy + live loan dossier on an ink stage
   ============================================================ */
.cr-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  background-image: radial-gradient(
      1000px 640px at 84% 14%,
      rgba(225, 0, 0, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, #15161d 0%, #0e0f14 60%, #101117 100%);
  color: #fff;
  /* clears the fixed header (top bar ~42 + nav ~84) and breathes */
  padding: clamp(132px, 15vh, 176px) 0 clamp(64px, 8vh, 104px);
}
/* diamond watermark on the stage */
.cr-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -140px;
  width: 520px;
  height: 620px;
  background: var(--mark-white) center / contain no-repeat;
  pointer-events: none;
}
/* closing red hairline beam */
.cr-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(760px, 86%);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225, 0, 0, 0.75),
    transparent
  );
}
.cr-hero .cr-wrap {
  position: relative;
  z-index: 2;
}
.cr-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 54px;
  align-items: center;
}
.cr-hero-copy .cr-eyebrow {
  margin-bottom: 22px;
}
.cr-hero h1 {
  font-family: var(--disp);
  font-size: clamp(33px, 4.8vw, 56px);
  line-height: 1.07;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
/* the key phrase as plain brand-red text — the phrase is long and a solid
   red stamp broke into an ugly multi-line block as the headline wrapped */
.cr-hero h1 .hl {
  color: var(--red-300);
}
.cr-lead {
  margin-top: 26px;
  max-width: 560px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.74);
  border-left: 3px solid var(--red);
  padding-left: 18px;
}
.cr-lead b {
  color: #fff;
  font-weight: 600;
}
.cr-lead a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 106, 98, 0.7);
}

/* three proofs as a hairline-divided row */
.cr-why {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.cr-why-item {
  padding: 20px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.cr-why-item:first-child {
  border-left: 0;
}
.cr-why-item b {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  font-family: var(--disp);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.25;
  text-wrap: balance;
  color: #fff;
}
.cr-why-item b::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.34em; /* optically center the diamond on the first line */
  background: var(--red-300);
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.cr-why-item span {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}
/* reserve the two-line height while two-column so descriptions share a
   baseline even when a label wraps */
@media (min-width: 981px) {
  .cr-why-item b {
    min-height: 2.5em;
  }
}

/* ----- the live loan "dossier" (self-assembling application) ----- */
.cr-dossier {
  position: relative;
  max-width: 466px;
  margin-left: auto;
  border-radius: 26px;
  padding: 26px clamp(22px, 2.3vw, 30px) 24px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.02) 62%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* top hairline beam */
.cr-dossier::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 106, 98, 0.6),
    transparent
  );
}
.cr-dos-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cr-dos-brand {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.66);
}
.cr-dos-brand b {
  color: #fff;
}
/* status pill: amber "in review" -> green "approved" */
.cr-dos-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: var(--pill);
  color: var(--amber);
  background: rgba(245, 177, 61, 0.12);
  border: 1px solid rgba(245, 177, 61, 0.34);
  transition: color 0.4s var(--ease), background-color 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.cr-dos-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(245, 177, 61, 0.18);
  transition: box-shadow 0.4s var(--ease);
}
.cr-dossier.approved .cr-dos-status {
  color: var(--green);
  background: rgba(24, 224, 138, 0.12);
  border-color: rgba(24, 224, 138, 0.4);
}
.cr-dossier.approved .cr-dos-status::before {
  box-shadow: 0 0 0 4px rgba(24, 224, 138, 0.18);
}
.cr-dos-status .s-wait {
  display: inline;
}
.cr-dos-status .s-done {
  display: none;
}
.cr-dossier.approved .cr-dos-status .s-wait {
  display: none;
}
.cr-dossier.approved .cr-dos-status .s-done {
  display: inline;
}

/* applicant + live counter */
.cr-dos-applicant {
  margin-top: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cr-dos-who {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cr-dos-who .k {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.cr-dos-who .v {
  font-family: var(--disp);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}
.cr-dos-count {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}
.cr-dos-count b {
  color: var(--red-300);
  font-size: 17px;
}

/* the document checklist — rows attach in sequence */
.cr-dos-list {
  margin-top: 6px;
}
.cr-dos-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0.4;
  transition: opacity 0.45s var(--ease);
}
.cr-dos-row:last-child {
  border-bottom: 0;
}
.cr-dos-row.done {
  opacity: 1;
}
.cr-dos-ico {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--red-300);
  background: rgba(225, 0, 0, 0.12);
  border: 1px solid rgba(255, 106, 98, 0.26);
  transform: rotate(45deg);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.cr-dos-ico svg {
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
}
.cr-dos-row.done .cr-dos-ico {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}
.cr-dos-name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}
/* the "attached" tag + tick that appear when a row clears */
.cr-dos-tag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.35s var(--ease);
}
.cr-dos-row.done .cr-dos-tag {
  color: var(--green);
}
.cr-dos-check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0a0b0f;
  background: var(--green);
  opacity: 0;
  transform: scale(0.4);
}
.cr-dos-check svg {
  width: 12px;
  height: 12px;
}
.cr-dos-row.done .cr-dos-check {
  animation: cr-tick 0.45s var(--ease) forwards;
}

/* progress bar */
.cr-dos-progress {
  margin-top: 18px;
  height: 6px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.cr-dos-progress i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--pill);
  background: var(--grad-red);
  transition: width 0.5s var(--ease);
}
.cr-dossier.approved .cr-dos-progress i {
  background: linear-gradient(90deg, #14c878, var(--green));
}

/* ODOBRENO / APPROVED stamp — drops in once every document attaches */
.cr-dos-seal {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(24, 224, 138, 0.1);
  border: 1px solid rgba(24, 224, 138, 0.28);
  /* space is always reserved; the seal only fades in — no layout shift */
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.cr-dos-seal.show {
  opacity: 1;
}
.cr-dos-stamp {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--green);
  border: 2.5px solid var(--green);
  font-family: var(--disp);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
  line-height: 1.1;
  transform: rotate(-13deg) scale(0.4);
  opacity: 0;
  box-shadow: 0 0 0 4px rgba(24, 224, 138, 0.1);
}
.cr-dos-seal.show .cr-dos-stamp {
  animation: cr-stamp 0.5s var(--ease) 0.05s forwards;
}
.cr-dos-seal-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.cr-dos-seal-text strong {
  font-family: var(--disp);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.cr-dos-ref {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
}
.cr-dos-ref .cv {
  color: var(--red-300);
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* footer note */
.cr-dos-note {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
}
.cr-dos-note svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   DOCUMENTATION — the two borrower dossiers (the core content)
   light slate canvas, ink-vault cards
   ============================================================ */
.cr-docs {
  position: relative;
  background: var(--soft);
  background-image: var(--mark-light), var(--mark-light);
  background-repeat: no-repeat;
  background-position: right -150px top -90px, left -170px bottom -120px;
  background-size: 380px auto, 340px auto;
  padding: clamp(70px, 9vw, 110px) 0;
}
.cr-doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.cr-doc-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.8vw, 38px);
  border-radius: var(--radius-xl);
  background-color: var(--ink-1);
  background-image: radial-gradient(
      460px 300px at 115% -10%,
      rgba(225, 0, 0, 0.2),
      transparent 62%
    ),
    var(--mark-white);
  background-repeat: no-repeat;
  background-position: 0 0, right -90px bottom -110px;
  background-size: auto, 300px auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  color: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease);
}
.cr-doc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 98, 0.4);
  box-shadow: 0 40px 80px rgba(8, 9, 14, 0.45);
}
.cr-doc-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}
.cr-doc-badge {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad-red);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(45deg);
  box-shadow: 0 12px 26px rgba(225, 0, 0, 0.34);
}
.cr-doc-badge svg {
  width: 25px;
  height: 25px;
  transform: rotate(-45deg);
}
.cr-doc-titles .k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-300);
}
.cr-doc-titles h3 {
  margin-top: 4px;
  font-family: var(--disp);
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
/* the document list inside a card */
.cr-doc-list {
  margin-top: 8px;
}
.cr-doc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.cr-doc-item:last-child {
  border-bottom: 0;
}
.cr-doc-item-ico {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  margin-top: 1px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--red-300);
  background: rgba(225, 0, 0, 0.12);
  border: 1px solid rgba(255, 106, 98, 0.26);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.cr-doc-item-ico svg {
  width: 18px;
  height: 18px;
}
.cr-doc-card:hover .cr-doc-item-ico {
  color: #fff;
  background: rgba(225, 0, 0, 0.22);
  border-color: rgba(255, 106, 98, 0.45);
}
.cr-doc-item-txt {
  min-width: 0;
}
.cr-doc-item-txt h4 {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}
.cr-doc-item-txt p {
  margin-top: 3px;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.52);
}

/* representative-example resource — red feature panel under the cards */
.cr-doc-cta {
  margin-top: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 34px) clamp(26px, 3.2vw, 40px);
  border-radius: var(--radius-xl);
  background-color: var(--red-600);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath fill='%23ffffff' fill-opacity='.14' d='M94 16L16 94L76 94L94 76ZM106 16L184 94L124 94L106 76ZM184 106L136 154L106 124L124 106ZM16 106L140 230L170 200L76 106Z'/%3E%3C/svg%3E"),
    var(--grad-red);
  background-repeat: no-repeat;
  background-position: right -30px center, 0 0;
  background-size: 220px auto, auto;
  box-shadow: var(--shadow-red);
  color: #fff;
}
.cr-doc-cta-copy {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}
.cr-doc-cta-ico {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
}
.cr-doc-cta-ico svg {
  width: 27px;
  height: 27px;
}
.cr-doc-cta-text .k {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.cr-doc-cta-text h3 {
  margin-top: 5px;
  font-family: var(--disp);
  font-size: clamp(18px, 2.1vw, 23px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.cr-doc-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
/* white pill button (lives only on the red panel) */
.cr .cr-btn-onred {
  background: #fff;
  color: var(--red-700);
}
.cr .cr-btn-onred:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
}
.cr .cr-btn-onred-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.cr .cr-btn-onred-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* ============================================================
   HOW IT WORKS — numbered steps on an ink stage
   ============================================================ */
.cr-how {
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  background-image: radial-gradient(
      900px 540px at 12% 0%,
      rgba(225, 0, 0, 0.14),
      transparent 60%
    ),
    var(--mark-white);
  background-repeat: no-repeat;
  background-position: 0 0, right -120px bottom -150px;
  background-size: auto, 420px auto;
  color: #fff;
  padding: clamp(70px, 9vw, 110px) 0;
}
.cr-how .cr-title {
  color: #fff;
}
.cr-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
/* dashed flight-line behind the step icons */
.cr-steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-image: linear-gradient(
    90deg,
    var(--red-300) 0 14px,
    transparent 14px 26px
  );
  background-size: 26px 2px;
  opacity: 0.5;
  z-index: 0;
}
.cr-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 24px 28px;
  border-radius: var(--radius);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02) 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease), opacity 0.6s var(--ease);
}
.cr-step:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 98, 0.4);
}
.cr-step-ico {
  width: 54px;
  height: 54px;
  margin: 0 0 22px 6px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad-red);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(45deg);
  box-shadow: 0 12px 26px rgba(225, 0, 0, 0.34);
}
.cr-step-ico svg {
  width: 24px;
  height: 24px;
  transform: rotate(-45deg);
}
.cr-step-n {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red-300);
}
.cr-step h3 {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.cr-step p {
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

/* ============================================================
   LOCATIONS + CTA BAND
   ============================================================ */
.cr-band {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 160% at 0% 0%, #2a0d12, #0e0f14 60%);
}
.cr-band::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -70px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(225, 0, 0, 0.5), transparent 65%);
  filter: blur(54px);
}
.cr-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mark-white) left -120px center / 320px auto no-repeat;
  pointer-events: none;
}
.cr-band .cr-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: clamp(56px, 7vw, 76px);
  padding-bottom: clamp(56px, 7vw, 76px);
}
.cr-band-copy {
  max-width: 600px;
}
.cr-band-copy .cr-eyebrow {
  margin-bottom: 14px;
}
.cr-band h2 {
  font-family: var(--disp);
  color: #fff;
  font-size: clamp(25px, 3.2vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cr-band p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
.cr-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   REVEAL  (driven by site.js [data-reveal] -> .in)
   ============================================================ */
.cr [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}
.cr [data-reveal].in {
  opacity: 1;
  transform: none;
}
/* containers that aren't the hover-cards get the simple transition */
.cr-head[data-reveal],
.cr-hero-copy[data-reveal],
.cr-dossier[data-reveal],
.cr-doc-cta[data-reveal],
.cr-band-copy[data-reveal],
.cr-band-actions[data-reveal] {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
/* staggered grid entrances — restated so hover transform/shadow survive */
.cr-doc-grid > [data-reveal],
.cr-steps > [data-reveal] {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease), opacity 0.6s var(--ease);
}
.cr-doc-grid > [data-reveal]:nth-child(2),
.cr-steps > [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}
.cr-steps > [data-reveal]:nth-child(3) {
  transition-delay: 160ms;
}
.cr-steps > [data-reveal]:nth-child(4) {
  transition-delay: 240ms;
}

@keyframes cr-tick {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  60% {
    opacity: 1;
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes cr-stamp {
  0% {
    opacity: 0;
    transform: rotate(8deg) scale(1.6);
  }
  55% {
    opacity: 1;
    transform: rotate(-15deg) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: rotate(-13deg) scale(1);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .cr-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cr-dossier {
    max-width: 520px;
    margin: 0 auto;
  }
  .cr-doc-grid {
    grid-template-columns: 1fr;
  }
  .cr-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cr-steps::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .cr-doc-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .cr-doc-cta-actions {
    width: 100%;
  }
  .cr-doc-cta-actions .cr-btn {
    flex: 1 1 auto;
  }
}

/* narrowest phones: the long "Reprezentativni primjer" label crowds the
   button's nowrap padding — trim padding/font and free the panel sides so
   it sits comfortably (and may wrap rather than cram) */
@media (max-width: 400px) {
  .cr-doc-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cr-doc-cta-actions .cr-btn {
    padding-left: 16px;
    padding-right: 16px;
    gap: 9px;
    font-size: 14px;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .cr-wrap {
    padding: 0 18px;
  }
  .cr-why {
    grid-template-columns: 1fr;
  }
  .cr-why-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cr-why-item:first-child {
    border-top: 0;
  }
  .cr-steps {
    grid-template-columns: 1fr;
  }
  .cr-dossier {
    padding: 24px 18px 22px;
  }
  .cr-dos-applicant {
    flex-wrap: wrap;
    gap: 8px;
  }
  .cr-band .cr-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cr * {
    transition-duration: 0.001ms !important;
    animation: none !important;
  }
  .cr [data-reveal] {
    opacity: 1;
    transform: none;
  }
  /* the dossier is shown in its final approved state */
  .cr-dos-row.done .cr-dos-check,
  .cr-dos-seal.show .cr-dos-stamp {
    opacity: 1;
    transform: none;
  }
}
