/* ============================================================
   Биржа Розница — ОСАГО landing components
   Built on Rosstrah tokens (styles.css). Namespaced .lp-*
   ============================================================ */

:root {
  --ok: #10b981;
  --ok-bg: #ecfdf5;
  --warn: #f59e0b;
  --ink-1: rgba(255,255,255,0.92);
  --ink-2: rgba(255,255,255,0.74);
}

/* ---- Reveal-on-scroll ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
  position: relative;
  background:
    radial-gradient(115% 130% at 14% 16%, rgba(8,26,82,0.42) 0%, rgba(8,26,82,0) 56%),
    linear-gradient(120deg, #1A4BD6 0%, #2563EB 46%, #2E86D4 100%);
  overflow: hidden;
  padding: 64px 0 84px;
}
.lp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.4px, transparent 1.4px);
  background-size: 26px 26px; opacity: .6; pointer-events: none;
}
.lp-hero::after {
  content: '';
  position: absolute; right: -160px; top: -160px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
  pointer-events: none;
}
.lp-hero .container { position: relative; z-index: 1; }
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.26);
  color: #fff; font-family: 'Manrope',sans-serif; font-weight: 700;
  font-size: 13px; padding: 7px 14px; border-radius: var(--r-pill);
  backdrop-filter: blur(4px); margin-bottom: 22px; white-space: nowrap;
}
.lp-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #7ef0c4;
  box-shadow: 0 0 0 0 rgba(126,240,196,0.7);
  animation: lp-pulse 2s infinite;
}
@keyframes lp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(126,240,196,0.6); }
  70% { box-shadow: 0 0 0 9px rgba(126,240,196,0); }
  100% { box-shadow: 0 0 0 0 rgba(126,240,196,0); }
}
.lp-hero h1 {
  color: #fff; font-weight: 800; font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.06; letter-spacing: -0.035em; max-width: 600px;
}
.lp-hero h1 .hl { color: #c9f3ff; }
.lp-hero-sub {
  color: rgba(255,255,255,0.92); font-size: clamp(17px, 1.6vw, 19px); line-height: 1.55;
  margin: 22px 0 26px; max-width: 500px;
}
.lp-checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.lp-check {
  display: flex; align-items: center; gap: 11px;
  color: var(--ink-1); font-size: 15.5px; font-weight: 500;
}
.lp-check .ic {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  background: rgba(255,255,255,0.92); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-check .ic svg { width: 13px; height: 13px; }
.lp-hero-proof {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  color: var(--ink-2); font-size: 14px;
}
.lp-avatars { display: flex; }
.lp-avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -10px;
  background: #dbeafe; color: var(--primary);
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-avatars span:first-child { margin-left: 0; }
.lp-avatars span.more { background: rgba(255,255,255,0.22); color:#fff; }

/* ---- Hero form card ---- */
.lp-form-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(15,23,42,0.30);
  padding: 28px;
  position: relative;
}
.lp-form-head { margin-bottom: 18px; }
.lp-form-head .t {
  font-family:'Manrope',sans-serif; font-weight: 800; font-size: 21px;
  letter-spacing: -0.02em; color: var(--text);
}
.lp-form-head .s { font-size: 14px; color: var(--text-2); margin-top: 5px; }
.lp-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 13px; }
.lp-field label {
  font-family:'Manrope',sans-serif; font-weight: 600; font-size: 13px; color: var(--text-2);
}
.lp-field input, .lp-field select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--r-btn);
  padding: 13px 15px;
  font-family:'Inter',sans-serif; font-size: 15px;
  background: var(--surface); color: var(--text);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.lp-field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
}
.lp-field input:focus, .lp-field select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,94,255,0.12);
}
.lp-field input::placeholder { color: #9aa8bd; }
.lp-form-card .btn {
  width: 100%; margin-top: 6px;
  padding: 16px 28px; font-size: 16px;
  box-shadow: var(--cta-glow);
}
.lp-form-card .btn:hover { box-shadow: 0 10px 26px rgba(30,94,255,0.34); }
.lp-form-foot {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 14px; font-size: 12.5px; color: var(--text-muted);
}
.lp-form-foot svg { width: 14px; height: 14px; flex: none; }
.lp-form-badges {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.lp-mini {
  font-size: 12px; color: var(--text-2); font-weight: 600;
  font-family:'Manrope',sans-serif;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 6px 11px;
  display: inline-flex; align-items: center; gap: 6px;
}
.lp-mini .d { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }


/* ============================================================
   TRUST BAR (numbers + logos)
   ============================================================ */
.lp-trust { background: var(--surface); padding: 44px 0 8px; }
.lp-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.lp-stat { text-align: center; padding: 8px; }
.lp-stat .v {
  font-family:'Manrope',sans-serif; font-weight: 800; font-size: 40px;
  letter-spacing: -0.03em; color: var(--primary); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.lp-stat .v .u { color: #94a3b8; font-size: 0.6em; font-weight: 700; }
.lp-stat .l { font-size: 14px; color: var(--text-2); margin-top: 8px; }
.lp-logos-wrap { padding: 36px 0 64px; }
.lp-partners {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 38px 40px;
}
.lp-partners-head { text-align: center; max-width: 640px; margin: 0 auto 28px; }
.lp-partners-head .badge { margin-bottom: 14px; }
.lp-partners-head h3 {
  font-family:'Manrope',sans-serif; font-weight: 800; font-size: 25px;
  letter-spacing: -0.025em; line-height: 1.2; color: var(--text);
}
.lp-partners-head p { color: var(--text-2); font-size: 15px; margin: 10px 0 0; }
.lp-partner-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.lp-partner {
  font-family:'Manrope',sans-serif; font-weight: 800; font-size: 16px;
  color: var(--bc, #475569);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 11px 20px;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  cursor: default;
  display: inline-flex; align-items: center; gap: 9px;
}
.lp-partner::before {
  content: ''; width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: var(--bc, var(--text-muted));
}
.lp-partner.lp-top { font-size: 18px; padding: 13px 24px; }
.lp-partner:hover {
  transform: translateY(-3px);
  border-color: var(--bc, var(--primary));
  box-shadow: var(--shadow-lift);
}
.lp-partner-more {
  color: var(--text-muted); background: transparent;
  border-style: dashed; box-shadow: none; font-weight: 700;
}
.lp-partner-more::before { display: none; }
.lp-partner-more:hover { transform: none; border-color: var(--border); box-shadow: none; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.lp-how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  position: relative;
}
.lp-step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 26px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.lp-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: #c7d6e8; }
.lp-step .n {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--accent); color: var(--primary);
  font-family:'Manrope',sans-serif; font-weight: 800; font-size: 19px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.lp-step.hot .n { background: var(--primary); color: #fff; }
.lp-step h3 { font-weight: 700; font-size: 17px; margin-bottom: 7px; letter-spacing: -0.01em; }
.lp-step p { font-size: 14px; color: var(--text-2); margin: 0; }
.lp-guarantee {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  margin-top: 40px; flex-wrap: wrap;
}
.lp-guarantee .g {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--text-2); font-weight: 500;
}
.lp-guarantee .g svg { width: 20px; height: 20px; color: var(--ok); flex: none; }

/* ============================================================
   CHANGES (chips grid)
   ============================================================ */
.lp-changes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.lp-change {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lp-change:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--primary); }
.lp-change.is-clickable { cursor: pointer; }
.lp-change .ic {
  width: 48px; height: 48px; border-radius: 12px; flex: none;
  background: var(--accent); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.lp-change .ic svg { width: 28px; height: 28px; }
.lp-change h3 { font-family:'Manrope',sans-serif; font-weight: 700; font-size: 15.5px; margin: 2px 0 4px; }
.lp-change p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.45; }

/* ============================================================
   EXCHANGE band (soft mention)
   ============================================================ */
.lp-exchange {
  background: #0F172A;
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  padding: 52px 56px;
  color: #fff;
}
.lp-exchange::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1.3px, transparent 1.3px);
  background-size: 24px 24px; opacity: .5;
}
.lp-exchange::after {
  content: ''; position: absolute; right: -120px; bottom: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,94,255,0.5), transparent 70%);
}
.lp-exchange-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center;
}
.lp-exchange .badge { background: rgba(255,255,255,0.14); color: #c9f3ff; }
.lp-exchange h2 {
  color: #fff; font-weight: 800; font-size: 34px; letter-spacing: -0.025em;
  line-height: 1.12; margin: 16px 0 14px;
}
.lp-exchange p { color: var(--ink-2); font-size: 16px; line-height: 1.6; margin: 0 0 22px; }
.lp-ex-points { display: flex; flex-direction: column; gap: 13px; margin: 0 0 26px; }
.lp-ex-point { display: flex; align-items: center; gap: 12px; color: var(--ink-1); font-size: 15px; }
.lp-ex-point .ic {
  width: 26px; height: 26px; border-radius: 8px; flex: none;
  background: rgba(30,94,255,0.35); color: #c9f3ff;
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-ex-point .ic svg { width: 15px; height: 15px; }

/* offers mini-stack visual */
.lp-offers { display: flex; flex-direction: column; gap: 12px; }
.lp-offer {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-card); padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  backdrop-filter: blur(6px);
  cursor: pointer; transition: transform .18s ease, border-color .18s ease;
}
.lp-offer:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.3); }
.lp-offer.best { background: #fff; border-color: #fff; color: var(--text); }
.lp-offer .av {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--grad); color: #fff;
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-offer .who { flex: 1; }
.lp-offer .nm { font-family:'Manrope',sans-serif; font-weight: 700; font-size: 14px; }
.lp-offer.best .nm { color: var(--text); }
.lp-offer .rt { font-size: 12px; color: var(--ink-2); display: flex; align-items: center; gap: 5px; }
.lp-offer.best .rt { color: var(--text-muted); }
.lp-offer .rt .star { color: var(--star); }
.lp-offer .price {
  font-family:'Manrope',sans-serif; font-weight: 800; font-size: 17px; color: #fff; text-align: right;
}
.lp-offer.best .price { color: var(--primary); }
.lp-offer .price .sm { display: block; font-size: 11px; font-weight: 600; color: var(--ink-2); }
.lp-offer.best .price .sm { color: var(--text-muted); }
.lp-offer .tag {
  position: absolute; top: -10px; left: 16px;
  background: var(--ok); color: #fff; font-size: 10px; font-weight: 700;
  font-family:'Manrope',sans-serif; padding: 3px 10px; border-radius: var(--r-pill);
  box-shadow: 0 4px 10px rgba(16,185,129,0.4);
}

/* ============================================================
   PRICING
   ============================================================ */
.lp-price {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 940px; margin: 0 auto;
}
.lp-price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 30px 26px; text-align: center;
  box-shadow: var(--shadow-card); position: relative;
  transition: transform .2s, box-shadow .2s;
}
.lp-price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.lp-price-card.feature { border: 2px solid var(--primary); }
.lp-price-card .tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: 12px; font-weight: 700;
  font-family:'Manrope',sans-serif; padding: 5px 14px; border-radius: var(--r-pill);
}
.lp-price-card .ic {
  width: 52px; height: 52px; margin: 0 auto 16px;
  border-radius: 14px; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.lp-price-card .ic svg { width: 28px; height: 28px; }
.lp-price-card h3 { font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.lp-price-card .amt {
  font-family:'Manrope',sans-serif; font-weight: 800; font-size: 32px;
  letter-spacing: -0.03em; color: var(--text); margin: 10px 0 8px;
}
.lp-price-card .amt .cur { font-size: 22px; color: var(--text-2); }
.lp-price-card p { font-size: 13.5px; color: var(--text-2); margin: 0; line-height: 1.5; }
.lp-price-note {
  text-align: center; margin-top: 28px; font-size: 14px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px; justify-content: center;
}
.lp-price-note svg { width: 16px; height: 16px; color: var(--primary); flex: none; }

/* ============================================================
   REVIEWS
   ============================================================ */
.lp-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-review {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 26px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 14px;
}
.lp-review .stars { color: var(--star); font-size: 15px; letter-spacing: 2px; }
.lp-review .q { font-size: 15px; line-height: 1.6; color: var(--text); flex: 1; }
.lp-review .foot { display: flex; align-items: center; gap: 12px; }
.lp-review .av {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--grad); color: #fff;
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-review .nm { font-family:'Manrope',sans-serif; font-weight: 700; font-size: 14.5px; }
.lp-review .mt { font-size: 12.5px; color: var(--text-muted); }
.lp-review .done {
  align-self: flex-start; background: var(--ok-bg); color: #059669;
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 12.5px;
  padding: 5px 11px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 6px;
}
.lp-review .done svg { width: 13px; height: 13px; }

/* ============================================================
   CTA band (mid)
   ============================================================ */
.lp-ctaband {
  background: var(--grad); border-radius: var(--r-lg);
  padding: 44px 48px; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 430px; gap: 44px; align-items: center;
}
.lp-ctaband::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.13) 1.4px, transparent 1.4px);
  background-size: 26px 26px; opacity: .5;
}
.lp-ctaband > * { position: relative; z-index: 1; }
.lp-ctaband h2 { color: #fff; font-weight: 800; font-size: 32px; letter-spacing: -0.025em; line-height: 1.12; }
.lp-ctaband p { color: var(--ink-2); font-size: 16px; margin: 12px 0 0; }
.lp-ctaband .acts { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FAQ + SEO (collapsible)
   ============================================================ */
.lp-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lp-q {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.lp-q[open] { border-color: var(--primary); box-shadow: var(--shadow-card); }
.lp-q summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 16.5px; color: var(--text);
}
.lp-q summary::-webkit-details-marker { display: none; }
.lp-q summary .chev {
  width: 28px; height: 28px; border-radius: 8px; flex: none;
  background: var(--accent); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s ease, background .2s;
}
.lp-q summary .chev svg { width: 16px; height: 16px; }
.lp-q[open] summary .chev { transform: rotate(180deg); background: var(--primary); color: #fff; }
.lp-q .a { padding: 0 24px; color: var(--text-2); font-size: 15px; line-height: 1.65; overflow: hidden; }
.lp-q .a .a-inner { padding-bottom: 22px; }
.lp-q .a p { margin: 0 0 12px; }
.lp-q .a p:last-child { margin-bottom: 0; }

/* SEO long-read collapsed */
.lp-seo { max-width: 820px; margin: 0 auto; }
.lp-seo-toggle {
  width: 100%; text-align: left;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 20px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 16.5px; color: var(--text);
  transition: border-color .2s;
}
.lp-seo-toggle:hover { border-color: var(--primary); }
.lp-seo-toggle .chev {
  width: 28px; height: 28px; border-radius: 8px; flex: none;
  background: var(--accent); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s ease;
}
.lp-seo-toggle .chev svg { width: 16px; height: 16px; }
.lp-seo.open .lp-seo-toggle .chev { transform: rotate(180deg); }
.lp-seo-body {
  overflow: hidden;
  height: 0;
  padding: 0 4px;
}
.lp-seo-body h3 {
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 21px;
  letter-spacing: -0.01em; margin: 30px 0 12px;
}
.lp-seo-body p { font-size: 15px; line-height: 1.7; color: var(--text-2); margin: 0 0 16px; }
.lp-seo-body ul { margin: 0 0 18px; padding-left: 22px; color: var(--text-2); font-size: 15px; line-height: 1.7; }
.lp-seo-body li { margin-bottom: 8px; }
.lp-seo-body .callout {
  margin: 22px 0; padding: 18px 22px; border-radius: 14px;
  background: var(--accent); border-left: 4px solid var(--primary);
  font-size: 14.5px; color: var(--text-2);
}
.lp-seo-body .callout strong { color: var(--text); font-family:'Manrope',sans-serif; }

/* ============================================================
   LICENSE / legal trust
   ============================================================ */
.lp-license {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 28px 32px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.lp-license .seal {
  width: 56px; height: 56px; border-radius: 16px; flex: none;
  background: var(--accent); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.lp-license .seal svg { width: 30px; height: 30px; }
.lp-license .txt { flex: 1; min-width: 240px; }
.lp-license .txt .t { font-family:'Manrope',sans-serif; font-weight: 700; font-size: 16px; }
.lp-license .txt .s { font-size: 13.5px; color: var(--text-muted); margin-top: 4px; line-height: 1.5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .lp-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .lp-hero-left, .lp-hero-right { min-width: 0; }
  .lp-hero h1 { font-size: 38px; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .lp-how-grid { grid-template-columns: 1fr 1fr; }
  .lp-changes { grid-template-columns: 1fr; }
  .lp-exchange-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .lp-exchange-grid > * { min-width: 0; }
  .lp-price { grid-template-columns: 1fr; max-width: 420px; }
  .lp-reviews { grid-template-columns: 1fr; }
  .lp-ctaband { grid-template-columns: minmax(0, 1fr); }
  .lp-ctaband > * { min-width: 0; }
  .lp-exchange { padding: 40px 28px; }
  .lp-partners { padding: 28px 20px; }
  .lp-partners-head h3 { font-size: 21px; }
}
@media (max-width: 560px) {
  .lp-how-grid { grid-template-columns: 1fr; }
  .lp-stats { grid-template-columns: 1fr 1fr; }
  .lp-hero h1 { font-size: 32px; }
  /* In-content CTA buttons may carry long labels — allow wrapping so they
     never exceed the viewport on narrow phones (form-submit buttons are
     full-width and unaffected). */
  .lp-exchange .btn,
  .lp-license .btn { white-space: normal; text-align: center; }
  .lp-exchange { padding: 36px 20px; }
}

/* ============================================================
   REQUEST CREATED PAGE (.rc-*)
   ============================================================ */
.rc-wrap { padding: 48px 0 80px; }
.rc-hero {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); box-shadow: var(--shadow-card);
  padding: 44px 44px 40px; margin-bottom: 24px; position: relative; overflow: hidden;
}
.rc-hero::after {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,94,255,0.07), transparent 70%);
}
.rc-success-ic {
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--ok-bg); color: var(--ok);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  animation: rc-pop .5s cubic-bezier(.2,1.3,.5,1) both;
}
.rc-success-ic svg { width: 32px; height: 32px; }
@keyframes rc-pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.rc-eyebrow {
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ok);
  margin-bottom: 10px;
}
.rc-hero h1 {
  font-weight: 800; font-size: 44px; letter-spacing: -0.03em; line-height: 1.05;
}
.rc-hero p { color: var(--text-2); font-size: 17px; margin: 16px 0 24px; max-width: 620px; line-height: 1.55; }
.rc-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.rc-chip {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 9px 16px;
  font-family:'Manrope',sans-serif; font-weight: 600; font-size: 13.5px; color: var(--text-2);
  display: inline-flex; align-items: center; gap: 8px;
}
.rc-chip strong { color: var(--text); font-weight: 700; }
.rc-chip-live { background: var(--accent); border-color: #c9ddff; color: var(--primary); }
.rc-chip-live .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 0 rgba(30,94,255,0.6); animation: lp-pulse 2s infinite;
}
.rc-save {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 22px; padding: 14px 18px;
  background: var(--accent); border-radius: 14px;
  font-size: 14px; color: var(--text-2);
}
.rc-save svg { width: 18px; height: 18px; color: var(--primary); flex: none; margin-top: 1px; }

.rc-grid { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 24px; align-items: start; }
.rc-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); box-shadow: var(--shadow-card);
  padding: 32px; margin-bottom: 24px;
}
.rc-col-main .rc-card:last-child, .rc-col-side .rc-card:last-child { margin-bottom: 0; }
.rc-kicker {
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 10px;
}
.rc-card h2 { font-weight: 800; font-size: 28px; letter-spacing: -0.025em; line-height: 1.12; }
.rc-h2-sm { font-size: 20px !important; }
.rc-lead { color: var(--text-2); font-size: 15px; margin: 12px 0 0; line-height: 1.6; }

