:root {
  --c-primary:      #2563eb;
  --c-primary-dark: #1d4ed8;
  --c-primary-rgb:  37,99,235;
  --c-accent:       #ea580c;
  --c-accent-dark:  color-mix(in srgb, #ea580c 85%, #000);
  --c-accent-rgb:   234,88,12;
  --c-bg:           #f8fafc;
  --c-text:         #0f172a;
  --c-text-muted:   #64748b;
  --c-success:      #16a34a;
  --c-success-rgb:  22,163,74;
  --c-danger:       #dc2626;
  --c-warning:      #ca8a04;
  --radius:         14px;
  --radius-sm:      8px;
  --radius-lg:      20px;

  /* Legacy aliases */
  --color-primary:      #2563eb;
  --color-primary-h:    #1d4ed8;
  --color-accent:       #ea580c;
  --color-accent-h:     color-mix(in srgb, #ea580c 85%, #000);
  --color-success:      #16a34a;
  --color-bg:           #f8fafc;
  --color-text:         #0f172a;
  --color-text-muted:   #64748b;
}

/* ─── Buttons ─── */
.btn-cta {
  background: var(--c-accent); color: #fff; border-radius: var(--radius-sm);
  font-weight: 700; transition: filter .15s, transform .1s, box-shadow .15s;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; text-decoration: none;
  box-shadow: 0 4px 16px rgba(var(--c-accent-rgb),.3);
}
.btn-cta:hover  { filter: brightness(1.08); box-shadow: 0 6px 22px rgba(var(--c-accent-rgb),.42); transform: translateY(-1px); }
.btn-cta:active { transform: scale(.98); }
.btn-cta:disabled { opacity:.55; cursor:not-allowed; filter:none; }

.btn-primary {
  background: var(--c-primary); color: #fff; border-radius: var(--radius-sm);
  font-weight: 600; transition: background .15s, transform .1s;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; text-decoration: none;
}
.btn-primary:hover  { background: var(--c-primary-dark); }
.btn-primary:active { transform: scale(.98); }
.btn-primary:disabled { opacity:.6; cursor:not-allowed; }

.btn-outline {
  background: transparent; color: var(--c-primary);
  border: 2px solid var(--c-primary); border-radius: var(--radius-sm);
  font-weight: 600; transition: all .15s;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none;
}
.btn-outline:hover { background: var(--c-primary); color:#fff; }

/* ─── Header ─── */
.site-header {
  background: #fff; border-bottom: 1px solid #e2e8f0;
  position: sticky; top: 0; z-index: 100; height: 64px;
}
.site-header a { text-decoration: none; }
.site-header .nav-link { font-size:14px; font-weight:500; color:#4b5563; transition:color .15s; }
.site-header .nav-link:hover { color: var(--c-primary); }

/* ─── Logo ─── */
.logo-img {
  height: 36px; width: auto; display: block;
  object-fit: contain; max-width: 160px;
}
.logo-link { display: inline-flex; align-items: center; text-decoration: none; gap: 8px; }
.logo-fallback { font-size: 20px; font-weight: 900; color: var(--c-primary); letter-spacing: -.03em; }

/* ─── Hero ─── */
.hero-bg {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 55%, #0f172a 100%);
  min-height: 580px;
  position: relative;
  overflow: hidden;
}
.hero-bg::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 70% 50%, rgba(var(--c-accent-rgb),.12) 0%, transparent 60%);
}

/* ─── Loan card ─── */
.loan-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
.loan-card-head {
  background: var(--c-primary); color:#fff; padding:18px 24px;
  font-weight:700; font-size:16px; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ─── Range slider ─── */
.loan-range {
  -webkit-appearance:none; appearance:none; width:100%;
  height:6px; border-radius:3px; background:#e2e8f0; outline:none; cursor:pointer;
}
.loan-range::-webkit-slider-thumb {
  -webkit-appearance:none; width:24px; height:24px; border-radius:50%;
  background:var(--c-primary); cursor:pointer; border:3px solid #fff;
  box-shadow:0 2px 8px rgba(var(--c-primary-rgb),.45);
}
.loan-range::-moz-range-thumb {
  width:24px; height:24px; border-radius:50%; background:var(--c-primary);
  cursor:pointer; border:3px solid #fff; box-shadow:0 2px 8px rgba(var(--c-primary-rgb),.45);
}

/* ─── Term buttons ─── */
.term-btn {
  padding:8px 0; border:2px solid #e2e8f0; border-radius:10px;
  background:#fff; font-size:14px; font-weight:600; color:#374151;
  cursor:pointer; transition:all .15s; text-align:center; flex:1;
}
.term-btn:hover { border-color:var(--c-primary); color:var(--c-primary); }
.term-btn--active { border-color:var(--c-primary); background:var(--c-primary); color:#fff; }

/* ─── Phone input ─── */
.phone-input {
  border:2px solid #e2e8f0; border-radius:var(--radius-sm);
  padding:14px 18px; font-size:22px; font-weight:700;
  letter-spacing:.04em; color:var(--c-text);
  transition:border-color .15s, box-shadow .15s; background:#fff; width:100%;
}
.phone-input:focus {
  outline:none; border-color:var(--c-primary);
  box-shadow:0 0 0 3px rgba(var(--c-primary-rgb),.18);
}
.phone-input::placeholder { font-size:18px; font-weight:400; letter-spacing:0; color:#9ca3af; }

/* ─── Trust badge ─── */
.trust-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(255,255,255,.13); border:1px solid rgba(255,255,255,.22);
  border-radius:100px; padding:5px 14px; font-size:13px; font-weight:500; color:#fff;
}

/* ─── Offer card ─── */
.offer-card {
  background:#fff; border-radius:var(--radius); border:1.5px solid #e8edf5;
  transition:border-color .2s, box-shadow .2s, transform .18s;
}
.offer-card:hover {
  border-color:var(--c-primary); box-shadow:0 6px 24px rgba(var(--c-primary-rgb),.12);
  transform:translateY(-2px);
}

/* ─── Partners strip ─── */
.partner-logo { filter:grayscale(1) opacity(.45); transition:filter .2s; }
.partner-logo:hover { filter:grayscale(0) opacity(1); }

/* ─── Progress bar ─── */
.progress-bar { background:#e5e7eb; border-radius:100px; height:8px; overflow:hidden; }
.progress-fill {
  height:100%; background:linear-gradient(90deg, var(--c-success), #34d399);
  border-radius:100px; transition:width 2.8s linear;
}

/* ─── Step ─── */
.step-num {
  width:52px; height:52px; border-radius:50%; background:var(--c-primary); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; font-weight:800; box-shadow:0 4px 16px rgba(var(--c-primary-rgb),.3);
  flex-shrink:0;
}

/* ─── Content article ─── */
.content-article h2 { font-size:1.4rem; font-weight:700; margin:1.6rem 0 .7rem; color:var(--c-text); }
.content-article h3 { font-size:1.15rem; font-weight:600; margin:1.2rem 0 .5rem; color:var(--c-text); }
.content-article p  { margin-bottom:.85rem; line-height:1.75; color:#374151; }
.content-article ul, .content-article ol { margin:.75rem 0 .75rem 1.5rem; line-height:1.75; color:#374151; }
.content-article li { margin-bottom:.35rem; }
.content-article table { width:100%; border-collapse:collapse; margin:1rem 0; font-size:.9rem; }
.content-article th { background:var(--c-primary); color:#fff; padding:10px 14px; text-align:left; }
.content-article td { padding:9px 14px; border-bottom:1px solid #f1f5f9; }
.content-article tr:nth-child(even) td { background:#f8fafc; }
.content-article a { color:var(--c-primary); }

/* ─── FAQ ─── */
.faq-question { font-weight:600; cursor:pointer; padding:16px 0; display:flex; align-items:center; justify-content:space-between; color:var(--c-text); }
.faq-answer { padding-bottom:16px; color:var(--c-text-muted); line-height:1.65; font-size:.95rem; }

/* ─── Animations ─── */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.blink-dot { animation:blink 1.4s infinite; }
@keyframes pulse-ring { 0%{transform:scale(.95);box-shadow:0 0 0 0 rgba(var(--c-success-rgb),.5)} 70%{transform:scale(1);box-shadow:0 0 0 10px rgba(var(--c-success-rgb),0)} 100%{transform:scale(.95)} }
.pulse-ring { animation:pulse-ring 1.8s infinite; }

/* ─── Line clamp ─── */
.line-clamp-2 { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.line-clamp-3 { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }

/* ══════════════════════════════════════════════════════════════
   HERO SECTION COMPONENTS
══════════════════════════════════════════════════════════════ */
.hero-section {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 55%, #0f172a 100%);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse at 75% 40%, rgba(var(--c-accent-rgb),.15) 0%, transparent 55%);
}
@media (max-width:768px) { .hero-section { padding: 40px 0 20px; } }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width:1024px) { .hero-inner { grid-template-columns: 1fr 400px; gap: 32px; } }
@media (max-width:768px)  { .hero-inner { grid-template-columns: 1fr; } }

.hero-left { color: #fff; }

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.hero-title-accent { color: var(--c-accent); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 6px 14px; font-size: 13px; font-weight: 500; color: #fff;
  backdrop-filter: blur(8px);
}
.hero-badge-icon { font-size: 15px; }

.hero-stats { display: flex; align-items: center; gap: 0; margin-top: 12px; }
.hero-stat { padding: 0 20px; text-align: center; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-label { display: block; font-size: 11px; color: rgba(255,255,255,.6); margin-top: 2px; text-transform: uppercase; letter-spacing: .05em; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* Hero right — loan card container */
.hero-right { position: relative; }
@media (max-width:768px) { .hero-right { order: -1; } }

/* Single semantic H1 with responsive title spans */
.hero-title-desktop { display: block; }
.hero-title-mob { display: none; }
@media (max-width: 767px) {
  .hero-title-desktop { display: none; }
  .hero-title-mob { display: block; }
}

/* Mobile-only header CTA button — hidden on tablet/desktop */
.hdr-mob-only { display: inline-flex; align-items: center; }
@media (min-width: 768px) {
  .hdr-mob-only { display: none !important; }
}

/* Mobile variant inside the single H1 */
.hero-title-mob {
  font-size: clamp(1.45rem, 5.5vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #fff;
}

/* ── Loan Card ── */
.loan-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.22), 0 4px 16px rgba(0,0,0,.1);
  overflow: hidden;
}
.loan-card-title {
  background: var(--c-primary); color: #fff;
  padding: 18px 28px; font-size: 17px; font-weight: 700;
}
.card-timer {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border-radius: 100px;
  padding: 3px 10px; font-size: 12px; font-weight: 600;
  float: right; margin-top: 2px;
}

.loan-field { padding: 20px 28px 0; }
.loan-field-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.loan-label { font-size: 13px; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: .04em; }
.loan-slider { padding: 0 28px 4px; }

.amount-value { font-size: 42px; font-weight: 800; color: var(--c-primary); line-height: 1; }
.amount-display { display: flex; align-items: center; gap: 12px; }
.amount-stepper {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--c-primary); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; cursor: pointer;
  transition: all .15s; background: transparent; line-height: 1;
  flex-shrink: 0;
}
.amount-stepper:hover { background: var(--c-primary); color: #fff; }

.loan-slider-labels { display: flex; justify-content: space-between; font-size: 11px; color: #9ca3af; margin-top: 4px; }

/* Term buttons inside loan card */
.loan-terms { display: flex; gap: 8px; padding: 0 28px; }

/* Phone inside loan card */
.hero-phone {
  border: 2px solid #e5e7eb; border-radius: var(--radius-sm);
  padding: 14px 18px; font-size: 22px; font-weight: 700;
  letter-spacing: .04em; color: var(--c-text);
  transition: border-color .15s, box-shadow .15s; background: #fff; width: 100%;
}
.hero-phone:focus {
  outline: none; border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(var(--c-primary-rgb),.18);
}
.hero-phone--error { border-color: var(--c-danger) !important; }
.hero-phone--focus { border-color: var(--c-primary); }
.hero-phone::placeholder { font-size: 18px; font-weight: 400; letter-spacing: 0; color: #9ca3af; }

/* CTA button inside loan card */
.btn-hero-cta {
  background: var(--c-accent); color: #fff; width: 100%;
  padding: 18px; font-size: 18px; font-weight: 800; border: none;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: filter .15s, transform .1s, box-shadow .15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(var(--c-accent-rgb),.38);
}
.btn-hero-cta:hover { filter: brightness(1.08); box-shadow: 0 8px 28px rgba(var(--c-accent-rgb),.48); transform: translateY(-1px); }
.btn-hero-cta:active { transform: scale(.98); }
.btn-hero-cta:disabled, .btn-hero-cta--loading { opacity:.7; cursor:not-allowed; filter:none; transform:none; }

.btn-outline-primary {
  background: transparent; color: var(--c-primary);
  border: 2px solid var(--c-primary); border-radius: var(--radius-sm);
  font-weight: 700; padding: 16px; transition: all .15s;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; cursor: pointer;
}
.btn-outline-primary:hover { background: var(--c-primary); color: #fff; }

.consent-row { display: flex; align-items: flex-start; gap: 10px; }
.consent-check { width: 18px; height: 18px; accent-color: var(--c-primary); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.consent-text { font-size: 11px; color: #9ca3af; line-height: 1.5; }
.consent-link { color: var(--c-primary); }
.cta-hint { font-size: 11px; color: #9ca3af; text-align: center; }

/* Approval screen */
.approval-screen { padding: 32px 28px; text-align: center; }
.approval-check {
  width: 80px; height: 80px; border-radius: 50%; background: #dcfce7;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.approval-progress { height: 8px; background: #e5e7eb; border-radius: 100px; overflow: hidden; margin: 12px 0 6px; }

/* ══════════════════════════════════════════════════════════════
   BENEFITS / SECTIONS
══════════════════════════════════════════════════════════════ */
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width:768px) { .benefits-grid { grid-template-columns: repeat(2,1fr); } }

.benefit-card {
  background: #fff; border-radius: var(--radius); border: 1.5px solid #f1f5f9;
  padding: 24px 20px; transition: box-shadow .2s, border-color .2s;
}
.benefit-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); border-color: #e2e8f0; }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 14px;
}
.benefit-icon--blue   { background: rgba(var(--c-primary-rgb),.1); }
.benefit-icon--green  { background: rgba(var(--c-success-rgb),.1); }
.benefit-icon--orange { background: rgba(var(--c-accent-rgb),.1); }
.benefit-icon--purple { background: #f3e8ff; }
.benefit-title { font-size: 15px; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.benefit-desc  { font-size: 13px; color: #64748b; line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════
   OFFER PREVIEW CARDS
══════════════════════════════════════════════════════════════ */
.offer-preview-card {
  background: #fff; border-radius: var(--radius); border: 1.5px solid #e8edf5;
  padding: 20px; transition: border-color .2s, box-shadow .2s, transform .18s, opacity .3s;
  display: flex; flex-direction: column;
}
.offer-preview-card:hover {
  border-color: var(--c-primary); box-shadow: 0 6px 24px rgba(var(--c-primary-rgb),.12);
  transform: translateY(-2px);
}
.offer-preview-card--exit {
  opacity: 0; transform: scale(.92) translateY(-8px); pointer-events: none;
}
@keyframes offerSlideIn {
  from { opacity: 0; transform: scale(.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.offer-preview-abbr {
  width: 42px; height: 42px; border-radius: 10px; background: rgba(var(--c-primary-rgb),.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: var(--c-primary); text-transform: uppercase;
}
.offer-approval-badge {
  font-size: 11px; background: #dcfce7; color: #15803d;
  border-radius: 100px; padding: 3px 10px; font-weight: 600;
}
.offer-free-badge {
  font-size: 10px; background: rgba(var(--c-accent-rgb),.1); color: var(--c-accent);
  border-radius: 6px; padding: 2px 8px; font-weight: 700;
}
.offer-params-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.offer-param-block { background: #f8fafc; border-radius: 8px; padding: 8px 10px; }
.offer-param-label { font-size: 10px; color: #9ca3af; margin-bottom: 2px; }
.offer-param-value { font-size: 13px; font-weight: 700; color: #1e293b; }
.offer-param-value--green { color: var(--c-success); }

.offer-preview-btn {
  display: flex; align-items: center; justify-content: center;
  background: var(--c-primary); color: #fff; border-radius: var(--radius-sm);
  padding: 11px; font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background .15s, transform .1s;
}
.offer-preview-btn:hover { background: var(--c-primary-dark); transform: translateY(-1px); }
.offer-preview-psk { font-size: 10px; color: #94a3b8; text-align: center; margin-top: -2px; }

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #f1f5f9; }
.faq-item--open .faq-chevron { transform: rotate(180deg); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; cursor: pointer; font-weight: 600; font-size: 16px; color: #1e293b;
  gap: 16px;
}
.faq-chevron { flex-shrink: 0; transition: transform .25s; color: #94a3b8; }
.faq-answer { padding-bottom: 18px; color: #64748b; line-height: 1.7; font-size: 15px; }

/* ══════════════════════════════════════════════════════════════
   STEP (how it works)
══════════════════════════════════════════════════════════════ */
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(var(--c-primary-rgb),.35);
}
.step-number--green  { background: var(--c-success); box-shadow: 0 4px 16px rgba(var(--c-success-rgb),.35); }
.step-number--accent { background: var(--c-accent);  box-shadow: 0 4px 16px rgba(var(--c-accent-rgb),.35); }

/* ══════════════════════════════════════════════════════════════
   VITRINA (offers.php)
══════════════════════════════════════════════════════════════ */
.vitrina-offer-card {
  background: #fff; border-radius: var(--radius); border: 1.5px solid #e8edf5;
  padding: 20px 24px; transition: border-color .2s, box-shadow .2s;
  display: flex; align-items: center; gap: 16px;
}
.vitrina-offer-card:hover { border-color: var(--c-primary); box-shadow: 0 4px 20px rgba(var(--c-primary-rgb),.1); }

/* ══════════════════════════════════════════════════════════════
   SECTION HELPERS
══════════════════════════════════════════════════════════════ */
.section-white  { background: #fff; }
.section-gray   { background: #f8fafc; }
.section-blue   { background: linear-gradient(135deg, rgba(var(--c-primary-rgb),.06) 0%, rgba(var(--c-primary-rgb),.02) 100%); }
.section-dark   { background: var(--c-primary); color: #fff; }

/* ══════════════════════════════════════════════════════════════
   HEADER OVERRIDES (settings-driven)
══════════════════════════════════════════════════════════════ */
.header-cta {
  background: var(--c-accent); color: #fff;
  border-radius: 10px; padding: 8px 20px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: filter .15s; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(var(--c-accent-rgb),.3);
}
.header-cta:hover { filter: brightness(1.08); }

/* ══════════════════════════════════════════════════════════════
   FOOTER OVERRIDES
══════════════════════════════════════════════════════════════ */
.site-footer { background: #0f172a; color: rgba(255,255,255,.75); }
.site-footer a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .15s; }
.site-footer a:hover { color: #fff; }
.footer-heading { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 12px; }

/* ══════════════════════════════════════════════════════════════
   COMPACT LOAN CARD (hero form redesign)
══════════════════════════════════════════════════════════════ */
.loan-card-body { padding: 20px 24px 24px; }

.lc-field { margin-bottom: 16px; }

.lc-amount-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.lc-amount-display {
  font-size: 44px; font-weight: 900; color: var(--c-primary);
  line-height: 1; letter-spacing: -.02em;
}
/* Таймер справа от суммы */
.lc-amount-timer {
  display: flex; align-items: center; gap: 5px;
  background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px;
  padding: 5px 10px; flex-shrink: 0;
  font-size: 14px; font-weight: 800; color: #dc2626;
  font-variant-numeric: tabular-nums; letter-spacing: .02em;
}
.lc-amount-timer-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #dc2626;
  animation: timer-pulse 1.2s ease-in-out infinite; flex-shrink: 0;
}

.lc-label {
  display: block; font-size: 11px; font-weight: 600; color: #9ca3af;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px;
}

.lc-slider {
  -webkit-appearance: none; appearance: none; width: 100%;
  height: 6px; border-radius: 3px; background: #e2e8f0; outline: none; cursor: pointer;
  margin-bottom: 4px;
}
.lc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-primary); cursor: pointer; border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(var(--c-primary-rgb),.45);
}
.lc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--c-primary);
  cursor: pointer; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(var(--c-primary-rgb),.45);
}

.lc-slider-labels {
  display: flex; justify-content: space-between;
  font-size: 11px; color: #cbd5e1;
}

.lc-terms {
  display: flex; gap: 8px;
}
.lc-term-pill {
  flex: 1; padding: 9px 0; border: 2px solid #e2e8f0; border-radius: 10px;
  background: #fff; font-size: 14px; font-weight: 700; color: #374151;
  cursor: pointer; transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
  text-align: center; outline: none; -webkit-tap-highlight-color: transparent;
  touch-action: manipulation; user-select: none;
}
.lc-term-pill:hover { border-color: var(--c-primary); color: var(--c-primary); }
/* active + active:hover — higher specificity to beat :hover on iOS sticky-hover */
.lc-term-pill--active,
.lc-term-pill--active:hover,
.lc-term-pill--active:focus {
  border-color: var(--c-primary); background: var(--c-primary); color: #fff !important;
  box-shadow: 0 2px 8px rgba(var(--c-primary-rgb),.3);
}

.lc-free-badge {
  display: flex; align-items: center; gap: 8px;
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px;
  padding: 10px 14px; margin-bottom: 16px;
  font-size: 13px; font-weight: 600; color: #15803d; line-height: 1.35;
}
.lc-free-badge-icon { font-size: 16px; flex-shrink: 0; }
.lc-overpay {
  font-size: 13px; color: #64748b; background: #f8fafc;
  border-radius: 8px; padding: 8px 12px; margin-bottom: 16px;
  font-weight: 500;
}

.lc-phone {
  width: 100%; border: 2px solid #e2e8f0; border-radius: var(--radius-sm);
  padding: 14px 18px; font-size: 22px; font-weight: 700;
  letter-spacing: .04em; color: var(--c-text);
  transition: border-color .15s, box-shadow .15s; background: #fff;
  outline: none;
}
.lc-phone:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(var(--c-primary-rgb),.18);
}
.lc-phone--error { border-color: var(--c-danger) !important; }
.lc-phone::placeholder { font-size: 18px; font-weight: 400; letter-spacing: 0; color: #9ca3af; }

.lc-phone-error { font-size: 12px; color: var(--c-danger); margin-top: 4px; }

@keyframes timer-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.85); }
}

.lc-submit {
  width: 100%; padding: 17px; font-size: 18px; font-weight: 800;
  background: var(--c-accent); color: #fff; border: none;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: filter .15s, transform .1s, box-shadow .15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(var(--c-accent-rgb),.38);
  margin-bottom: 10px;
}
.lc-submit:hover { filter: brightness(1.08); box-shadow: 0 8px 28px rgba(var(--c-accent-rgb),.48); transform: translateY(-1px); }
.lc-submit:active { transform: scale(.98); }
.lc-submit:disabled, .lc-submit--loading { opacity: .7; cursor: not-allowed; filter: none; transform: none; }

.lc-consent {
  font-size: 10px; color: #9ca3af; line-height: 1.5; text-align: center;
}
.lc-consent-link { color: var(--c-primary); }

/* ══════════════════════════════════════════════════════════════
   OFFER PARAMS ROW (top offers on index)
══════════════════════════════════════════════════════════════ */
.offer-params-row {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 14px;
}
.offer-param-chip {
  font-size: 12px; font-weight: 600; color: #374151;
  background: #f1f5f9; border-radius: 6px; padding: 4px 10px;
}

/* ══════════════════════════════════════════════════════════════
   VITRINA (offers.php) — full redesign
══════════════════════════════════════════════════════════════ */
.vitrina-sticky-bar {
  position: sticky; top: 64px; z-index: 40;
  background: #fff; border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.vitrina-tip-banner {
  background: linear-gradient(90deg, rgba(var(--c-primary-rgb),.06), rgba(var(--c-accent-rgb),.06));
  border: 1px solid rgba(var(--c-primary-rgb),.12);
  border-radius: var(--radius); padding: 12px 16px;
  font-size: 13px; color: #374151;
  display: flex; align-items: center; gap: 8px;
}

.vitrina-progress-wrap {
  background: #f1f5f9; border-radius: var(--radius); padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
}
.vitrina-progress-track {
  flex: 1; height: 6px; background: #e2e8f0; border-radius: 3px; overflow: hidden;
}
.vitrina-progress-fill {
  height: 100%; background: var(--c-success); border-radius: 3px;
  transition: width .4s ease;
}

.offer-row-card {
  background: #fff; border-radius: var(--radius); border: 1.5px solid #e8edf5;
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  transition: border-color .2s, box-shadow .2s, opacity .2s;
  animation: fadeSlideIn .3s ease both;
}
.offer-row-card:hover { border-color: var(--c-primary); box-shadow: 0 4px 20px rgba(var(--c-primary-rgb),.1); }
.offer-row-card--clicked { opacity: .65; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.offer-logo-cell { flex-shrink: 0; width: 60px; }
.offer-row-logo  { width: 60px; height: 36px; object-fit: contain; border-radius: 6px; }
.offer-logo-abbr {
  width: 60px; height: 36px; border-radius: 6px;
  background: rgba(var(--c-primary-rgb),.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: var(--c-primary); text-transform: uppercase;
}

.offer-info-cell  { flex: 1; min-width: 0; }
.offer-row-name   { font-size: 15px; font-weight: 700; color: #1e293b; }
.offer-row-params { font-size: 13px; color: #64748b; margin-top: 3px; }

.offer-free-pill {
  display: inline-block; font-size: 10px; font-weight: 700;
  background: rgba(var(--c-accent-rgb),.1); color: var(--c-accent);
  border-radius: 6px; padding: 2px 7px; margin-left: 6px; vertical-align: middle;
}

.offer-cta-cell { flex-shrink: 0; }
.offer-cta-btn {
  background: var(--c-primary); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: 10px 18px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.offer-cta-btn:hover { background: var(--c-primary-dark); transform: translateY(-1px); }
.offer-cta-btn--muted { background: #94a3b8; }
.offer-cta-btn--muted:hover { background: #64748b; transform: none; }

.traffic-back-modal {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px 28px; max-width: 420px; width: 90%;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}

.toast-notify {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: #1e293b; color: #fff; border-radius: var(--radius);
  padding: 12px 20px; font-size: 14px; font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,.25); z-index: 999;
  max-width: 480px; width: 92%; text-align: center;
  animation: toastIn .3s ease;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.btn-load-more {
  background: transparent; border: 2px solid #e2e8f0; border-radius: var(--radius-sm);
  padding: 12px 32px; font-size: 15px; font-weight: 600; color: #374151;
  cursor: pointer; transition: all .15s;
}
.btn-load-more:hover { border-color: var(--c-primary); color: var(--c-primary); }

.offers-list { display: flex; flex-direction: column; gap: 10px; }

.empty-state { text-align: center; padding: 48px 0; }
.empty-state-icon { width: 48px; height: 48px; color: #9ca3af; margin: 0 auto 12px; }
.empty-state-title { font-size: 18px; font-weight: 700; color: #374151; margin-bottom: 4px; }
.empty-state-sub { font-size: 14px; color: #9ca3af; }

.multi-apply-banner {
  background: linear-gradient(135deg, rgba(var(--c-success-rgb),.08), rgba(var(--c-success-rgb),.03));
  border: 1.5px solid rgba(var(--c-success-rgb),.2);
  border-radius: var(--radius); padding: 14px 18px;
  font-size: 14px; color: #15803d; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}

/* ══════════════════════════════════════════════════════════════
   VITRINA PERSONALIZATION BAR
══════════════════════════════════════════════════════════════ */
.vitrina-person-bar {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff; padding: 10px 16px; border-radius: 12px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 14px; font-weight: 600;
}
.vitrina-phone-mask {
  font-family: 'Courier New', monospace; letter-spacing: .05em;
}

/* Welcome back banner */
.welcome-back-banner {
  background: #fffbeb; border: 1px solid #fde68a; border-radius: 12px;
  padding: 12px 16px; margin-bottom: 16px;
  font-size: 14px; color: #92400e; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}

/* ══════════════════════════════════════════════════════════════
   OFFER CARD — queue-based vitrina
══════════════════════════════════════════════════════════════ */
.offer-queue-card {
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 16px;
  padding: 16px; margin-bottom: 12px;
  display: flex; align-items: center; gap: 14px;
  transition: all .3s ease; cursor: default;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  animation: slideIn .35s ease both;
}
.offer-queue-card:hover { border-color: var(--c-primary); box-shadow: 0 4px 16px rgba(var(--c-primary-rgb),.12); }
.offer-queue-card--clicked { opacity: .65; }
/* Featured first list card — visually highlighted */
.offer-queue-card--featured {
  position: relative;
  border: 2px solid var(--c-primary);
  background: linear-gradient(135deg, rgba(var(--c-primary-rgb),.04) 0%, #fff 100%);
  box-shadow: 0 4px 20px rgba(var(--c-primary-rgb),.18);
  padding: 18px 16px 16px;
  margin-top: 8px;
}
.offer-queue-card--featured::before {
  content: '⭐ Топ предложение';
  font-size: 11px; font-weight: 700; color: var(--c-primary);
  background: #fff; border: 1.5px solid var(--c-primary);
  border-radius: 100px; padding: 3px 10px;
  position: absolute; top: 0; left: 16px; transform: translateY(-50%);
  box-shadow: 0 0 0 2px #fff; /* white halo — перекрывает рамку карточки */
}
.offer-queue-card--featured .offer-queue-name { font-size: 16px; }
.offer-queue-card--featured .offer-queue-btn { font-size: 15px; padding: 11px 22px; }
/* На мобиле — компактнее чтобы не вылезать */
@media (max-width: 480px) {
  .offer-queue-card--featured .offer-queue-btn { font-size: 13px; padding: 9px 12px; }
  .offer-queue-card { overflow: hidden; }
  /* Featured card: нужен overflow: visible чтобы бейдж ::before не обрезался */
  .offer-queue-card--featured { overflow: visible; padding-top: 22px; }
}
.offer-queue-card--exit {
  animation: slideOut .35s ease forwards;
}
.offer-queue-card--enter {
  animation: slideIn .35s ease forwards;
}
@keyframes slideOut {
  to { opacity:0; transform: translateX(40px); max-height:0; margin:0; padding:0; overflow:hidden; }
}
@keyframes slideIn {
  from { opacity:0; transform: translateX(-40px); }
  to   { opacity:1; transform: translateX(0); }
}
.offer-queue-logo { width:64px; height:40px; object-fit:contain; border-radius:6px; flex-shrink:0; }
.offer-queue-abbr {
  width:64px; height:40px; border-radius:6px;
  background: var(--c-primary); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:13px; flex-shrink:0;
}
.offer-queue-info { flex:1; min-width:0; }
.offer-queue-name { font-weight:700; color:#1e293b; font-size:15px; display:flex; align-items:center; flex-wrap:wrap; gap:4px; }
.offer-queue-params { font-size:13px; color:#64748b; margin-top:2px; }
.offer-queue-psk { font-size:11px; color:#94a3b8; margin-top:2px; }
.offer-queue-free-pill {
  display:inline-flex; align-items:center;
  background:#dcfce7; color:#15803d;
  border-radius:100px; padding:2px 8px;
  font-size:11px; font-weight:700;
}
.offer-queue-cta { flex-shrink:0; }
.offer-queue-btn {
  background: var(--c-primary); color: #fff; font-weight: 700; font-size: 14px;
  border: none; border-radius: 10px; padding: 10px 20px; cursor: pointer;
  transition: opacity .15s, transform .1s; white-space: nowrap;
}
.offer-queue-btn:hover { opacity:.9; transform:scale(1.02); }
.offer-queue-btn:active { transform: scale(.97); }
.offer-queue-btn--muted { background: #94a3b8; }
.offer-queue-btn--muted:hover { opacity:1; transform:none; background:#64748b; }

/* Offers list container */
.offers-list { display: flex; flex-direction: column; }

/* ── A/B TEST: Grid cards vitrina ── */
.offers-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .offers-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
.offer-grid-card {
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 16px;
  padding: 16px 12px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: border-color .2s, box-shadow .2s;
  animation: slideIn .35s ease both;
}
.offer-grid-card:hover { border-color: var(--c-primary); box-shadow: 0 4px 20px rgba(var(--c-primary-rgb),.12); }
.offer-grid-card--clicked { opacity: .6; }
/* Featured first card — full-width, highlighted */
.offer-grid-card--featured {
  grid-column: 1 / -1;
  position: relative;
  flex-direction: row; align-items: center; text-align: left;
  background: linear-gradient(135deg, rgba(var(--c-primary-rgb),.04) 0%, #fff 100%);
  border: 2px solid var(--c-primary);
  box-shadow: 0 4px 20px rgba(var(--c-primary-rgb),.15);
  padding: 20px 20px 18px;
  margin-top: 10px;
}
.offer-grid-card--featured .offer-grid-logo-wrap { height: 52px; margin-right: 8px; flex-shrink: 0; }
.offer-grid-card--featured .offer-grid-name { font-size: 16px; }
/* В режиме строки: params растягивается, кнопка прижата вправо */
.offer-grid-card--featured .offer-grid-params { flex: 1; min-width: 0; padding: 0 12px; }
.offer-grid-card--featured .offer-grid-btn { width: auto; padding: 11px 28px; font-size: 15px; flex-shrink: 0; margin-left: auto; }
/* На мобиле — возвращаем колоночный режим */
@media (max-width: 640px) {
  .offer-grid-card--featured {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .offer-grid-card--featured .offer-grid-logo-wrap { margin: 0 auto; }
  .offer-grid-card--featured .offer-grid-params { flex: 0; padding: 0; }
  .offer-grid-card--featured .offer-grid-btn { width: 100%; margin-left: 0; }
}
.offer-grid-card--featured::before {
  content: '⭐ Топ предложение';
  font-size: 11px; font-weight: 700; color: var(--c-primary);
  background: #fff; border: 1.5px solid var(--c-primary);
  border-radius: 100px; padding: 3px 10px;
  position: absolute; top: 0; left: 16px; transform: translateY(-50%);
  box-shadow: 0 0 0 2px #fff;
}
.offer-grid-logo-wrap { height: 48px; display: flex; align-items: center; justify-content: center; }
.offer-grid-logo { max-width: 100px; max-height: 48px; object-fit: contain; }
.offer-grid-abbr { width: 64px; height: 40px; border-radius: 8px; background: var(--c-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; }
.offer-grid-name { font-weight: 700; font-size: 14px; color: #1e293b; line-height: 1.3; }
.offer-grid-free { font-size: 11px; font-weight: 700; color: #15803d; background: #dcfce7; padding: 3px 8px; border-radius: 100px; }
.offer-grid-rate { font-size: 12px; color: #2563eb; font-weight: 600; background: #eff6ff; padding: 3px 8px; border-radius: 100px; }
.offer-grid-params { font-size: 12px; color: #64748b; }
.offer-grid-psk { font-size: 11px; color: #94a3b8; }
.offer-grid-btn {
  background: var(--c-primary); color: #fff; font-weight: 700; font-size: 13px;
  border: none; border-radius: 10px; padding: 9px 16px; cursor: pointer; width: 100%;
  transition: opacity .15s; margin-top: auto;
}
.offer-grid-btn:hover { opacity: .9; }
.offer-grid-btn--muted { background: #94a3b8; }

/* ── Urgency pulse on CTA buttons ── */
@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--c-primary-rgb), 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(var(--c-primary-rgb), 0); }
}
.offer-queue-btn:not(.offer-queue-btn--muted) {
    animation: urgencyPulse 2s infinite;
}
.offer-grid-btn:not(.offer-grid-btn--muted) {
    animation: urgencyPulse 2s infinite;
}

/* ── CTA urgency bar ── */
.cta-urgency-bar {
  background: linear-gradient(135deg, #fef2f2, #fff5f5);
  border: 1px solid #fecaca; border-radius: 10px;
  padding: 10px 16px; margin-bottom: 12px;
  font-size: 13px; font-weight: 600; color: #dc2626;
  display: flex; align-items: center; gap: 8px;
}

/* ── Logo fixes (override unlayered img { height: auto } from frontend.css) ── */
.logo-img {
  height: 36px !important;
  width: auto !important;
  max-width: none !important;
  display: block;
}
.logo-link { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.footer-logo-img {
  height: 36px !important;
  width: auto !important;
  max-width: none !important;
}
/* Vitrina sticky bar logo */
.vitrina-sticky-bar img[alt] {
  height: 28px !important;
  width: auto !important;
}

/* ── Personalization enhancements ── */
.vitrina-person-bar {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff; padding: 14px 18px; border-radius: 14px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 4px 20px rgba(var(--c-primary-rgb), .25);
  border: 1px solid rgba(255,255,255,.12);
}
.vitrina-person-bar .vitrina-phone-mask {
  font-size: 17px; font-weight: 800; letter-spacing: .04em;
  font-family: 'Courier New', monospace;
  text-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.vitrina-person-bar-badge {
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px; padding: 4px 12px; font-size: 12px; font-weight: 600;
}

/* ── Personalization: matched label ── */
.person-matched-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: #dcfce7; color: #15803d;
  border-radius: 100px; padding: 4px 12px; font-size: 12px; font-weight: 700;
}

/* ── CTA countdown timer (offer card level) ── */
.offer-cta-timer {
  font-size: 11px; color: #dc2626; font-weight: 700;
  display: flex; align-items: center; gap: 3px; white-space: nowrap;
}
.offer-cta-timer-val { font-variant-numeric: tabular-nums; }

/* ── Sticky bottom CTA bar ── */
.sticky-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  background: linear-gradient(135deg, #1e3a8a 0%, var(--c-primary, #2563eb) 100%);
  border-top: none;
  box-shadow: 0 -4px 32px rgba(37,99,235,.45);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 12px;
}
/* Progress dots */
.sticky-cta-progress {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.sticky-cta-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.25); border: 2px solid rgba(255,255,255,.4);
  transition: background .25s, border-color .25s, transform .25s;
}
.sticky-cta-dot--done {
  background: #34d399; border-color: #34d399;
  transform: scale(1.25);
  box-shadow: 0 0 0 3px rgba(52,211,153,.3);
}
/* Info block */
.sticky-cta-info {
  flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px;
}
.sticky-cta-main {
  font-size: 13px; color: rgba(255,255,255,.9); font-weight: 500; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.sticky-cta-main strong { color: #fbbf24; font-weight: 700; }
.sticky-cta-timer {
  font-size: 11px; color: rgba(255,255,255,.6); font-variant-numeric: tabular-nums; font-weight: 600;
}
.sticky-cta-timer--critical { color: #fca5a5; animation: urgentBlink 1s ease infinite; }
/* CTA button */
.sticky-cta-btn {
  background: var(--c-accent, #ea580c);
  color: #fff; font-weight: 800; font-size: 14px;
  border: none; border-radius: 12px; padding: 11px 20px; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(234,88,12,.5);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.sticky-cta-btn:hover {
  transform: translateY(-1px);
  background: #c2410c;
  box-shadow: 0 6px 20px rgba(234,88,12,.6);
}
.sticky-cta-btn:active { transform: translateY(0); }

/* ── CTA timer in urgency bar (pulsing when < 5 min) ── */
.urgency-timer-critical { animation: urgentBlink 1s ease infinite; }
@keyframes urgentBlink { 0%,100%{color:#dc2626} 50%{color:#b91c1c} }

/* ══════════════════════════════════════════════════════════════
   FORM PAGE (form.php)
══════════════════════════════════════════════════════════════ */
/* form.php — page title (H1) + sub */
.form-page-h1 {
  font-size: 21px; font-weight: 900; color: #1e293b;
  text-align: center; margin-bottom: 4px; letter-spacing: -.02em;
}
.form-page-sub {
  font-size: 12px; color: #94a3b8; font-weight: 500;
  text-align: center; margin-bottom: 12px;
}

/* form.php — combined info strip (loan params + countdown) */
.form-info-strip {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(90deg, rgba(var(--c-primary-rgb),.07), rgba(var(--c-accent-rgb),.05));
  border: 1.5px solid rgba(var(--c-primary-rgb),.15);
  border-radius: 12px; padding: 8px 14px; margin-bottom: 12px;
  font-size: 13px; font-weight: 600; color: #374151; gap: 8px;
  transition: background .5s, border-color .5s;
}
.form-info-params { display: flex; align-items: center; gap: 6px; }
.form-info-timer { display: flex; align-items: center; gap: 5px; color: #92400e; font-weight: 700; flex-shrink: 0; }

/* form-cta-clock used inside .form-info-timer */
.form-cta-clock {
  font-size: 14px; font-weight: 800; color: #ea580c;
  font-variant-numeric: tabular-nums; letter-spacing: .04em;
  background: rgba(234,88,12,.1); padding: 2px 7px; border-radius: 6px;
}
.form-page { background: var(--c-bg); min-height: 80vh; padding-bottom: 20px; }
.form-personal-banner {
  background: linear-gradient(135deg, rgba(var(--c-primary-rgb),.07), rgba(var(--c-primary-rgb),.03));
  border: 1.5px solid rgba(var(--c-primary-rgb),.18);
  border-radius: 14px; padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.form-personal-badge {
  font-size: 11px; font-weight: 700; color: var(--c-success);
  background: #dcfce7; border-radius: 100px; padding: 4px 10px;
  white-space: nowrap;
}
.form-card {
  background: #fff; border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.13), 0 2px 8px rgba(0,0,0,.07);
  overflow: hidden;
}
.form-card-head {
  background: var(--c-primary); padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.form-approval-pill {
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px; padding: 4px 12px; font-size: 12px; font-weight: 700; color: #fff;
  white-space: nowrap;
}
.form-card-body { padding: 20px 24px 24px; }
.form-field { margin-bottom: 18px; }
.form-field-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.form-label { font-size: 12px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: .05em; }
.form-value-display { font-size: 18px; font-weight: 800; color: var(--c-primary); }
.form-urgency-hint {
  background: #fff7ed; border: 1px solid #fed7aa; border-radius: 10px;
  padding: 8px 12px; font-size: 13px; color: #92400e; font-weight: 600;
  display: flex; align-items: center; gap: 6px; margin-top: 4px;
}
.form-success-timer {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: #374151; justify-content: center;
}
.form-trust-row {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.form-trust-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: #6b7280; font-weight: 500;
}

/* form.php — mobile compact layout (fits phone input in first screen) */
@media (max-width: 639px) {
  /* Remove min-height and trailing padding so no empty gray gap at bottom */
  .form-page { min-height: 0 !important; padding-bottom: 0 !important; }

  #form-wrap { padding-top: 10px !important; padding-bottom: 4px !important; }

  /* Compact H1 */
  .form-page-h1 { font-size: 16px !important; margin-bottom: 2px !important; }
  .form-page-sub { font-size: 11px !important; margin-bottom: 8px !important; }

  /* Slim info strip */
  .form-info-strip { padding: 6px 10px !important; margin-bottom: 8px !important; font-size: 12px !important; }
  .form-cta-clock { font-size: 12px !important; padding: 1px 5px !important; }

  /* Tighter card body */
  .form-card-body { padding: 12px 16px 14px !important; }
  .form-field { margin-bottom: 10px !important; }

  /* Compact free-badge */
  .lc-free-badge { padding: 7px 10px !important; font-size: 12px !important; margin-bottom: 10px !important; }

  /* Hide urgency hint — saves ~45px */
  .form-urgency-hint { display: none !important; }

  /* Slimmer submit */
  .lc-submit { padding: 13px !important; font-size: 16px !important; margin-bottom: 6px !important; }

  /* Slim slider */
  .lc-slider-labels { font-size: 10px; }
}

/* ══════════════════════════════════════════════════════════════
   CONTENT PAGE — service-like redesign
══════════════════════════════════════════════════════════════ */

/* MFO hero card (for mfo type pages) */
.content-mfo-hero {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  border-radius: 16px; padding: 18px 20px; color: #fff;
  box-shadow: 0 4px 24px rgba(var(--c-primary-rgb),.25);
}
.content-mfo-hero-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.content-mfo-params {
  display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap;
}
.content-mfo-param {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px; padding: 8px 12px; text-align: center;
  min-width: 80px; flex: 1;
}
.content-mfo-param-val { display: block; font-weight: 800; font-size: 15px; }
.content-mfo-param-lbl { display: block; font-size: 10px; opacity: .75; margin-top: 1px; }
.content-mfo-psk { font-size: 10px; color: rgba(255,255,255,.55); text-align: center; margin: -4px 0 8px; }
.content-mfo-btn {
  display: block; background: #fff; color: var(--c-primary);
  font-weight: 800; font-size: 15px; text-align: center; text-decoration: none;
  border-radius: 12px; padding: 13px 20px;
  transition: background .15s, transform .1s;
}
.content-mfo-btn:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }
.content-mfo-free-pill {
  display: inline-block; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.35);
  border-radius: 100px; padding: 2px 10px; font-size: 11px; font-weight: 700;
  margin-top: 2px; white-space: nowrap;
}

/* Inline CTA block */
.content-inline-cta {
  background: linear-gradient(90deg, rgba(var(--c-primary-rgb),.05), rgba(var(--c-accent-rgb),.05));
  border: 1.5px solid rgba(var(--c-primary-rgb),.15); border-radius: 14px; padding: 16px 20px;
}
.content-inline-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.content-cta-btn {
  background: var(--c-primary); color: #fff; font-weight: 700; font-size: 14px;
  border-radius: 10px; padding: 11px 22px; text-decoration: none; white-space: nowrap;
  transition: opacity .15s, transform .1s; flex-shrink: 0;
}
.content-cta-btn:hover { opacity: .9; transform: translateY(-1px); }

/* Bottom offers list */
.content-offers-list { display: flex; flex-direction: column; gap: 10px; }
.content-offer-row {
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 14px;
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  transition: border-color .2s, box-shadow .2s;
  animation: slideIn .3s ease both;
}
.content-offer-row:hover { border-color: var(--c-primary); box-shadow: 0 3px 12px rgba(var(--c-primary-rgb),.1); }
.content-offer-row--clicked { opacity: .6; }
.content-offer-logo { width: 60px; height: 36px; object-fit: contain; border-radius: 6px; flex-shrink: 0; }
.content-offer-abbr {
  width: 60px; height: 36px; border-radius: 6px; background: var(--c-primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; flex-shrink: 0;
}
.content-offer-info { flex: 1; min-width: 0; }
.content-offer-name { font-weight: 700; color: #1e293b; font-size: 14px; }
.content-offer-params { font-size: 12px; color: #64748b; margin-top: 2px; }
.content-offer-btn {
  background: var(--c-primary); color: #fff; font-weight: 700; font-size: 13px;
  border: none; border-radius: 8px; padding: 8px 16px; cursor: pointer;
  transition: opacity .15s; white-space: nowrap; flex-shrink: 0;
}
.content-offer-btn:hover { opacity: .9; }
.content-offer-btn--done { background: #94a3b8; }

/* Sidebar lead form widget */
.content-sidebar-form {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  border-radius: 20px; padding: 20px;
  box-shadow: 0 4px 24px rgba(var(--c-primary-rgb),.25);
}
.sidebar-phone-input {
  width: 100%; padding: 11px 14px; border-radius: 10px;
  border: 2px solid rgba(255,255,255,.3); background: rgba(255,255,255,.15);
  color: #fff; font-size: 15px; font-weight: 600;
  outline: none; transition: border-color .2s;
}
.sidebar-phone-input::placeholder { color: rgba(255,255,255,.6); }
.sidebar-phone-input:focus { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.2); }
.sidebar-phone-input--error { border-color: #fca5a5 !important; }
.sidebar-submit-btn {
  width: 100%; background: #fff; color: var(--c-primary);
  font-weight: 800; font-size: 15px; border: none; border-radius: 10px;
  padding: 13px; cursor: pointer; transition: background .15s, transform .1s;
}
.sidebar-submit-btn:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }

/* Content article prose styling overrides */
.content-article h2 { font-size: 1.3rem; font-weight: 800; color: #1e293b; margin: 2rem 0 .75rem; }
.content-article h3 { font-size: 1.1rem; font-weight: 700; color: #1e293b; margin: 1.5rem 0 .5rem; }
.content-article p  { margin-bottom: 1rem; line-height: 1.7; color: #374151; }
.content-article ul, .content-article ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-article li { margin-bottom: .4rem; color: #374151; }
.content-article a  { color: var(--c-primary); text-decoration: underline; }
.content-article table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 14px; }
.content-article table th { background: rgba(var(--c-primary-rgb),.07); font-weight: 700; padding: 10px 12px; text-align: left; border-bottom: 2px solid rgba(var(--c-primary-rgb),.15); }
.content-article table td { padding: 9px 12px; border-bottom: 1px solid #f1f5f9; }
.content-article table tr:last-child td { border-bottom: none; }

/* ══════════════════════════════════════════════════════════════
   UNIVERSAL LEAD FORM (includes/lead_form.php)
══════════════════════════════════════════════════════════════ */
.lf-form-wrap { width: 100%; }
.lf-title {
  font-size: 18px; font-weight: 800; color: #1e293b; margin-bottom: 16px;
}
.lf-field { margin-bottom: 16px; }
.lf-field-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px;
}
.lf-label { font-size: 12px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: .05em; }
.lf-value-display { font-size: 18px; font-weight: 800; color: var(--c-primary); }
.lf-phone {
  width: 100%; padding: 12px 14px; border: 2px solid #e2e8f0; border-radius: 10px;
  font-size: 16px; font-weight: 600; color: #1e293b; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.lf-phone:focus { border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(var(--c-primary-rgb),.12); }
.lf-phone--error { border-color: var(--c-danger) !important; }
.lf-phone-error { font-size: 12px; color: var(--c-danger); margin-top: 4px; font-weight: 500; }
.lf-consent-row {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 14px; font-size: 12px; color: #6b7280; line-height: 1.5;
}
.lf-consent-check { margin-top: 1px; accent-color: var(--c-primary); flex-shrink: 0; }
.lf-consent-link { color: var(--c-primary); text-decoration: underline; }
.lf-submit {
  width: 100%; background: var(--c-primary); color: #fff;
  font-size: 16px; font-weight: 800; border: none; border-radius: 12px;
  padding: 14px; cursor: pointer; transition: opacity .15s, transform .1s;
  box-shadow: 0 4px 16px rgba(var(--c-primary-rgb),.3);
  text-decoration: none; display: block;
}
.lf-submit:hover { opacity: .92; transform: translateY(-1px); }
.lf-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.lf-submit--loading { opacity: .7; cursor: not-allowed; }
.lf-hint { font-size: 12px; color: #94a3b8; text-align: center; margin-top: 8px; }
.lf-success { text-align: center; padding: 24px 16px; }
.lf-success-icon { font-size: 40px; margin-bottom: 8px; }
.lf-success-title { font-size: 20px; font-weight: 800; color: #1e293b; margin-bottom: 4px; }
.lf-success-sub { font-size: 14px; color: #64748b; margin-bottom: 12px; }
.lf-redirect-countdown {
  font-size: 13px; color: #94a3b8; background: #f8fafc; border-radius: 8px; padding: 8px 12px;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════════════════════════════
   PERSONAL DATA BLUR — юридические страницы
══════════════════════════════════════════════════════════════ */
.pd-blur {
  filter: blur(5px);
  cursor: pointer;
  user-select: none;
  transition: filter .3s ease;
  display: inline;
  border-radius: 3px;
}
.pd-blur:hover { filter: blur(3px); }
.pd-blur--revealed { filter: none !important; user-select: text; cursor: default; }
.pd-reveal-hint {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: #94a3b8; cursor: pointer;
  margin-left: 6px; vertical-align: middle;
}
.pd-reveal-hint:hover { color: var(--c-primary); }
/* Operator info box on legal pages */
.legal-operator-box {
  margin-top: 32px; padding: 16px 20px;
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 12px; font-size: 13px; color: #64748b; line-height: 1.8;
}
.legal-operator-box strong { color: #374151; }

/* MFO comparison table on index page */
.mfo-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.mfo-table th {
  background: rgba(var(--c-primary-rgb),.07); font-weight: 700; padding: 10px 14px;
  text-align: left; border-bottom: 2px solid rgba(var(--c-primary-rgb),.12);
  white-space: nowrap;
}
.mfo-table td { padding: 10px 14px; border-bottom: 1px solid #f1f5f9; vertical-align: middle; }
.mfo-table tr:last-child td { border-bottom: none; }
.mfo-table tr:hover td { background: #f8fafc; }
.mfo-table-name { font-weight: 700; color: #1e293b; }
.mfo-table-rate { color: var(--c-primary); font-weight: 600; }
.mfo-table-psk { font-size: 12px; color: #94a3b8; }
/* CTA колонка — 2-я позиция в таблице */
.mfo-table-cta-col { width: 1%; white-space: nowrap; }
.mfo-table-cta-btn {
  display: inline-block;
  padding: 6px 14px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s;
}
.mfo-table-cta-btn:hover { opacity: .85; }

/* Index page SEO stat cards */
.seo-stat-card {
  background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: 14px;
  padding: 16px 18px; text-align: center;
}
.seo-stat-value {
  font-size: 28px; font-weight: 900; color: var(--c-primary); line-height: 1.1;
}
.seo-stat-label {
  font-size: 12px; color: #64748b; margin-top: 4px; line-height: 1.4;
}

/* Footer disclaimer block */
.footer-disclaimer {
  background: rgba(0,0,0,.15); border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 0;
}

/* Index page loan category cards */
.loan-categories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .loan-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .loan-categories-grid { grid-template-columns: 1fr 1fr; }
}
.loan-category-card {
  background: #fff; border: 1.5px solid #e8edf5; border-radius: 16px;
  padding: 18px 16px; text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  display: flex; flex-direction: column; gap: 6px;
}
.loan-category-card:hover {
  border-color: var(--c-primary); box-shadow: 0 4px 16px rgba(var(--c-primary-rgb),.1);
  transform: translateY(-2px);
}
.loan-category-icon { font-size: 28px; line-height: 1; }
.loan-category-title { font-weight: 700; color: #1e293b; font-size: 14px; }
.loan-category-desc  { font-size: 12px; color: #64748b; line-height: 1.4; }
.loan-category-link  { font-size: 12px; font-weight: 700; color: var(--c-primary); margin-top: 4px; }

/* SEO text section */
.seo-about-grid {
  display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start;
}
@media (max-width: 900px) {
  .seo-about-grid { grid-template-columns: 1fr; }
}
.seo-stats-block { background: #f8fafc; border-radius: 16px; padding: 20px; }
.seo-stat-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #e2e8f0; }
.seo-stat-row:last-child { border-bottom: none; }
.seo-stat-val { font-size: 20px; font-weight: 800; color: var(--c-primary); min-width: 80px; }
.seo-stat-lbl { font-size: 13px; color: #64748b; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th { background: rgba(var(--c-primary-rgb),.07); font-weight: 700; padding: 11px 14px; text-align: left; border-bottom: 2px solid rgba(var(--c-primary-rgb),.12); }
.compare-table td { padding: 10px 14px; border-bottom: 1px solid #f1f5f9; vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #f8fafc; }
.compare-table-note { font-size: 11px; color: #94a3b8; margin-top: 8px; text-align: right; }

/* ══════════════════════════════════════════════════════════════
   CONTENT PAGE VITRINA WRAPPER
══════════════════════════════════════════════════════════════ */
.content-vitrina {
  background: #fff; border: 2px solid rgba(var(--c-primary-rgb),.15);
  border-radius: 20px; padding: 20px;
  box-shadow: 0 2px 16px rgba(var(--c-primary-rgb),.06);
}
.content-vitrina-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  margin-bottom: 16px;
}
.content-vitrina-urgency {
  background: #fff7ed; border: 1px solid #fed7aa;
  border-radius: 8px; padding: 4px 10px; white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════
   FAQ ACCORDION — content pages
══════════════════════════════════════════════════════════════ */
.faq-accordion-item {
  border: 1.5px solid #e2e8f0; border-radius: 14px; overflow: hidden;
  margin-bottom: 10px; transition: border-color .2s, box-shadow .2s;
}
.faq-accordion-item:hover { border-color: rgba(var(--c-primary-rgb),.3); }
.faq-accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px; background: #fff; cursor: pointer; border: none;
  text-align: left; font-weight: 700; font-size: 15px; color: #1e293b;
  transition: background .15s;
}
.faq-accordion-trigger:hover { background: rgba(var(--c-primary-rgb),.03); }
.faq-accordion-q { flex: 1; }
.faq-accordion-icon {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--c-primary);
  transition: transform .25s ease;
}
.faq-accordion-body {
  padding: 0 18px 16px; background: #fff; font-size: 14px;
  color: #374151; line-height: 1.7;
}
.faq-accordion-body p { margin-bottom: .75rem; }
.faq-accordion-body p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════════════════════════════ */
.cookie-consent-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: #1e293b; color: #e2e8f0;
  box-shadow: 0 -4px 32px rgba(0,0,0,.25);
  padding: 14px 0;
}
.cookie-consent-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-consent-text {
  flex: 1; font-size: 13px; line-height: 1.5; color: #cbd5e1;
  min-width: 240px;
}
.cookie-consent-link { color: var(--c-primary); text-decoration: underline; }
.cookie-consent-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-consent-btn-accept {
  background: var(--c-primary); color: #fff; font-weight: 700; font-size: 13px;
  border: none; border-radius: 8px; padding: 9px 18px; cursor: pointer;
  transition: opacity .15s;
}
.cookie-consent-btn-accept:hover { opacity: .88; }
.cookie-consent-btn-decline {
  background: transparent; color: #94a3b8; font-weight: 600; font-size: 13px;
  border: 1px solid #334155; border-radius: 8px; padding: 8px 14px; cursor: pointer;
  transition: color .15s, border-color .15s;
}
.cookie-consent-btn-decline:hover { color: #e2e8f0; border-color: #64748b; }

/* ══════════════════════════════════════════════════════════════
   FLOATING CTA BUTTON (bottom-right)
══════════════════════════════════════════════════════════════ */
.floating-cta-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 8000;
  display: flex; align-items: center; gap: 8px;
  background: var(--c-primary); color: #fff;
  font-weight: 800; font-size: 14px;
  padding: 12px 20px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(var(--c-primary-rgb),.45);
  transition: transform .2s, box-shadow .2s, opacity .2s;
  white-space: nowrap;
}
.floating-cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 32px rgba(var(--c-primary-rgb),.5);
}
.floating-cta-btn:active { transform: translateY(0) scale(.98); }
/* Pulse animation to draw attention */
@keyframes floatingPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(var(--c-primary-rgb),.45); }
  50%       { box-shadow: 0 6px 32px rgba(var(--c-primary-rgb),.7), 0 0 0 6px rgba(var(--c-primary-rgb),.15); }
}
.floating-cta-btn { animation: floatingPulse 3s ease-in-out infinite; }
/* Hide on very small screens if sticky bar is shown */
@media (max-width: 480px) {
  .floating-cta-btn span { display: none; }
  .floating-cta-btn { padding: 13px; border-radius: 50%; }
}