/* offers skeleton */
.rc-offers-skel { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 18px; }
.rc-skel-row {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--border); border-radius: 16px; padding: 16px 18px;
  background: var(--bg);
}
.rc-skel-av { width: 42px; height: 42px; border-radius: 50%; flex: none; background: #e4ebf5; }
.rc-skel-lines { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.rc-skel-line { height: 10px; border-radius: 6px; background: #e4ebf5; }
.rc-skel-line.w60 { width: 60%; } .rc-skel-line.w55 { width: 55%; } .rc-skel-line.w50 { width: 50%; }
.rc-skel-line.w40 { width: 40%; } .rc-skel-line.w35 { width: 35%; } .rc-skel-line.w30 { width: 30%; }
.rc-skel-price { width: 64px; height: 22px; border-radius: 8px; background: #e4ebf5; flex: none; }
.rc-skel-av, .rc-skel-line, .rc-skel-price { position: relative; overflow: hidden; }
.rc-skel-av::after, .rc-skel-line::after, .rc-skel-price::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  transform: translateX(-100%); animation: rc-shimmer 1.6s infinite;
}
@keyframes rc-shimmer { to { transform: translateX(100%); } }
.rc-offer-note {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-muted);
}
.rc-spinner {
  width: 16px; height: 16px; border-radius: 50%; flex: none;
  border: 2.5px solid var(--primary-light); border-top-color: var(--primary);
  animation: rc-spin .8s linear infinite;
}
@keyframes rc-spin { to { transform: rotate(360deg); } }

/* data grid */
.rc-data {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; margin-top: 22px;
}
.rc-data-cell { background: var(--surface); padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.rc-data-cell .k {
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted);
}
.rc-data-cell .v { font-family:'Manrope',sans-serif; font-weight: 700; font-size: 15px; color: var(--text); }

/* stepper */
.rc-stepper {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  margin-top: 28px; position: relative;
}
.rc-step { text-align: center; position: relative; padding-top: 36px; }
.rc-step .b {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 30px; height: 30px; border-radius: 50%; z-index: 2;
  background: var(--surface); border: 2px solid var(--border); color: var(--text-muted);
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.rc-step::before {
  content: ''; position: absolute; top: 15px; left: -50%; width: 100%; height: 2px;
  background: var(--border); z-index: 1;
}
.rc-step:first-child::before { display: none; }
.rc-step.done .b { background: var(--primary); border-color: var(--primary); color: #fff; }
.rc-step.done::before { background: var(--primary); }
.rc-step.active .b {
  background: var(--primary); border-color: var(--primary); color: #fff;
  box-shadow: 0 0 0 5px rgba(30,94,255,0.16);
}
.rc-step.active::before { background: var(--primary); }
.rc-step .t { font-size: 12.5px; color: var(--text-2); font-weight: 500; line-height: 1.3; padding: 0 4px; }
.rc-step.active .t, .rc-step.done .t { color: var(--text); font-weight: 600; }

/* sidebar */
.rc-sticky { position: sticky; top: 92px; }
.rc-notify { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.rc-notify-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  border: 1.5px solid var(--border); background: var(--surface);
  border-radius: var(--r-btn); padding: 13px; cursor: pointer;
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 15px; color: var(--text);
  transition: border-color .15s, background .15s, transform .12s;
}
.rc-notify-btn:hover { border-color: var(--primary); transform: translateY(-1px); }
.rc-notify-btn svg { width: 20px; height: 20px; }
.rc-notify-btn.primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.rc-notify-btn.primary:hover { background: var(--primary-hover); }
.rc-max {
  background: var(--primary); color: #fff; font-size: 11px; font-weight: 800;
  padding: 3px 7px; border-radius: 7px; letter-spacing: .02em;
}
.rc-side-divider { height: 1px; background: var(--border); margin: 22px 0; }
.rc-notify-btn.on { border-color: var(--ok); }
.rc-notify-btn.on.primary { border-color: var(--ok); }
.rc-notify-btn .rc-check {
  width: 18px; height: 18px; border-radius: 50%; flex: none;
  background: var(--ok); color: #fff; font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.rc-help-t { font-family:'Manrope',sans-serif; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.rc-help-phone {
  display: block; font-family:'Manrope',sans-serif; font-weight: 800; font-size: 20px;
  color: var(--text); letter-spacing: -0.01em; margin-bottom: 6px;
}
.rc-help-link { font-size: 14px; font-weight: 600; }
.rc-back {
  display: inline-block; margin-top: 18px; font-size: 14px; font-weight: 600;
  color: var(--text-2); font-family:'Manrope',sans-serif;
}
.rc-back:hover { color: var(--primary); }

@media (max-width: 1000px) {
  .rc-grid { grid-template-columns: 1fr; }
  .rc-sticky { position: static; }
  .rc-hero { padding: 32px 26px; }
  .rc-hero h1 { font-size: 32px; }
  .rc-card { padding: 24px; }
  .rc-data { grid-template-columns: 1fr 1fr; }
  .rc-stepper { grid-template-columns: 1fr 1fr 1fr; gap: 20px 0; }
  .rc-step:nth-child(4)::before { display: none; }
}
@media (max-width: 560px) {
  .rc-data { grid-template-columns: 1fr; }
  .rc-stepper { grid-template-columns: 1fr 1fr; }
  .rc-step:nth-child(3)::before { display: none; }
  .rc-step:nth-child(5)::before { display: none; }
}

/* ---- Reworked hero: 2-col with live tracker ---- */
.rc-hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 36px; align-items: stretch; }
.rc-hero-left { display: flex; flex-direction: column; }
.rc-meta-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.rc-meta-pill {
  background: var(--bg); border: 1px solid var(--border); border-radius: 14px;
  padding: 12px 16px; display: flex; flex-direction: column; gap: 3px; white-space: nowrap;
}
.rc-meta-pill .k {
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 10.5px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted);
}
.rc-meta-pill .v { font-family:'Manrope',sans-serif; font-weight: 800; font-size: 15px; color: var(--text); }
.rc-meta-pill .v.live { color: var(--primary); display: flex; align-items: center; gap: 7px; }
.rc-meta-pill .v.live .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 0 rgba(30,94,255,0.6); animation: lp-pulse 2s infinite;
}
.rc-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* live tracker panel */
.rc-track {
  background: linear-gradient(160deg, #0F1B3D 0%, #16275A 100%);
  border-radius: 20px; padding: 26px 28px; color: #fff;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.rc-track::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1.2px, transparent 1.2px);
  background-size: 22px 22px; opacity: .6;
}
.rc-track > * { position: relative; z-index: 1; }
.rc-track-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.rc-track-head .ttl {
  font-family:'Manrope',sans-serif; font-weight: 800; font-size: 16px; letter-spacing: -0.01em;
}
.rc-live-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(126,240,196,0.14); color: #7ef0c4;
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 12px;
  padding: 6px 11px; border-radius: var(--r-pill);
}
.rc-live-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #7ef0c4;
  box-shadow: 0 0 0 0 rgba(126,240,196,0.7); animation: lp-pulse 2s infinite;
}
.rc-timeline { list-style: none; margin: 0; padding: 0; flex: 1; }
.rc-timeline li { position: relative; padding: 0 0 22px 30px; }
.rc-timeline li:last-child { padding-bottom: 0; }
.rc-timeline li .d {
  position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 50%;
  background: transparent; border: 2px solid rgba(255,255,255,0.25); z-index: 2;
}
.rc-timeline li::before {
  content: ''; position: absolute; left: 8px; top: 18px; bottom: 0; width: 2px;
  background: rgba(255,255,255,0.15);
}
.rc-timeline li:last-child::before { display: none; }
.rc-timeline li.done .d { background: #7ef0c4; border-color: #7ef0c4; }
.rc-timeline li.done::before { background: rgba(126,240,196,0.5); }
.rc-timeline li.done .d::after {
  content: ''; position: absolute; left: 4px; top: 4px; width: 6px; height: 6px;
  border-radius: 50%; background: #0F1B3D;
}
.rc-timeline li.active .d {
  background: #fff; border-color: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.18); animation: rc-glow 1.8s ease-in-out infinite;
}
@keyframes rc-glow { 0%,100% { box-shadow: 0 0 0 4px rgba(255,255,255,0.18); } 50% { box-shadow: 0 0 0 7px rgba(255,255,255,0.08); } }
.rc-timeline li .t { font-family:'Manrope',sans-serif; font-weight: 700; font-size: 14.5px; color: rgba(255,255,255,0.55); }
.rc-timeline li .s { font-size: 12.5px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.rc-timeline li.done .t, .rc-timeline li.active .t { color: #fff; }
.rc-timeline li.active .s { color: var(--ink-2); }
.rc-eta { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); }
.rc-eta-bar { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.14); overflow: hidden; }
.rc-eta-bar span {
  display: block; height: 100%; width: 22%; border-radius: 4px;
  background: linear-gradient(90deg, #1E5EFF, #7ef0c4);
  animation: rc-eta-fill 2.6s ease-in-out infinite;
}
@keyframes rc-eta-fill { 0% { width: 12%; } 50% { width: 42%; } 100% { width: 12%; } }
.rc-eta-txt { font-size: 13px; color: var(--ink-2); margin-top: 12px; display: flex; align-items: center; gap: 8px; }
.rc-eta-txt svg { width: 15px; height: 15px; color: #7ef0c4; flex: none; }

/* live "experts looking" mini-strip */
.rc-watching {
  display: flex; align-items: center; gap: 12px;
  background: var(--accent); border: 1px solid #cfe1ff; border-radius: 14px;
  padding: 13px 16px; margin-top: 20px;
}
.rc-watching .av-stack { display: flex; }
.rc-watching .av-stack span {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--surface); margin-left: -9px;
  background: var(--grad); color: #fff; font-family:'Manrope',sans-serif; font-weight: 700; font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center;
}
.rc-watching .av-stack span:first-child { margin-left: 0; }
.rc-watching .txt { font-size: 13.5px; color: var(--text-2); }
.rc-watching .txt strong { color: var(--text); font-family:'Manrope',sans-serif; }

@media (max-width: 1000px) {
  .rc-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .rc-track { padding: 24px; }
}

/* ============================================================
   REQUEST FORM PAGE (.rf-*)
   ============================================================ */
.rf-wrap { padding: 56px 0 80px; }
.rf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.rf-aside { padding-top: 12px; }
.rf-aside h1 { font-weight: 800; font-size: 38px; letter-spacing: -0.03em; line-height: 1.08; margin: 18px 0 0; }
.rf-sub { color: var(--text-2); font-size: 17px; line-height: 1.55; margin: 16px 0 28px; }
.rf-points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.rf-point { display: flex; align-items: flex-start; gap: 14px; }
.rf-point .ic {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: var(--ok-bg); color: var(--ok);
  display: flex; align-items: center; justify-content: center;
}
.rf-point .ic svg { width: 19px; height: 19px; }
.rf-point .t { font-family:'Manrope',sans-serif; font-weight: 700; font-size: 16px; }
.rf-point .s { font-size: 14px; color: var(--text-2); margin-top: 2px; }
.rf-trust {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--text-2);
  padding: 18px 0 0; border-top: 1px solid var(--border);
}
.rf-trust .lp-avatars span { border-color: var(--surface); }
.rf-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); box-shadow: var(--shadow-lift); padding: 32px;
}
.rf-card-head { margin-bottom: 20px; }
.rf-card-head .t { font-family:'Manrope',sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.rf-card-head .s { font-size: 14px; color: var(--text-2); margin-top: 5px; }
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.rf-card textarea:focus { border-color: var(--primary) !important; box-shadow: 0 0 0 3px rgba(30,94,255,0.12); }

@media (max-width: 1000px) {
  .rf-grid { grid-template-columns: 1fr; gap: 36px; }
  .rf-aside h1 { font-size: 30px; }
}
@media (max-width: 560px) {
  .rf-row { grid-template-columns: 1fr; }
}

/* ============================================================
   POLISH: hero rating, sticky CTA, button lift
   ============================================================ */
.lp-rating-row { display: flex; align-items: center; gap: 7px; font-size: 13.5px; }
.lp-stars { color: var(--star); letter-spacing: 1px; font-size: 14px; }
.lp-hero-proof strong { font-weight: 700; }

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(30,94,255,0.28); }
.btn-white:hover { transform: translateY(-1px); }

/* Sticky mobile CTA */
.lp-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none;
  align-items: center; justify-content: space-between; gap: 14px;
  padding: 13px 18px 12px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(15,23,42,0.08);
}
.lp-sticky-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
}
.lp-sticky-cta .info { min-width: 0; }
.lp-sticky-cta .info .t { font-family:'Manrope',sans-serif; font-weight: 800; font-size: 15px; color: var(--text); white-space: nowrap; }
.lp-sticky-cta .info .s { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.lp-sticky-cta .btn { flex: none; padding: 12px 22px; box-shadow: var(--cta-glow); }
/* Нижняя липкая CTA отключена: на мобиле остаётся только CTA в шапке,
   чтобы не было двух «Проверить возможность» одновременно — сверху и снизу. */
@keyframes lp-cta-up { from { transform: translateY(100%); opacity: 0; } to { transform: none; opacity: 1; } }
@media (max-width: 380px) {
  .lp-sticky-cta .info .s { display: none; }
}

/* ============================================================
   FLOW: offers / payment / done  (.rc-* continued)
   ============================================================ */

/* ---- Expert offer cards ---- */
.rc-offers-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.rc-offer-card {
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-card); padding: 20px 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.rc-offer-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: #c7d6e8; }
.rc-offer-card.best { border-color: var(--primary); box-shadow: 0 10px 28px rgba(30,94,255,0.14); }
.rc-offer-card .best-tag {
  position: absolute; top: -11px; left: 22px;
  background: var(--primary); color: #fff; font-family:'Manrope',sans-serif;
  font-weight: 700; font-size: 11px; padding: 4px 12px; border-radius: var(--r-pill);
  box-shadow: 0 4px 10px rgba(30,94,255,0.3);
}
.rc-offer-card .av {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  background: var(--grad); color: #fff;
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.rc-offer-card .av .on {
  position: absolute; right: -1px; bottom: -1px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--ok); border: 2.5px solid var(--surface);
}
.rc-offer-card .nm { font-family:'Manrope',sans-serif; font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.rc-offer-card .nm .verified { width: 16px; height: 16px; color: var(--primary); }
.rc-offer-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px; }
.rc-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600; font-family:'Manrope',sans-serif;
  color: var(--text-2); background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 4px 10px;
}
.rc-tag.star { color: #b45309; background: #fffbeb; border-color: #fde68a; }
.rc-tag.star b { color: #92400e; }
.rc-tag svg { width: 13px; height: 13px; }
.rc-offer-card .price-col { text-align: right; display: flex; flex-direction: column; gap: 9px; align-items: flex-end; }
.rc-offer-card .price {
  font-family:'Manrope',sans-serif; font-weight: 800; font-size: 24px;
  letter-spacing: -0.02em; color: var(--text); line-height: 1;
}
.rc-offer-card .price .term { display: block; font-size: 11.5px; font-weight: 600; color: var(--text-muted); margin-top: 4px; }
.rc-offer-card .btn { padding: 11px 22px; }

/* ---- Payment ---- */
.rc-pay-grid { display: grid; grid-template-columns: minmax(0,1fr) 380px; gap: 24px; align-items: start; }
.rc-summary-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.rc-summary-row:last-child { border-bottom: none; }
.rc-summary-row .av {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  background: var(--grad); color: #fff;
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
}
.rc-incl { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.rc-incl-item { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--text-2); }
.rc-incl-item svg { width: 20px; height: 20px; color: var(--ok); flex: none; margin-top: 1px; }
.rc-incl-item strong { color: var(--text); font-weight: 600; }

.rc-checkout { position: sticky; top: 92px; }
.rc-pay-total {
  display: flex; align-items: baseline; justify-content: space-between; margin: 6px 0 4px;
}
.rc-pay-total .l { font-size: 15px; color: var(--text-2); }
.rc-pay-total .v { font-family:'Manrope',sans-serif; font-weight: 800; font-size: 30px; letter-spacing: -0.02em; color: var(--text); }
.rc-pay-sub { font-size: 13px; color: var(--text-muted); margin: 0 0 18px; }
.rc-pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.rc-pay-method {
  border: 1.5px solid var(--border); border-radius: var(--r-btn);
  padding: 12px; text-align: center; cursor: pointer;
  font-family:'Manrope',sans-serif; font-weight: 700; font-size: 14px; color: var(--text-2);
  background: var(--surface); transition: border-color .15s, color .15s, background .15s;
}
.rc-pay-method.active { border-color: var(--primary); color: var(--primary); background: var(--accent); }
.rc-card-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.rc-card-fields .lp-field { margin-bottom: 0; }
.rc-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rc-pay-secure {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 12.5px; color: var(--text-muted); margin-top: 14px;
}
.rc-pay-secure svg { width: 15px; height: 15px; flex: none; }
.rc-sbp {
  text-align: center; padding: 24px 0 8px; color: var(--text-2); font-size: 14px;
}
.rc-sbp .qr {
  width: 150px; height: 150px; margin: 0 auto 14px; border-radius: 16px;
  border: 1px solid var(--border);
  background:
    linear-gradient(var(--surface),var(--surface)) padding-box,
    repeating-conic-gradient(#0F172A 0% 25%, #fff 0% 50%) 0 0 / 14px 14px;
  background-clip: content-box; padding: 14px;
  position: relative;
}

/* ---- Done ---- */
.rc-done-hero { text-align: center; max-width: 600px; margin: 0 auto; }
.rc-done-ic {
  width: 84px; height: 84px; border-radius: 26px; margin: 0 auto 24px;
  background: var(--ok-bg); color: var(--ok);
  display: flex; align-items: center; justify-content: center;
  animation: rc-pop .55s cubic-bezier(.2,1.4,.5,1) both;
  position: relative;
}
.rc-done-ic svg { width: 46px; height: 46px; }
.rc-done-ic::after {
  content: ''; position: absolute; inset: -10px; border-radius: 32px;
  border: 2px solid var(--ok); opacity: 0; animation: rc-ring 1.6s ease-out .3s infinite;
}
@keyframes rc-ring { 0% { transform: scale(.85); opacity: .5; } 100% { transform: scale(1.25); opacity: 0; } }
.rc-done-hero h1 { font-weight: 800; font-size: 42px; letter-spacing: -0.03em; line-height: 1.06; }
.rc-done-hero p { color: var(--text-2); font-size: 17px; margin: 16px 0 0; line-height: 1.55; }

.rc-doc {
  display: flex; align-items: center; gap: 18px;
  border: 1.5px solid var(--border); border-radius: 16px; padding: 20px 22px;
  background: var(--bg); margin-top: 22px;
}
.rc-doc .file {
  width: 50px; height: 60px; flex: none; border-radius: 8px;
  background: var(--surface); border: 1.5px solid var(--border);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 8px;
  position: relative;
}
.rc-doc .file::before {
  content: ''; position: absolute; top: 0; right: 0; width: 16px; height: 16px;
  background: linear-gradient(225deg, var(--bg) 50%, transparent 50%);
  border-left: 1.5px solid var(--border); border-bottom: 1.5px solid var(--border);
}
.rc-doc .file .ext {
  font-family:'Manrope',sans-serif; font-weight: 800; font-size: 9px; color: #fff;
  background: var(--primary); padding: 2px 5px; border-radius: 4px;
}
.rc-doc .info { flex: 1; }
.rc-doc .info .t { font-family:'Manrope',sans-serif; font-weight: 700; font-size: 15px; }
.rc-doc .info .s { font-size: 12.5px; color: var(--text-muted); margin-top: 3px; }
.rc-doc .btn { flex: none; }
.rc-rate { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 22px; }
.rc-rate .star {
  font-size: 30px; color: #e2e8f0; cursor: pointer; transition: color .12s, transform .12s; line-height: 1;
}
.rc-rate .star:hover, .rc-rate .star.on { color: var(--star); }
.rc-rate .star:hover { transform: scale(1.12); }

@media (max-width: 1000px) {
  .rc-offer-card { grid-template-columns: auto 1fr; }
  .rc-offer-card .price-col { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
  .rc-pay-grid { grid-template-columns: 1fr; }
  .rc-checkout { position: static; }
  .rc-done-hero h1 { font-size: 32px; }
}
@media (max-width: 560px) {
  .rc-offer-card { grid-template-columns: 1fr; text-align: left; }
  .rc-doc { flex-wrap: wrap; }
}

/* ============================================================
   POLISH v2 — new components & refinements
   ============================================================ */

/* --- Hero live activity marker --- */
.lp-hero-live {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 18px; padding: 8px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.9); font-size: 13px;
  backdrop-filter: blur(4px);
}
.lp-hero-live .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #7ef0c4; flex: none;
  box-shadow: 0 0 0 0 rgba(126,240,196,0.7); animation: lp-pulse 2s infinite;
}
.lp-hero-live strong { color: #fff; font-weight: 700; font-variant-numeric: tabular-nums; }
.lp-hero-proof .lp-rating-row span { color: rgba(255,255,255,0.85) !important; }

/* --- Hero form: visual type chips, weighted first field, risk-reversal --- */
.lp-field-lead label { font-size: 14px; color: var(--text); font-weight: 700; }
.lp-field-lead select { padding: 15px 16px; font-size: 15.5px; font-weight: 600; border-color: #c7d6e8; }
.lp-type-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 2px;
}
.lp-type-chip {
  display: flex; align-items: center; gap: 9px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: var(--surface); padding: 11px 12px; cursor: pointer;
  font-family:'Manrope',sans-serif; font-weight: 600; font-size: 13.5px; color: var(--text-2);
  transition: border-color .15s, background .15s, color .15s;
  text-align: left; line-height: 1.2;
}
.lp-type-chip .tc-ic {
  width: 26px; height: 26px; border-radius: 8px; flex: none;
  background: var(--accent); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-type-chip .tc-ic svg { width: 15px; height: 15px; }
.lp-type-chip:hover { border-color: #b9cbe2; }
.lp-type-chip.active {
  border-color: var(--primary); background: var(--accent); color: var(--primary);
}
.lp-type-chip.span2 { grid-column: 1 / -1; }
.lp-risk-rev {
  display: flex; align-items: flex-start; gap: 9px;
  margin-top: 12px; font-size: 13px; color: var(--text-2); line-height: 1.45;
}
.lp-risk-rev svg { width: 17px; height: 17px; color: var(--ok); flex: none; margin-top: 1px; }
.lp-risk-rev strong { color: var(--text); font-weight: 600; }

/* --- Trust bar: stat icons + dividers --- */
.lp-stats { position: relative; }
.lp-stat { position: relative; }
.lp-stat + .lp-stat::before {
  content: ''; position: absolute; left: 0; top: 14%; height: 72%; width: 1px;
  background: var(--border);
}
.lp-stat .si {
  width: 36px; height: 36px; border-radius: 11px; margin: 0 auto 12px;
  background: var(--accent); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.lp-stat .si svg { width: 20px; height: 20px; }

/* --- Comparison risk anchor --- */
.lp-risk-anchor {
  max-width: 920px; margin: 18px auto 0;
  display: flex; align-items: center; gap: 14px;
  background: #fff7ed; border: 1px solid #fed7aa; border-radius: var(--r-card);
  padding: 16px 20px; font-size: 14.5px; color: var(--text-2); line-height: 1.5;
}
.lp-risk-anchor .ic {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: #ffedd5; color: #ea580c;
  display: flex; align-items: center; justify-content: center;
}
.lp-risk-anchor .ic svg { width: 20px; height: 20px; }
.lp-risk-anchor strong { color: var(--text); font-family:'Manrope',sans-serif; }

/* --- Exchange offer caption --- */
.lp-offers-cap {
  font-size: 13px; color: var(--ink-2); margin: 0 0 12px;
  display: flex; align-items: center; gap: 8px;
}
.lp-offers-cap svg { width: 15px; height: 15px; color: #7ef0c4; flex: none; }
.lp-offer .price .sm { font-weight: 600; }

/* --- Pricing risk plate + air --- */
.sec-air { padding-top: 100px; padding-bottom: 100px; }
.lp-price-risk {
  max-width: 940px; margin: 24px auto 0;
  display: flex; align-items: center; gap: 14px; justify-content: center;
  background: var(--accent); border-radius: var(--r-card); padding: 16px 22px;
  font-size: 14px; color: var(--text-2); line-height: 1.5; text-align: left;
}
.lp-price-risk svg { width: 20px; height: 20px; color: var(--primary); flex: none; }

/* --- CTA-band mini form --- */
.lp-ctaband .lp-cta-form {
  background: #fff; border-radius: var(--r-card); padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 22px 44px rgba(15,23,42,0.20);
}
.lp-ctaband .cta-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lp-ctaband .lp-cta-form input:not([type="file"]) {
  border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 13px 15px;
  font-family:'Inter',sans-serif; font-size: 15px; min-width: 0; width: 100%;
  background: var(--surface); color: var(--text); outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.lp-ctaband .lp-cta-form input:not([type="file"])::placeholder { color: #9aa8bd; }
.lp-ctaband .lp-cta-form input:not([type="file"]):focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,94,255,0.12); }
.lp-ctaband .lp-cta-form .btn { width: 100%; box-shadow: var(--cta-glow); }
.lp-ctaband .cta-secure {
  display: flex; align-items: center; gap: 7px; justify-content: center;
  font-size: 12.5px; color: var(--text-muted);
}
.lp-ctaband .cta-secure svg { width: 14px; height: 14px; flex: none; }
.lp-cta-note { color: rgba(255,255,255,0.85); font-size: 14px; margin: 16px 0 0; }
.lp-cta-note a { color: #fff; font-weight: 700; }

/* --- Reviews verified marker --- */
.lp-review .verified-rev {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted); font-weight: 600;
  font-family:'Manrope',sans-serif;
}
.lp-review .verified-rev svg { width: 14px; height: 14px; color: var(--primary); }
.lp-review .rev-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

/* --- Responsive type / CTA grids --- */
@media (max-width: 560px) {
  .lp-type-grid { grid-template-columns: 1fr; }
  .lp-ctaband .cta-fields { grid-template-columns: 1fr; }
}

/* --- Tighter vertical rhythm (landing only) --- */
body.has-sticky-cta section { padding: 60px 0; }
body.has-sticky-cta .sec-air { padding-top: 76px; padding-bottom: 76px; }
body.has-sticky-cta .sec-head { margin-bottom: 36px; }
body.has-sticky-cta .lp-hero { padding: 52px 0 64px; }
body.has-sticky-cta .lp-trust { padding: 88px 0 8px; }
body.has-sticky-cta .lp-logos-wrap { padding: 28px 0 0; }
@media (max-width: 1000px) {
  body.has-sticky-cta section { padding: 48px 0; }
  body.has-sticky-cta .sec-air { padding-top: 56px; padding-bottom: 56px; }
}
/* ============================================================
   SHARED FILE PICKERS / FILE LISTS
   ============================================================ */
.rs-upload { margin: 3px 0 16px; }
.rs-upload-head { margin-bottom: 10px; }
.rs-upload-title {
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--text); line-height: 1.35;
}
.rs-upload-optional { color: var(--text-muted); font-weight: 500; }
.rs-upload-copy { margin-top: 4px; color: var(--text-2); font-size: 12.5px; line-height: 1.45; }
.rs-upload-drop {
  position: relative; display: flex; align-items: center; gap: 12px;
  min-height: 66px; padding: 12px 14px; overflow: hidden; cursor: pointer;
  border: 1.5px dashed #b9c9dd; border-radius: var(--r-btn);
  background: var(--bg); color: var(--text-2);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.rs-upload-drop:hover,
.rs-upload-drop:focus-within,
.rs-upload.is-dragover .rs-upload-drop {
  border-color: var(--primary); background: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,94,255,.10);
}
.rs-upload.is-error .rs-upload-drop { border-color: #dc2626; background: #fef2f2; }
.rs-upload-icon {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: var(--primary); box-shadow: 0 2px 8px rgba(15,23,42,.08);
}
.rs-upload-icon svg { width: 20px; height: 20px; }
.rs-upload-action { display: flex; min-width: 0; flex-direction: column; gap: 3px; line-height: 1.3; }
.rs-upload-action strong { color: var(--primary); font-family: 'Manrope', sans-serif; font-size: 13.5px; }
.rs-upload-action > span { color: var(--text-muted); font-size: 11.5px; }
.rs-upload-input {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  border: 0; white-space: nowrap;
}
.rs-upload-error { margin-top: 7px; color: #b91c1c; font-size: 12.5px; line-height: 1.4; }
.rs-file-list { display: flex; flex-direction: column; gap: 8px; margin-top: 9px; }
.rs-file-list:empty { display: none; }
.rs-file-item {
  display: flex; align-items: center; gap: 10px; min-width: 0;
  padding: 9px 10px; border: 1px solid var(--border); border-radius: 11px;
  background: var(--surface); color: var(--text);
}
.rs-file-item.is-error { border-color: #fecaca; background: #fef2f2; }
.rs-file-item.is-done .rs-file-icon { background: var(--ok-bg); color: var(--ok); }
.rs-file-icon {
  width: 32px; height: 32px; border-radius: 9px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--primary);
  font-family: 'Manrope', sans-serif; font-size: 9px; font-weight: 800; text-transform: uppercase;
}
.rs-file-icon svg { width: 17px; height: 17px; }
.rs-file-meta { min-width: 0; flex: 1; }
.rs-file-name {
  display: block; overflow: hidden; color: var(--text); font-size: 12.5px; font-weight: 600;
  text-overflow: ellipsis; white-space: nowrap;
}
.rs-file-size, .rs-file-status { display: block; margin-top: 2px; color: var(--text-muted); font-size: 11px; }
.rs-file-remove {
  width: 30px; height: 30px; border: 0; border-radius: 8px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--text-muted); cursor: pointer; font-size: 18px;
}
.rs-file-remove:hover, .rs-file-remove:focus-visible { background: #f1f5f9; color: #b91c1c; outline: none; }

/* ============================================================
   POST-CREATE NOTIFICATION CHANNEL MODAL
   ============================================================ */
.rs-notify-modal,
.rs-notify-overlay {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  padding: 20px; overflow-y: auto; background: rgba(15,23,42,.58);
  backdrop-filter: blur(3px);
}
.rs-notify-modal[hidden], .rs-notify-overlay[hidden] { display: none; }
.rs-notify-backdrop { position: absolute; inset: 0; }
.rs-notify-dialog {
  position: relative; z-index: 1; width: min(100%, 520px); padding: 28px;
  border: 1px solid rgba(255,255,255,.7); border-radius: 22px;
  background: var(--surface); box-shadow: 0 28px 80px rgba(15,23,42,.30);
}
.rs-notify-close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 10px; background: transparent; color: var(--text-muted);
  cursor: pointer; font-size: 22px; line-height: 1;
}
.rs-notify-close:hover, .rs-notify-close:focus-visible { background: var(--bg); color: var(--text); outline: none; }
.rs-notify-icon {
  width: 52px; height: 52px; margin-bottom: 16px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ok-bg); color: var(--ok);
}
.rs-notify-icon svg { width: 27px; height: 27px; }
.rs-notify-title { padding-right: 34px; font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 800; line-height: 1.2; }
.rs-notify-copy { margin-top: 8px; color: var(--text-2); font-size: 14.5px; line-height: 1.55; }
.rs-notify-options { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 22px; }
.rs-notify-option {
  min-width: 0; min-height: 96px; padding: 13px 10px; border: 1.5px solid var(--border);
  border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: var(--surface); color: var(--text); cursor: pointer; text-align: center;
  font: inherit; text-decoration: none; transition: border-color .15s, background .15s, transform .12s;
}
.rs-notify-option:hover, .rs-notify-option:focus-visible {
  border-color: var(--primary); background: var(--accent); outline: none; transform: translateY(-1px);
}
.rs-notify-option.is-selected, .rs-notify-option[aria-pressed="true"], .rs-notify-option[aria-checked="true"] {
  border-color: var(--primary); background: var(--accent); box-shadow: 0 0 0 3px rgba(30,94,255,.10);
}
.rs-notify-option-icon {
  width: 34px; height: 34px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--primary); font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 800;
}
.rs-notify-option-icon svg { width: 20px; height: 20px; }
.rs-notify-option-title { font-family: 'Manrope', sans-serif; font-size: 13.5px; font-weight: 700; }
.rs-notify-option-copy { color: var(--text-muted); font-size: 11.5px; line-height: 1.35; }
.rs-notify-actions { display: flex; gap: 10px; margin-top: 20px; }
.rs-notify-actions .btn { flex: 1; }
.rs-notify-note, .rs-notify-status { margin-top: 12px; color: var(--text-muted); font-size: 12px; line-height: 1.45; text-align: center; }
.rs-notify-status.is-error { color: #b91c1c; }
body.rs-modal-open { overflow: hidden; }

/* ============================================================
   REQUEST CHAT ATTACHMENTS
   ============================================================ */
.rq-chat-form { flex-wrap: wrap; }
.rq-attachments { display: flex; flex-wrap: wrap; gap: 8px; min-width: 0; }
.rq-msg .rq-attachments { margin-top: 8px; }
.rq-file-input {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); border: 0; white-space: nowrap;
}
.rq-file-trigger,
.rq-attachment-btn {
  min-height: 46px; border: 1.5px solid var(--border); border-radius: 12px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); color: var(--primary); cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.rq-file-trigger { width: auto; padding: 0 14px; gap: 8px; }
.rq-attachment-btn { width: 46px; padding: 0; }
.rq-file-trigger:hover, .rq-file-trigger:focus-visible,
.rq-attachment-btn:hover, .rq-attachment-btn:focus-visible {
  border-color: var(--primary); background: var(--accent); outline: none;
}
.rq-file-trigger[disabled], .rq-attachment-btn[disabled] { opacity: .5; cursor: not-allowed; }
.rq-file-trigger svg, .rq-attachment-btn svg { width: 20px; height: 20px; }
.rq-file-list { order: 3; flex: 1 0 100%; display: flex; flex-direction: column; gap: 7px; }
.rq-file-list:empty { display: none; }
.rq-file-item,
.rq-file-link {
  display: flex; align-items: center; gap: 9px; min-width: 0; max-width: 100%;
  padding: 9px 10px; border: 1px solid var(--border); border-radius: 11px;
  background: var(--bg); color: var(--text); text-decoration: none;
}
.rq-file-link:hover, .rq-file-link:focus-visible { border-color: var(--primary); background: var(--accent); outline: none; }
.rq-file-icon {
  width: 32px; height: 32px; border-radius: 9px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--primary);
}
.rq-file-icon svg { width: 17px; height: 17px; }
.rq-file-info { min-width: 0; flex: 1; }
.rq-file-name {
  display: block; overflow: hidden; color: inherit; font-size: 12.5px; font-weight: 600;
  text-overflow: ellipsis; white-space: nowrap;
}
.rq-file-meta, .rq-file-size, .rq-file-status { display: block; margin-top: 2px; color: var(--text-muted); font-size: 11px; }
.rq-file-remove {
  width: 28px; height: 28px; border: 0; border-radius: 8px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--text-muted); cursor: pointer; font-size: 17px;
}
.rq-file-remove:hover, .rq-file-remove:focus-visible { background: #fee2e2; color: #b91c1c; outline: none; }
.rq-file-progress { height: 3px; margin-top: 5px; overflow: hidden; border-radius: 999px; background: #dbe5f2; }
.rq-file-progress > span { display: block; width: var(--rq-file-progress, 0%); height: 100%; border-radius: inherit; background: var(--primary); transition: width .2s ease; }
.rq-file-error { flex-basis: 100%; color: #b91c1c; font-size: 12.5px; line-height: 1.4; }
.rq-msg-files { display: flex; flex-direction: column; gap: 7px; margin-top: 8px; }
.rq-msg.client .rq-file-item, .rq-msg.client .rq-file-link {
  border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.12); color: #fff;
}
.rq-msg.client .rq-file-icon { background: rgba(255,255,255,.18); color: #fff; }
.rq-msg.client .rq-file-meta, .rq-msg.client .rq-file-size, .rq-msg.client .rq-file-status { color: rgba(255,255,255,.72); }

/* ============================================================
   PAYMENT CHECK TIMEOUT
   ============================================================ */
.rq-payment-timeout {
  max-width: 650px; margin: 0 auto; padding: 32px; text-align: center;
  border: 1px solid #fed7aa; border-radius: var(--r-card); background: #fff7ed;
  box-shadow: var(--shadow-card);
}
.rq-payment-timeout-icon {
  width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; background: #ffedd5; color: #c2410c;
}
.rq-payment-timeout-icon svg { width: 28px; height: 28px; }
.rq-payment-timeout h2 { font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 800; line-height: 1.25; }
.rq-payment-timeout p { max-width: 520px; margin: 10px auto 0; color: var(--text-2); font-size: 14.5px; line-height: 1.55; }
.rq-payment-timeout-actions,
.rq-payment-actions,
.rq-timeout-actions,
.rq-payment-timeout .rq-doc-actions { display: flex; justify-content: center; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.rq-payment-timeout-actions .btn,
.rq-payment-actions .btn,
.rq-timeout-actions .btn,
.rq-payment-timeout .rq-doc-actions .btn { min-width: 180px; }
.rq-doc-actions .btn {
  min-width: 0; max-width: 100%; white-space: normal; text-align: center; overflow-wrap: anywhere;
}

/* Correct two-column stat dividers and spacing on tablets / phones. */
@media (max-width: 1000px) {
  .lp-stats { gap: 0; }
  .lp-stat { padding: 24px 16px; }
  .lp-stat:nth-child(odd)::before { display: none; }
  .lp-stat:nth-child(n+3) { border-top: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .rs-upload-drop { min-height: 62px; padding: 11px 12px; }
  .rs-upload-icon { width: 34px; height: 34px; }
  .rs-upload-copy { font-size: 12px; }
  .rs-file-name { white-space: normal; overflow-wrap: anywhere; }
  .rs-notify-modal, .rs-notify-overlay { align-items: end; padding: 0; }
  .rs-notify-dialog { width: 100%; padding: 24px 18px max(22px, env(safe-area-inset-bottom)); border-radius: 22px 22px 0 0; }
  .rs-notify-title { font-size: 21px; }
  .rs-notify-options { grid-template-columns: 1fr; }
  .rs-notify-option { min-height: 66px; padding: 11px 13px; flex-direction: row; justify-content: flex-start; text-align: left; }
  .rs-notify-option-copy { margin-left: auto; max-width: 150px; text-align: right; }
  .rs-notify-actions { flex-direction: column; }
  .rq-file-item, .rq-file-link { width: 100%; }
  .rq-file-name { white-space: normal; overflow-wrap: anywhere; }
  .rq-payment-timeout { padding: 26px 18px; }
  .rq-payment-timeout-actions, .rq-payment-actions, .rq-timeout-actions,
  .rq-payment-timeout .rq-doc-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .rq-payment-timeout-actions .btn, .rq-payment-actions .btn, .rq-timeout-actions .btn,
  .rq-payment-timeout .rq-doc-actions .btn, .rq-doc-actions .btn { width: 100%; min-width: 0; flex: 1 1 100%; }
  .header-actions [data-open-support][href^="tel"] { display: inline-flex; }
  .rc-meta-pill { min-width: 0; max-width: 100%; white-space: normal; overflow-wrap: anywhere; }
  .lp-stat { padding: 21px 8px; }
  .lp-stat .v { font-size: 33px; }
  .lp-stat .l { font-size: 12.5px; line-height: 1.35; }
}
/* ============================================================
   FINAL VISUAL POLISH — stable hero + responsive rhythm
   ============================================================ */
#hero-form,
#how,
#changes,
#price,
#faq { scroll-margin-top: 88px; }

@media (min-width: 1001px) {
  .lp-hero-grid { align-items: start; }
  .lp-hero-left { padding-top: 80px; }
}

body.has-sticky-cta .lp-trust { padding: 56px 0 0; }
body.has-sticky-cta .lp-logos-wrap { padding: 24px 0 0; }
.lp-partners { padding: 32px 36px; }
.lp-partners-head { margin-bottom: 24px; }
.lp-partners-head .badge { margin-bottom: 12px; }
.lp-field[hidden] { display: none; }
.rs-notify-actions .btn { flex: 1 1 0; min-width: 0; white-space: normal; line-height: 1.35; }
.rs-notify-actions .btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

@media (max-width: 1000px) {
  body.has-sticky-cta .lp-trust { padding: 44px 0 0; }
  body.has-sticky-cta .lp-logos-wrap { padding: 20px 0 0; }
  .lp-ctaband { padding: 40px 28px; gap: 32px; }
}

@media (max-width: 560px) {
  body.has-sticky-cta section { padding: 44px 0; }
  body.has-sticky-cta .lp-hero { padding: 36px 0 44px; }
  body.has-sticky-cta .lp-trust { padding: 32px 0 0; }
  body.has-sticky-cta .lp-logos-wrap { padding: 16px 0 0; }
  body.has-sticky-cta .sec-head { margin-bottom: 28px; }

  .sec-head .badge { margin-bottom: 12px; }
  .sec-head h2 { font-size: 30px; line-height: 1.14; }
  .sec-head p { margin-top: 12px; font-size: 16px; line-height: 1.5; }

  .lp-eyebrow {
    max-width: 100%; white-space: normal; line-height: 1.35;
  }
  .lp-hero-live {
    max-width: 100%; flex-wrap: wrap; white-space: normal; line-height: 1.4;
  }
  .lp-rating-row { flex-wrap: wrap; }
  .lp-form-card { padding: 22px 18px; }
  .lp-form-card .btn,
  .lp-ctaband .lp-cta-form .btn {
    padding-left: 18px; padding-right: 18px;
    white-space: normal; text-align: center; line-height: 1.35;
  }

  .lp-partners { padding: 24px 16px; }
  .lp-partners-head { margin-bottom: 20px; }
  .lp-partners-head h3 { font-size: 20px; }
  .lp-partners-head p { font-size: 14px; line-height: 1.5; }
  .lp-partner-grid { gap: 8px; }
  .lp-partner { gap: 7px; padding: 9px 14px; font-size: 14px; }
  .lp-partner.lp-top { padding: 10px 15px; font-size: 15px; }

  .lp-exchange h2,
  .lp-ctaband h2 { font-size: 28px; }
  .lp-ctaband { padding: 32px 18px; gap: 26px; border-radius: 22px; }
  .lp-ctaband .lp-cta-form { padding: 18px; }
  .lp-review .rev-top { flex-wrap: wrap; }

  .rc-wrap { padding: 24px 0 56px; }
  .rc-hero { padding: 24px 18px; margin-bottom: 16px; }
  .rc-hero h1 { font-size: 30px; }
  .rc-card { padding: 20px 18px; margin-bottom: 16px; }
  .rc-track-head { flex-wrap: wrap; gap: 10px; }
  .rq-chat-form textarea { flex: 1 0 100%; width: 100%; min-width: 0; }
  .rq-chat-form .rq-attachments { flex: 1; min-width: 0; }
  .rs-notify-dialog { max-height: 100dvh; overflow-y: auto; }
  .rs-notify-close { top: 8px; right: 8px; width: 44px; height: 44px; }
}
/* ============================================================
   VIEWPORT FIT POLISH — hero form and section spacing
   ============================================================ */
@media (min-width: 1001px) {
  #hero-form { padding-top: 22px; padding-bottom: 22px; }
  #hero-form .lp-form-head { margin-bottom: 12px; }
  #hero-form .lp-field { gap: 5px; margin-bottom: 8px; }
  #hero-form .lp-field input,
  #hero-form .lp-field select {
    min-height: 44px;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  #hero-form .lp-field-lead select {
    min-height: 48px;
    padding-top: 13px;
    padding-bottom: 13px;
  }
  #hero-form .rs-upload-drop {
    min-height: 60px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  body.has-sticky-cta .lp-trust { padding: 32px 0 0; }
  body.has-sticky-cta .lp-logos-wrap { padding: 24px 0 36px; }
}

@media (min-width: 561px) and (max-width: 1000px) {
  body.has-sticky-cta .lp-trust { padding: 28px 0 0; }
  body.has-sticky-cta .lp-logos-wrap { padding: 20px 0 28px; }
}

@media (max-width: 560px) {
  body.has-sticky-cta .lp-hero { padding: 28px 0 36px; }
  body.has-sticky-cta .lp-trust { padding: 24px 0 0; }
  body.has-sticky-cta .lp-logos-wrap { padding: 16px 0 24px; }

  .lp-hero-grid { gap: 28px; }
  .lp-eyebrow { margin-bottom: 16px; }
  .lp-hero-sub { margin: 16px 0 20px; font-size: 16px; }
  .lp-checks { gap: 10px; margin-bottom: 22px; }
  .lp-hero-live { margin-top: 14px; }

  #hero-form { padding: 20px 16px; }
  #hero-form .lp-form-head { margin-bottom: 14px; }
  #hero-form .lp-field { gap: 5px; margin-bottom: 10px; }
  #hero-form .lp-field input,
  #hero-form .lp-field select { min-height: 44px; padding: 12px 13px; }
  #hero-form .rs-upload { margin-bottom: 12px; }
  #hero-form .rs-upload-head { margin-bottom: 8px; }
  #hero-form .rs-upload-drop { min-height: 58px; padding: 10px 11px; }
  #hero-form .btn { padding-top: 14px; padding-bottom: 14px; }
  #hero-form .lp-risk-rev { margin-top: 10px; }
}

@media (max-width: 340px) {
  body.has-sticky-cta .site-header .container { padding-left: 12px; padding-right: 12px; }
  body.has-sticky-cta .header-inner { gap: 8px; }
}
