/* ============================================================
   LIME MONEY — Modern Russian landing style
   Palette: lime hero, orange CTA, cream background, soft chips
   Single font: Onest (everywhere, only weight changes)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --lime: #C8FF00;
  --lime-2: #B0E600;
  --lime-3: #9BCC00;
  --lime-dark: #1F2A0F;        /* контрастный текст на лайме */
  --lime-soft: #F0FFC4;
  --lime-glow: rgba(200, 255, 0, 0.4);
  --lime-grad: linear-gradient(135deg, #D6FF3D 0%, #C8FF00 45%, #A8E000 100%);
  --lime-grad-soft: linear-gradient(135deg, #F4FFCB 0%, #E8FFA0 100%);

  /* Dark surfaces */
  --dark: #0F1410;
  --dark-2: #1A201A;
  --dark-3: #252B25;
  --dark-grad: linear-gradient(135deg, #1A201A 0%, #0F1410 100%);
  --on-dark: #F7F7F2;
  --on-dark-soft: #B8C0B8;

  /* Accent — orange CTA (вторичный, оставляем) */
  --orange: #FF6B35;
  --orange-hover: #FF5722;
  --orange-soft: #FFE5DA;

  /* Surface */
  --bg: #F7F7F2;
  --bg-card: #FFFFFF;
  --bg-warm: #FBFAF4;
  --chip: #EFF1F8;             /* нежно-сиреневая плашка для bullet-карточек */

  /* Text */
  --ink: #1A1B1F;
  --ink-soft: #4A4D55;
  --muted: #7A7D85;

  /* Lines / shadows */
  --line: #E8E8E0;
  --shadow-soft: 0 4px 24px rgba(26, 27, 31, 0.04);
  --shadow-card: 0 8px 32px rgba(26, 27, 31, 0.06);

  /* Layout */
  --container: 1440px;
  --container-wide: 1600px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --radius: 24px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Onest', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
  font-weight: 400;
  font-feature-settings: "ss01", "ss02", "tnum";
  font-variant-numeric: tabular-nums;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--lime); color: var(--ink); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #D4D4CA; border-radius: 5px; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============ TYPOGRAPHY ============ */

h1, h2, h3, h4, p, span, a, li, button, input, select, label {
  font-family: 'Onest', system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.875rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { color: var(--ink-soft); font-weight: 400; line-height: 1.55; }

/* Подсветка слова белой плашкой (как на референсе) */
.mark-white {
  background: #FFFFFF;
  color: var(--ink);
  padding: 0.05em 0.25em;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* Подсветка слова на светлом фоне — лаймовая плашка */
.mark-lime {
  background: var(--lime);
  color: var(--ink);
  padding: 0.05em 0.25em;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Бэйдж-капсула раздела */
.eyebrow {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 400;
}

/* ============ LAYOUT ============ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(3.5rem, 7vw, 7rem) 0; position: relative; }

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 247, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav__logo { flex-shrink: 0; }
.nav__logo svg { height: 32px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.6vw, 1.5rem);
  flex-wrap: nowrap;
  min-width: 0;
}
.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }

.nav__phone {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.375rem 0.625rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  white-space: nowrap;
}
.nav__lang a { padding: 0.125rem 0.375rem; border-radius: var(--radius-pill); transition: all 0.2s; color: var(--muted); }
.nav__lang a.is-active { background: var(--ink); color: #FFFFFF; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--orange);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--orange-hover); transform: translateY(-1px); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}
.nav__burger span { width: 18px; height: 2px; background: var(--ink); position: relative; border-radius: 2px; }
.nav__burger span::before, .nav__burger span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); border-radius: 2px;
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

/* Сначала прячем телефон — он самый длинный и давит на ссылки */
@media (max-width: 1180px) {
  .nav__phone { display: none; }
}
/* Потом скрываем ссылки и показываем burger */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  /* Lang-switcher прижимается вправо, к бургеру — иначе он висит в центре */
  .nav__lang { margin-left: auto; }
}
/* На самой узкой — скрываем CTA, остаются логотип + lang + burger */
@media (max-width: 540px) {
  .nav__cta { display: none; }
  .nav__inner { gap: 0.625rem; }
}

/* ============ HERO — лаймовый блок-карточка ============ */

.hero {
  padding: 6rem 0 1rem;
  background: var(--bg);
}

.hero__card {
  background: var(--lime);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
/* Декоративная волна — мягкое тёмное пятно справа */
.hero__card::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(31, 42, 15, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.3fr 1fr; gap: clamp(3rem, 5vw, 5rem); align-items: center; }
}

.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--lime-dark);
  margin-bottom: 1.5rem;
}

.hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--lime-dark);
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero__bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  max-width: 720px;
}
@media (min-width: 600px) {
  .hero__bullets { grid-template-columns: 1fr 1fr; }
}
.hero__bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  background: var(--bg-card);
  border-radius: 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.hero__bullet-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange);
  color: #FFFFFF;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Hero stats — крупные цифры справа от текста */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.hero__stat {
  background: var(--bg-card);
  padding: 1.5rem 1.25rem;
  border-radius: 20px;
}
.hero__stat-num {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hero__stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.3;
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.625rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--orange {
  background: var(--orange);
  color: #FFFFFF;
}
.btn--orange:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(255, 107, 53, 0.25); }

.btn--dark {
  background: var(--ink);
  color: #FFFFFF;
}
.btn--dark:hover { background: #2D2F35; transform: translateY(-2px); }

.btn--white {
  background: var(--bg-card);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--white:hover { border-color: var(--ink); }

.btn__arrow { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============ SECTION HEAD ============ */

.section__head {
  text-align: center;
  margin-bottom: 3rem;
}
.section__head .eyebrow { margin-bottom: 1rem; }
.section__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}
.section__lead {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============ PRODUCT GRID — светлые карточки на cream-фоне ============ */

.products { background: var(--bg); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--chip);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--bg-card);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 1.25rem;
}
.product-card__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

.product-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.product-card__amount {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 1rem;
}

.product-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: auto;
  padding-bottom: 1.25rem;
}
.product-card__chip {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg-card);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: auto;
}
.product-card__link svg { transition: transform 0.25s var(--ease); }
.product-card:hover .product-card__link svg { transform: translateX(4px); }

/* ============ STEPS ============ */

.steps { background: var(--bg); }

.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.step {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.step__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--lime);
  color: var(--ink);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.step__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.step__text { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.5; }

/* ============ PILLARS / FEATURES ============ */

.pillars { background: var(--bg); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.pillar {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.pillar__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange);
  color: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.pillar__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--ink); letter-spacing: -0.01em; }
.pillar__text { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.5; }

/* ============ CTA STRIP — лаймовый блок ============ */

.cta-strip {
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.cta-strip__inner {
  background: var(--lime);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) {
  .cta-strip__inner { grid-template-columns: 2fr 1fr; }
}

.cta-strip__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--lime-dark);
  max-width: 22ch;
}

.cta-strip__btn {
  justify-self: start;
}

/* ============ FOOTER ============ */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__logo svg { height: 32px; width: auto; }
.footer__about { margin-top: 1.25rem; color: var(--muted); font-size: 0.875rem; line-height: 1.55; max-width: 320px; }

.footer__col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer__list a { color: var(--ink-soft); font-size: 0.9375rem; transition: color 0.2s; }
.footer__list a:hover { color: var(--ink); }

.footer__contact { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.7; }
.footer__contact a { color: var(--ink); font-weight: 600; }
.footer__contact a:hover { color: var(--orange); }

.footer__legal {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ============ PAGE HEADER ============ */

.page-head {
  padding: 7rem 0 3rem;
  background: var(--bg);
}
.page-head__breadcrumb {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.page-head__breadcrumb a:hover { color: var(--ink); }
.page-head__breadcrumb .sep { margin: 0 0.5rem; opacity: 0.5; }

.page-head__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 18ch;
}
.page-head__lead {
  max-width: 56ch;
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============ PRODUCT PAGE ============ */

.product-detail {
  padding: 3rem 0 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) {
  .product-detail { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
}

.product-detail__terms {
  background: var(--lime);
  border-radius: var(--radius);
  padding: 2.25rem;
  align-self: start;
}
.terms__title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime-dark);
  opacity: 0.7;
  margin-bottom: 1.25rem;
}
.terms__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(31, 42, 15, 0.12);
}
.terms__row:last-child { border-bottom: none; }
.terms__label { color: var(--lime-dark); opacity: 0.7; font-size: 0.9375rem; }
.terms__value {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--lime-dark);
  text-align: right;
}
.terms__value.accent {
  font-size: 1.5rem;
  background: var(--bg-card);
  color: var(--ink);
  padding: 0.125rem 0.5rem;
  border-radius: 8px;
}

.product-detail__docs { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; margin: 1.25rem 0 2rem; }
.product-detail__docs li {
  position: relative;
  padding: 1rem 1.125rem 1rem 3rem;
  background: var(--chip);
  border-radius: 14px;
  font-size: 0.9375rem;
  color: var(--ink);
  font-weight: 500;
}
.product-detail__docs li::before {
  content: '✓';
  position: absolute; left: 0.875rem; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange); color: #FFFFFF;
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
}

/* ============ CALCULATOR ============ */

.calc {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}
.calc__tabs {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 1.75rem;
  background: var(--chip);
  padding: 0.375rem;
  border-radius: var(--radius-pill);
  flex-wrap: wrap;
}
.calc__tab {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-pill);
  transition: all 0.2s;
  white-space: nowrap;
}
.calc__tab.is-active { background: var(--ink); color: #FFFFFF; }

.calc__field { margin-bottom: 1.5rem; }
.calc__field-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.75rem;
}
.calc__label { font-size: 0.875rem; color: var(--muted); font-weight: 500; }
.calc__value { font-weight: 700; font-size: 1.25rem; color: var(--ink); }

.calc__slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: var(--chip);
  border-radius: 3px;
  outline: none;
}
.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
  transition: transform 0.15s;
}
.calc__slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc__slider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}
.calc__minmax {
  display: flex; justify-content: space-between; margin-top: 0.5rem;
  font-size: 0.8125rem; color: var(--muted); font-weight: 500;
}

.calc__result {
  background: var(--lime);
  border-radius: 18px;
  padding: 1.75rem;
  margin-top: 1.75rem;
  text-align: center;
}
.calc__result-label {
  font-size: 0.8125rem;
  color: var(--lime-dark);
  opacity: 0.65;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.calc__result-amount {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--lime-dark);
  letter-spacing: -0.025em;
  line-height: 1;
}
.calc__result-note {
  font-size: 0.8125rem;
  color: var(--lime-dark);
  opacity: 0.65;
  margin-top: 0.75rem;
}

/* ============ FORM ============ */

.form { display: grid; gap: 0.875rem; max-width: 520px; }
.form__field { display: flex; flex-direction: column; gap: 0.5rem; }
.form__label { font-size: 0.8125rem; font-weight: 600; color: var(--ink-soft); }
.form__input, .form__select {
  padding: 0.875rem 1.125rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font: inherit;
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form__input:focus, .form__select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.form__input::placeholder { color: var(--muted); }
.form__hint { font-size: 0.8125rem; color: var(--muted); margin-top: 0.5rem; }
.form__hint a { color: var(--orange); font-weight: 600; }

/* ============ INFO BLOCK ============ */

.info-block {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-soft);
}
.info-block h3 { font-size: 1.25rem; margin-bottom: 0.875rem; color: var(--ink); }
.info-block p { margin-bottom: 0.875rem; color: var(--ink-soft); line-height: 1.6; }
.info-block p:last-child { margin-bottom: 0; }
.info-block strong { color: var(--ink); font-weight: 600; }
.info-block ul { list-style: none; display: grid; gap: 0.625rem; margin: 0.875rem 0; }
.info-block ul li {
  padding-left: 1.5rem; position: relative;
  color: var(--ink-soft); line-height: 1.5;
}
.info-block ul li::before {
  content: ''; position: absolute; left: 0; top: 0.6em;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* ============ CONTENT 2COL ============ */

.content-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0;
}
@media (min-width: 900px) {
  .content-2col { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.content-2col h2 { margin-bottom: 1.25rem; }
.content-2col p { margin-bottom: 0.875rem; line-height: 1.6; }

/* ============ MARQUEE ============ */

.marquee {
  overflow: hidden;
  background: var(--ink);
  color: #FFFFFF;
  padding: 1.25rem 0;
}
.marquee__track {
  display: flex; gap: 3rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap; align-items: center;
  font-size: 1.125rem; font-weight: 600;
}
.marquee__item { display: inline-flex; align-items: center; gap: 3rem; color: #FFFFFF; }
.marquee__dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; flex-shrink: 0; }

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

/* ============ MOBILE MENU ============ */

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: 6rem 1.5rem 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__list { list-style: none; display: flex; flex-direction: column; }
.mobile-menu__list li { border-bottom: 1px solid var(--line); }
.mobile-menu__list a {
  display: block;
  padding: 1.125rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}


/* ============================================================
   v2 — BANK-GRADE COMPONENTS (Lime Money main page redesign)
   ============================================================ */

/* ---------- Mark / highlight (плашка под словом, как в шаблонах Artum / Control Service) ---------- */

.mark {
  display: inline-block;
  padding: 0.04em 0.32em;
  border-radius: 10px;
  font-weight: inherit;
  letter-spacing: inherit;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1;
  position: relative;
  white-space: nowrap;
}
.mark--lime {
  background: var(--lime);
  color: var(--lime-dark);
  box-shadow: 0 4px 24px -8px rgba(200, 255, 0, 0.6);
}
.mark--lime-grad {
  background: var(--lime-grad);
  color: var(--lime-dark);
  box-shadow: 0 6px 28px -10px rgba(200, 255, 0, 0.7);
}
.mark--dark {
  background: var(--dark);
  color: var(--lime);
}
.mark--white {
  background: #FFFFFF;
  color: var(--ink);
}
.mark--outline {
  background: transparent;
  color: inherit;
  box-shadow: inset 0 0 0 2px currentColor;
}

/* ---------- v2 Nav (тёмная) ---------- */

.nav--dark {
  background: rgba(15, 20, 16, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}
.nav--dark .nav__link { color: var(--on-dark-soft); }
.nav--dark .nav__link:hover, .nav--dark .nav__link.is-active { color: #FFFFFF; }
.nav--dark .nav__phone { color: #FFFFFF; }
.nav--dark .nav__lang {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--on-dark-soft);
}
.nav--dark .nav__lang a { color: var(--on-dark-soft); }
.nav--dark .nav__lang a.is-active { background: var(--lime); color: var(--lime-dark); }
.nav--dark .nav__cta {
  background: var(--lime);
  color: var(--lime-dark);
  font-weight: 700;
  box-shadow: 0 8px 24px -8px var(--lime-glow);
}
.nav--dark .nav__cta:hover { background: var(--lime-2); transform: translateY(-1px); }
.nav--dark .nav__burger { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.12); }
.nav--dark .nav__burger span,
.nav--dark .nav__burger span::before,
.nav--dark .nav__burger span::after { background: #FFFFFF; }

/* Логотип на тёмной навигации — оставляем оригинальный цветной (лайм + тёмный текст) */
.nav--dark .nav__logo img { filter: none; }

/* ---------- v2 Hero ---------- */

.hero-v2 {
  padding: 6.5rem 0 1rem;
  background: var(--bg);
}

.hero-v2__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 1080px) {
  .hero-v2__grid { grid-template-columns: 1.55fr 1fr; gap: 1.5rem; }
}

.hero-v2__main {
  background: var(--lime-grad);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4.5vw, 4rem);
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}
.hero-v2__main::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 70%; height: 160%;
  background: radial-gradient(ellipse at center, rgba(31, 42, 15, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-v2__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 20, 16, 0.08);
  color: var(--lime-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 1.5rem;
}
.hero-v2__chip-dot { width: 8px; height: 8px; background: var(--lime-dark); border-radius: 50%; }

.hero-v2__title {
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--lime-dark);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-v2__title .mark--dark {
  background: var(--lime-dark);
  color: var(--lime);
  padding: 0.04em 0.34em;
  border-radius: 12px;
}

.hero-v2__lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: var(--lime-dark);
  opacity: 0.78;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 580px;
  position: relative;
  z-index: 1;
}

.hero-v2__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.hero-v2__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(15, 20, 16, 0.12);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero-v2__metric {
  background: rgba(247, 247, 242, 0.85);
  padding: 1.25rem 1rem;
  text-align: left;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-v2__metric-num {
  font-size: clamp(1.625rem, 2.4vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--lime-dark);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.hero-v2__metric-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lime-dark);
  opacity: 0.7;
  line-height: 1.3;
}
@media (max-width: 540px) {
  .hero-v2__metrics { grid-template-columns: 1fr 1fr; }
  .hero-v2__metric:nth-child(3) { grid-column: span 2; }
}

/* Hero side — мини-калькулятор / превью заявки */
.hero-v2__side {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero-v2__side::before {
  content: '';
  position: absolute;
  bottom: -30%; right: -20%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-v2__side-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-v2__side-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--lime);
}
.hero-v2__side-title {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.calc-mini { display: flex; flex-direction: column; gap: 1.125rem; position: relative; z-index: 1; }
.calc-mini__row { display: flex; flex-direction: column; gap: 0.5rem; }
.calc-mini__label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.8125rem;
  color: var(--on-dark-soft);
}
.calc-mini__value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}
.calc-mini__slider {
  width: 100%; height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px; appearance: none; -webkit-appearance: none;
  cursor: pointer;
}
.calc-mini__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--lime);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--lime), 0 4px 12px rgba(200, 255, 0, 0.4);
  cursor: pointer;
}
.calc-mini__slider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--lime);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
}
.calc-mini__result {
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: 14px;
  padding: 1rem 1.125rem;
  display: flex; justify-content: space-between; align-items: center;
}
.calc-mini__result-label { font-size: 0.8125rem; color: var(--on-dark-soft); }
.calc-mini__result-value {
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.calc-mini__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--lime);
  color: var(--lime-dark);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 14px;
  transition: background 0.2s, transform 0.2s;
  position: relative; z-index: 1;
}
.calc-mini__cta:hover { background: var(--lime-2); transform: translateY(-1px); }
.calc-mini__hint {
  font-size: 0.75rem;
  color: var(--on-dark-soft);
  text-align: center;
  opacity: 0.7;
  margin-top: -0.5rem;
}

/* ---------- Trust strip ---------- */

.trust-strip {
  padding: 1.25rem 0 1rem;
  background: var(--bg);
}
.trust-strip__inner {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem clamp(1.25rem, 3vw, 2.25rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 720px) {
  .trust-strip__inner { grid-template-columns: repeat(3, 1fr); }
}
.trust-item {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding-right: 1.25rem;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; }
@media (max-width: 720px) { .trust-item { border-right: none; padding-right: 0; padding-bottom: 1rem; border-bottom: 1px solid var(--line); } .trust-item:last-child { border-bottom: none; padding-bottom: 0; } }
.trust-item__label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.trust-item__value {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 0.5rem;
}
.trust-item__value svg { color: var(--lime-3); flex-shrink: 0; }

/* ---------- v2 Section heading с эйбрау-цифрой ---------- */

.section-v2 { padding: clamp(3.5rem, 6.5vw, 6rem) 0; position: relative; }
.section-v2--dark { background: var(--dark); color: var(--on-dark); }

.section-v2__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 900px) {
  .section-v2__head { grid-template-columns: 1.2fr 1fr; gap: 3rem; }
}

.section-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  width: fit-content;
}
.section-v2__eyebrow-num {
  background: var(--lime);
  color: var(--lime-dark);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.section-v2--dark .section-v2__eyebrow { color: var(--on-dark-soft); }

.section-v2__title {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: inherit;
}
.section-v2__lead {
  color: var(--ink-soft);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.55;
  max-width: 44ch;
}
.section-v2--dark .section-v2__lead { color: var(--on-dark-soft); }

/* ---------- Products mosaic ---------- */

.products-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) { .products-mosaic { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .products-mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(280px, auto); } }

.pcard {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  min-height: 280px;
  border: 1px solid var(--line);
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.pcard--lime { background: var(--lime-grad); border-color: transparent; color: var(--lime-dark); }
.pcard--dark { background: var(--dark); border-color: transparent; color: #FFFFFF; }
.pcard--cream { background: var(--bg-warm); }

@media (min-width: 1100px) {
  .pcard--feature { grid-column: span 3; grid-row: span 2; min-height: 580px; }
  .pcard--wide    { grid-column: span 3; }
  .pcard--std     { grid-column: span 2; }
  .pcard--tall    { grid-column: span 2; grid-row: span 2; min-height: 580px; }
  .pcard--half    { grid-column: span 3; min-height: 460px; }
}

.products-mosaic--2col { gap: 1.25rem; }
.products-mosaic--2col .pcard__title { font-size: clamp(1.5rem, 2.2vw, 2rem); }
.products-mosaic--2col .pcard { padding: clamp(1.75rem, 3vw, 2.5rem); }

.pcard__chip {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: rgba(15, 20, 16, 0.08);
  color: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 1.25rem;
}
.pcard--dark .pcard__chip { background: rgba(255, 255, 255, 0.1); color: var(--lime); }
.pcard--cream .pcard__chip { background: var(--lime-soft); color: var(--lime-dark); }

.pcard__title {
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: inherit;
}
.pcard--feature .pcard__title { font-size: clamp(1.75rem, 2.6vw, 2.5rem); }

.pcard__desc {
  color: inherit;
  opacity: 0.72;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  max-width: 32ch;
}

.pcard__rows {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
}
.pcard__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.625rem 0;
  border-top: 1px solid currentColor;
  border-color: rgba(15, 20, 16, 0.08);
  font-size: 0.875rem;
}
.pcard--dark .pcard__row { border-color: rgba(255, 255, 255, 0.1); }
.pcard__row-label { opacity: 0.65; }
.pcard__row-value { font-weight: 700; letter-spacing: -0.01em; }

.pcard__link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  color: inherit;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-top: 1.25rem;
  width: fit-content;
}
.pcard__link svg { transition: transform 0.25s var(--ease); }
.pcard:hover .pcard__link svg { transform: translateX(4px); }
.pcard--dark .pcard__link { color: var(--lime); }

/* ---------- "Как это работает" — нумерованные карточки ---------- */

.steps-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) { .steps-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .steps-v2 { grid-template-columns: repeat(4, 1fr); } }

.step-v2 {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  position: relative;
}
.step-v2--accent { background: var(--lime-grad); border-color: transparent; color: var(--lime-dark); }
.step-v2--dark { background: var(--dark); border-color: transparent; color: #FFFFFF; }
.step-v2__num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.step-v2--accent .step-v2__num { color: rgba(31, 42, 15, 0.5); }
.step-v2--dark .step-v2__num { color: var(--on-dark-soft); }

.step-v2__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: inherit;
  margin-bottom: 0.625rem;
}
.step-v2__text { color: inherit; opacity: 0.72; font-size: 0.9375rem; line-height: 1.5; margin-bottom: auto; }
.step-v2__visual {
  margin-top: 1.5rem;
  height: 80px;
  border-radius: 14px;
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  color: var(--lime-3);
}
.step-v2--accent .step-v2__visual { background: rgba(255, 255, 255, 0.4); color: var(--lime-dark); }
.step-v2--dark .step-v2__visual { background: rgba(255, 255, 255, 0.06); color: var(--lime); }

/* ---------- Калькулятор-превью на главной ---------- */

.calc-preview {
  background: var(--dark-grad);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4.5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.calc-preview::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; height: 140%;
  background: radial-gradient(ellipse, rgba(200, 255, 0, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
@media (min-width: 980px) { .calc-preview { grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; } }
.calc-preview__title {
  font-size: clamp(1.875rem, 3.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.calc-preview__lead { color: var(--on-dark-soft); font-size: 1.0625rem; line-height: 1.55; max-width: 42ch; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.calc-preview__cta { position: relative; z-index: 1; }
.calc-preview__panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex; flex-direction: column; gap: 1.25rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative; z-index: 1;
}

/* ---------- "Почему мы" — мозаика метрик ---------- */

.why-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) { .why-mosaic { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) {
  .why-mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(220px, auto); }
}
.why-tile {
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.why-tile--lime { background: var(--lime-grad); color: var(--lime-dark); }
.why-tile--lime-soft { background: var(--lime-grad-soft); color: var(--lime-dark); }
.why-tile--dark { background: var(--dark); color: #FFFFFF; }
.why-tile--white { background: var(--bg-card); border: 1px solid var(--line); color: var(--ink); }

.why-tile__num {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.why-tile--dark .why-tile__num { color: var(--lime); }
.why-tile__label { font-size: 0.9375rem; font-weight: 500; opacity: 0.78; line-height: 1.4; max-width: 24ch; }
.why-tile__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.why-tile__text { font-size: 0.9375rem; line-height: 1.5; opacity: 0.78; }

@media (min-width: 1100px) {
  .why-tile--wide { grid-column: span 2; }
  .why-tile--tall { grid-row: span 2; min-height: 460px; }
}

/* ---------- Compliance / Legal block ---------- */

.compliance {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) { .compliance { grid-template-columns: 1fr 1.4fr; gap: 2.5rem; align-items: start; } }

.compliance__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.compliance__lead { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.55; }

.compliance__items { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .compliance__items { grid-template-columns: 1fr; } }
.compliance__item {
  background: var(--bg-warm);
  border-radius: 16px;
  padding: 1rem 1.125rem;
  font-size: 0.875rem;
}
.compliance__item-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.375rem;
}
.compliance__item-value { color: var(--ink); font-weight: 600; line-height: 1.35; word-break: break-word; }

/* ---------- FAQ ---------- */

.faq { display: flex; flex-direction: column; gap: 0.75rem; }
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item[open] { border-color: var(--ink); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q-icon {
  width: 32px; height: 32px;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), background 0.2s;
}
.faq__item[open] .faq__q-icon { transform: rotate(45deg); background: var(--lime); }
.faq__a {
  padding: 0 1.5rem 1.375rem;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ---------- v2 CTA strip ---------- */

.cta-v2 {
  background: var(--lime-grad);
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) { .cta-v2 { grid-template-columns: 1.6fr 1fr; gap: 3rem; } }
.cta-v2::before {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(ellipse, rgba(31, 42, 15, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-v2__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--lime-dark);
  position: relative; z-index: 1;
}
.cta-v2__lead { color: var(--lime-dark); opacity: 0.72; margin-top: 0.875rem; max-width: 38ch; line-height: 1.5; position: relative; z-index: 1; }
.cta-v2__actions { display: flex; flex-direction: column; gap: 0.875rem; position: relative; z-index: 1; }

/* ---------- Buttons enhanced ---------- */

.btn--lime {
  background: var(--lime);
  color: var(--lime-dark);
  font-weight: 700;
  box-shadow: 0 8px 24px -10px var(--lime-glow);
}
.btn--lime:hover { background: var(--lime-2); transform: translateY(-1px); }
.btn--dark {
  background: var(--dark);
  color: #FFFFFF;
  font-weight: 600;
}
.btn--dark:hover { background: var(--dark-2); transform: translateY(-1px); }
.btn--ghost-dark {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}
.btn--ghost-dark:hover { border-color: var(--lime); color: var(--lime); }
.btn--ghost-light {
  background: transparent;
  color: var(--lime-dark);
  border: 1.5px solid rgba(31, 42, 15, 0.18);
  font-weight: 600;
}
.btn--ghost-light:hover { border-color: var(--lime-dark); }

/* ---------- v2 Footer (расширенный, банковский) ---------- */

.footer-v2 {
  background: var(--dark);
  color: var(--on-dark-soft);
  padding: 4rem 0 2rem;
}
.footer-v2__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 900px) {
  .footer-v2__top { grid-template-columns: 1.5fr repeat(4, 1fr); gap: 2rem; }
}
.footer-v2 .nav__logo img { filter: none; }
.footer-v2__brand { max-width: 320px; }
.footer-v2__about { margin-top: 1.25rem; font-size: 0.875rem; line-height: 1.55; color: var(--on-dark-soft); }
.footer-v2__regulator {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 0.8125rem;
  color: #FFFFFF;
}
.footer-v2__regulator-dot { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 4px rgba(200, 255, 0, 0.2); }

.footer-v2__col-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.footer-v2__list { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-v2__list a { color: var(--on-dark-soft); font-size: 0.9375rem; transition: color 0.2s; }
.footer-v2__list a:hover { color: #FFFFFF; }

.footer-v2__contact { font-size: 0.9375rem; line-height: 1.7; color: var(--on-dark-soft); }
.footer-v2__contact a { color: #FFFFFF; font-weight: 600; display: block; margin-bottom: 0.25rem; }
.footer-v2__contact a:hover { color: var(--lime); }

.footer-v2__socials {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-v2__socials a {
  display: inline-flex !important;
  align-items: center;
  padding: 0.4rem 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.8125rem !important;
  font-weight: 600;
  color: #fff !important;
  margin-bottom: 0 !important;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-v2__socials a:hover {
  background: var(--lime, #C5F226);
  border-color: var(--lime, #C5F226);
  color: var(--forest, #1F4D2A) !important;
}

.footer__socials {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__socials a {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  background: rgba(15, 20, 16, 0.04);
  border: 1px solid var(--line, rgba(15,20,16,0.08));
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink, #0f1410);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer__socials a:hover {
  background: var(--lime, #C5F226);
  border-color: var(--lime, #C5F226);
  color: var(--forest, #1F4D2A);
}

.contact-hero__socials {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-v2__legal {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--on-dark-soft);
}
@media (min-width: 900px) { .footer-v2__legal { grid-template-columns: 1.5fr 1fr; align-items: center; } }
.footer-v2__legal-row { line-height: 1.55; }
.footer-v2__legal-meta { display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: flex-start; }
@media (min-width: 900px) { .footer-v2__legal-meta { justify-content: flex-end; } }
.footer-v2__legal-meta a { color: var(--on-dark-soft); }
.footer-v2__legal-meta a:hover { color: #FFFFFF; }


/* ============================================================
   v3 — CLEAN GRADIENTS (Push30-inspired, без мути)
   ============================================================ */

/* ---------- Чистые градиенты ---------- */
:root {
  /* Лаймовые — мягкий single-tone переход */
  --grad-lime-clean: linear-gradient(160deg, #D4FF3D 0%, #C8FF00 60%, #B8E600 100%);
  --grad-lime-flat: #C8FF00;

  /* Тёмные — чисто чёрно-зелёный */
  --grad-dark-clean: linear-gradient(160deg, #1A201A 0%, #0F1410 100%);

  /* Тонкий grid */
  --grid-lines: linear-gradient(rgba(31, 42, 15, 0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(31, 42, 15, 0.06) 1px, transparent 1px);
}

/* ---------- HERO main — чистый лайм + ОДИН мягкий glow ---------- */

.hero-v2__main {
  /* Многослойный лаймовый фон: насыщенный градиент + glow слева сверху +
     затемнение справа снизу для глубины. Монетки и эмблема через ::after. */
  background:
    radial-gradient(ellipse 50% 65% at 0% 0%, rgba(255, 255, 255, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 100% 100%, rgba(31, 77, 42, 0.22) 0%, transparent 60%),
    linear-gradient(135deg, #DCE35B 0%, #C5F226 35%, #95cc1c 100%);
  position: relative;
  box-shadow:
    0 24px 60px -20px rgba(31, 77, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
/* Большая лайм-эмблема, прячется за правым нижним углом, очень медленно вращается */
.hero-v2__main::before {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 540px;
  height: 540px;
  background: url('/images/lime-emblem.svg') no-repeat center / contain;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  animation: heroEmblemRotate 80s linear infinite;
}
@keyframes heroEmblemRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Сетка + лёгкая текстура */
.hero-v2__main::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grid-lines);
  background-size: 44px 44px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at top right, black 5%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 5%, transparent 75%);
}

/* На мобильной приглушим эмблему */
@media (max-width: 700px) {
  .hero-v2__main::before {
    width: 320px;
    height: 320px;
    right: -80px;
    bottom: -80px;
    opacity: 0.08;
  }
}

/* ---------- HERO side — тёмный с одним лаймовым glow ---------- */

.hero-v2__side {
  background: var(--grad-dark-clean);
  position: relative;
}
.hero-v2__side::before {
  background: radial-gradient(ellipse 80% 70% at 100% 0%, rgba(200, 255, 0, 0.18) 0%, transparent 65%);
  bottom: 0; right: 0;
  width: 100%; height: 100%;
}
.hero-v2__side .hero-v2__side-eyebrow,
.hero-v2__side .hero-v2__side-title,
.hero-v2__side .calc-mini { position: relative; z-index: 1; }

/* ---------- Calc preview — ВОЗВРАЩАЮ ТЁМНЫЙ ФОН (был грязным лаймовым) ---------- */

.calc-preview {
  background: var(--grad-dark-clean);
  color: #FFFFFF;
}
.calc-preview::before {
  background: radial-gradient(ellipse 70% 80% at 100% 100%, rgba(200, 255, 0, 0.18) 0%, transparent 60%);
  top: 0; right: 0;
  width: 100%; height: 100%;
}
.calc-preview > * { position: relative; z-index: 1; }
.calc-preview__title { color: #FFFFFF; }
.calc-preview__title .mark--lime,
.calc-preview__title .mark--lime-grad {
  background: var(--lime);
  color: var(--lime-dark);
  box-shadow: none;
}
.calc-preview__lead { color: rgba(255, 255, 255, 0.72); }
.calc-preview__panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ---------- CTA v2 — насыщенный лаймовый блок с декором ---------- */

.cta-v2 {
  /* Многослойный фон: лайм-эмблема в правом нижнем углу (полупрозрачная,
     обрезана краем блока), и насыщенный лаймовый градиент. */
  background:
    radial-gradient(ellipse 60% 70% at 100% 100%, rgba(31, 77, 42, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 0%, rgba(255, 255, 255, 0.45) 0%, transparent 60%),
    linear-gradient(135deg, #DCE35B 0%, #C5F226 35%, #95cc1c 100%);
  position: relative;
  box-shadow: 0 24px 60px -20px rgba(31, 77, 42, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Большая лайм-эмблема, прячется за правым нижним углом */
.cta-v2::before {
  content: '';
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 420px;
  height: 420px;
  background: url('/images/lime-emblem.svg') no-repeat center / contain;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 8px 24px rgba(31, 77, 42, 0.2));
  animation: ctaEmblemRotate 60s linear infinite;
}
@keyframes ctaEmblemRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Парящие монетки + сетка через ::after (composite background) */
.cta-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url('/images/coin-tilt.png'),
    url('/images/coin-flat.png'),
    url('/images/coin-front.png'),
    var(--grid-lines);
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  background-position:
    right 6% top 12%,
    left 4% bottom 8%,
    right 28% bottom 18%,
    0 0;
  background-size:
    110px,
    72px,
    56px,
    40px 40px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  /* Сетка приглушена, монетки видны нормально */
  filter: drop-shadow(0 6px 14px rgba(31, 77, 42, 0.25));
  animation: ctaCoinsFloat 7s ease-in-out infinite;
}
@keyframes ctaCoinsFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.cta-v2 > * { position: relative; z-index: 1; }

.cta-v2__title .mark--dark {
  background: var(--lime-dark);
  color: var(--lime);
  box-shadow: 0 4px 12px rgba(15, 30, 18, 0.25);
}

/* Усиление текста — чтобы читался на пёстром фоне */
.cta-v2__title {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cta-v2__lead {
  opacity: 0.78;
}

/* На мобиле — приглушим монетки чтобы не загромождать */
@media (max-width: 640px) {
  .cta-v2::after {
    background-position:
      right 4% top 6%,
      left 4% bottom 8%,
      -100px -100px,
      0 0;
    background-size: 70px, 50px, 0, 32px 32px;
  }
  .cta-v2::before {
    width: 280px;
    height: 280px;
    right: -60px;
    bottom: -60px;
    opacity: 0.1;
  }
}

/* ---------- Product cards — чистый лайм / тёмный ---------- */

.pcard--lime {
  background: var(--grad-lime-clean);
  position: relative;
  overflow: hidden;
}
.pcard--lime::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grid-lines);
  background-size: 32px 32px;
  opacity: 0.3;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at bottom right, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at bottom right, black 0%, transparent 70%);
}
.pcard--lime > * { position: relative; z-index: 1; }

.pcard--dark {
  background: var(--grad-dark-clean);
  position: relative;
  overflow: hidden;
}
.pcard--dark::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -20%;
  width: 80%; height: 100%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.pcard--dark > * { position: relative; z-index: 1; }

/* ---------- Step v2 accent ---------- */
.step-v2--accent {
  background: var(--grad-lime-clean);
  position: relative;
  overflow: hidden;
}
.step-v2--accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grid-lines);
  background-size: 28px 28px;
  opacity: 0.28;
  mask-image: radial-gradient(ellipse at bottom, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at bottom, black 0%, transparent 70%);
  pointer-events: none;
}
.step-v2--accent > * { position: relative; z-index: 1; }


/* ============================================================
   v4 — GLASSMORPHISM (Push30-style frosted surfaces)
   ============================================================ */

/* HERO metrics — затемнённое стекло поверх лайма */
.hero-v2__metrics {
  background: rgba(15, 20, 16, 0.06);
  border: 1px solid rgba(15, 20, 16, 0.08);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.hero-v2__metric {
  background: rgba(247, 247, 242, 0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

/* HERO chip — лёгкое стекло */
.hero-v2__chip {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* TRUST strip — стеклянная плашка на кремовом фоне */
.trust-strip__inner {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(15, 20, 16, 0.06);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 8px 32px -16px rgba(15, 20, 16, 0.12);
}

/* Mini calc result — стекло на тёмной hero-side */
.calc-mini__result {
  background: rgba(200, 255, 0, 0.06);
  border: 1px solid rgba(200, 255, 0, 0.18);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

/* Mini calc сам блок — лёгкая прозрачность */
.hero-v2__side {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Calc preview panel — глубже стекло */
.calc-preview__panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow: 0 12px 48px -16px rgba(0, 0, 0, 0.4);
}

/* Compliance items — стекло на белой карточке */
.compliance {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(15, 20, 16, 0.06);
}
.compliance__item {
  background: rgba(247, 247, 242, 0.6);
  border: 1px solid rgba(15, 20, 16, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* FAQ — стекло */
.faq__item {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(15, 20, 16, 0.06);
}
.faq__item[open] {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(15, 20, 16, 0.12);
}
.faq__q-icon {
  background: rgba(15, 20, 16, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* CTA form fields — стекло на лаймовом фоне (только background, без стрелки) */
.cta-v2 .form__input {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 20, 16, 0.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--ink, #0f1410);
}
/* Глобальная кастомная стрелка для <select.form__select> — работает везде:
   в CTA-блоках, в модалке, на любой странице. Background-color можно ставить
   через background-color (не shorthand!), чтобы не убивать background-image. */
.form__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(255, 255, 255, 0.65);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%231F4D2A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px 9px;
  padding-right: 2.5rem;
  cursor: pointer;
  border: 1px solid rgba(15, 20, 16, 0.08);
  color: var(--ink, #0f1410);
}
.cta-v2 .form__select {
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.form__select:invalid,
.form__select option[disabled] {
  color: rgba(15, 20, 16, 0.55);
}
.form__select option,
.form__select optgroup {
  color: var(--ink, #0f1410);
  background: #fff;
}
.cta-v2__hint {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--forest, #1F4D2A);
  opacity: 0.65;
  margin-top: 0.25rem;
}
.cta-v2__hint a {
  text-decoration: underline;
  color: inherit;
}
.cta-v2__hint--geo {
  opacity: 0.9;
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}
.cta-v2__hint--geo strong {
  font-weight: 700;
}

/* Nav — усилить blur (уже стеклянная) */
.nav--dark {
  background: rgba(15, 20, 16, 0.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}


/* ---------- Hero side — 3D brand под калькулятором ---------- */
.calc-mini__brand {
  margin-top: 0.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 18px;
}
.calc-mini__brand img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  /* Тёмный фон у фото сольётся с тёмным фоном hero-side */
  mix-blend-mode: lighten;
  /* Плавно растворяем края к фону */
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at center, black 35%, transparent 92%);
  mask-image: radial-gradient(ellipse 80% 75% at center, black 35%, transparent 92%);
  filter: saturate(110%);
}

/* hero-side больше не должен жёстко отъедать высоту — даём бренду место */
.hero-v2__side { gap: 1.25rem; }


/* ============================================================
   v5 — NATURAL PALETTE (берём с текущего limemoney.uz)
   Мягкий природный лайм + тёмный лес + крупные радиусы
   ============================================================ */

:root {
  /* ЯРКИЙ салатовый лайм (раньше был грустно-пастельным) */
  --lime-natural: #C5F226;
  --lime-natural-2: #B0DC1A;
  --lime-natural-soft: #E8FAA8;
  --forest: #1F4D2A;
  --forest-2: #2A5D32;
  --forest-deep: #143820;

  /* Перекрываем главные градиенты */
  --grad-lime-clean: linear-gradient(165deg, #D4FA40 0%, #C5F226 55%, #B0DC1A 100%);
  --grad-dark-clean: linear-gradient(165deg, #2A5D32 0%, #1F4D2A 60%, #143820 100%);

  /* Поднимаем радиусы */
  --radius: 28px;
  --radius-lg: 40px;
}

/* Тёмные поверхности — теперь forest, а не почти-чёрный */
.nav--dark { background: rgba(20, 56, 32, 0.78); }
.hero-v2__side { background: var(--grad-dark-clean); }
.hero-v2__side::before {
  background: radial-gradient(ellipse 80% 70% at 100% 0%, rgba(197, 242, 38, 0.22) 0%, transparent 65%);
}

.calc-preview { background: var(--grad-dark-clean); }
.calc-preview::before {
  background: radial-gradient(ellipse 70% 80% at 100% 100%, rgba(197, 242, 38, 0.22) 0%, transparent 60%);
}

.pcard--dark { background: var(--grad-dark-clean); }
.pcard--dark::after {
  background: radial-gradient(circle, rgba(197, 242, 38, 0.18) 0%, transparent 60%);
}

.btn--dark { background: var(--forest); }
.btn--dark:hover { background: var(--forest-2); }

.footer-v2 { background: var(--forest-deep); }
.footer-v2__regulator-dot { background: var(--lime-natural); box-shadow: 0 0 0 4px rgba(197, 242, 38, 0.2); }

/* mark-dark на лайме — теперь тёмно-зелёный а не чёрный */
.mark--dark { background: var(--forest); color: var(--lime-natural); }
.cta-v2__title .mark--dark { background: var(--forest); color: var(--lime-natural); }
.hero-v2__title .mark--dark { background: var(--forest); color: var(--lime-natural); }

/* Лайм-плашка (mark--lime) — тёмно-зелёный текст на природном лайме */
.mark--lime { background: var(--lime-natural); color: var(--forest-deep); box-shadow: none; }
.mark--lime-grad { background: var(--lime-natural); color: var(--forest-deep); box-shadow: none; }

/* Калькулятор-мини: лаймовый акцент → природный */
.calc-mini__value { color: var(--lime-natural); }
.calc-mini__result { background: rgba(197, 242, 38, 0.06); border-color: rgba(197, 242, 38, 0.22); }
.calc-mini__result-value { color: var(--lime-natural); }
.calc-mini__cta { background: var(--lime-natural); color: var(--forest-deep); }
.calc-mini__cta:hover { background: var(--lime-natural-2); }
.calc-mini__slider::-webkit-slider-thumb {
  background: var(--lime-natural);
  box-shadow: 0 0 0 1px var(--lime-natural), 0 4px 12px rgba(197, 242, 38, 0.4);
}
.calc-mini__slider::-moz-range-thumb { background: var(--lime-natural); }

/* Hero side eyebrow */
.hero-v2__side-eyebrow { color: var(--lime-natural); }
.hero-v2__side-eyebrow::before { background: var(--lime-natural); }

/* Calc-preview brand mark */
.calc-preview__title .mark--lime,
.calc-preview__title .mark--lime-grad { background: var(--lime-natural); color: var(--forest-deep); }

/* Темные карточки — текст ссылки на лайме */
.pcard--dark .pcard__chip { color: var(--lime-natural); }
.pcard--dark .pcard__link { color: var(--lime-natural); }

/* Шапка — лаймовая CTA в природном цвете */
.nav--dark .nav__cta {
  background: var(--lime-natural);
  color: var(--forest-deep);
  box-shadow: 0 8px 24px -8px rgba(197, 242, 38, 0.4);
}
.nav--dark .nav__cta:hover { background: var(--lime-natural-2); }
.nav--dark .nav__lang a.is-active { background: var(--lime-natural); color: var(--forest-deep); }

/* Step v2 numbered chip — pill-форма как на текущем сайте */
.step-v2__num {
  display: inline-flex; align-items: center;
  background: var(--forest);
  color: var(--lime-natural);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
  width: fit-content;
}
.step-v2--accent .step-v2__num { background: var(--forest); color: var(--lime-natural); }
.step-v2--dark .step-v2__num { background: rgba(197, 242, 38, 0.18); color: var(--lime-natural); }

/* Eyebrow цифра — natural */
.section-v2__eyebrow-num { background: var(--lime-natural); color: var(--forest-deep); }

/* Trust strip иконки */
.trust-item__value svg { color: var(--forest-2); }

/* Hero chip dot */
.hero-v2__chip-dot { background: var(--forest); }

/* Кнопки лаймовые */
.btn--lime { background: var(--lime-natural); color: var(--forest-deep); box-shadow: 0 8px 24px -10px rgba(197, 242, 38, 0.5); }
.btn--lime:hover { background: var(--lime-natural-2); }

/* FAQ icon active state */
.faq__item[open] .faq__q-icon { background: var(--lime-natural); }

/* Soft внутренние плашки — light mint */
.pcard--cream .pcard__chip { background: var(--lime-natural-soft); color: var(--forest-deep); }

/* Логотип в footer/nav на тёмном — белый (уже invert) */


/* ---------- Product card — выделенная сумма с плашкой ---------- */
.pcard__amount {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 1.25rem 0 1.5rem;
}
.pcard__amount-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
  color: inherit;
}
.pcard__amount-value {
  font-size: clamp(1.875rem, 3.6vw, 2.875rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: inherit;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}
.pcard__amount-mark {
  display: inline-block;
  background: var(--forest-deep);
  color: var(--lime-natural);
  padding: 0.06em 0.32em;
  border-radius: 14px;
  letter-spacing: -0.04em;
  line-height: 1;
}
/* На тёмной карточке плашка инвертируется */
.pcard--dark .pcard__amount-mark {
  background: var(--lime-natural);
  color: var(--forest-deep);
  box-shadow: 0 8px 32px -10px rgba(197, 242, 38, 0.5);
}
/* На лаймовой карточке оставляем тёмно-зелёную плашку */
.pcard--lime .pcard__amount-mark {
  box-shadow: 0 8px 32px -10px rgba(20, 56, 32, 0.4);
}

/* steps-v2 — 3 колонки (как на текущем сайте) */
@media (min-width: 980px) {
  .steps-v2--3col { grid-template-columns: repeat(3, 1fr); }
}


/* ============================================================
   v6 — INNER PAGES (products listing, product detail, calculator)
   ============================================================ */

/* ---------- Page head v5 ---------- */
.page-head-v5 {
  padding: 8rem 0 3rem;
  background: var(--bg);
}
.page-head-v5__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.page-head-v5__breadcrumb a {
  color: var(--muted);
  transition: color 0.2s;
}
.page-head-v5__breadcrumb a:hover { color: var(--ink); }
.page-head-v5__breadcrumb .sep { opacity: 0.4; }
.page-head-v5__current { color: var(--ink); font-weight: 500; }

.page-head-v5__title {
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--ink);
  max-width: 22ch;
}
.page-head-v5__lead {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.3vw, 1.1875rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 60ch;
}

/* ---------- Product detail — асимметричный grid ---------- */
.pdetail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1080px) {
  .pdetail { grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start; }
}

/* Левая колонка — лаймовый hero с illustration залога */
.pdetail__hero {
  background: var(--grad-lime-clean);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.pdetail__hero--dark { background: var(--grad-dark-clean); color: #FFFFFF; }
.pdetail__hero--dark::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(197, 242, 38, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.pdetail__chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(31, 77, 42, 0.1);
  color: var(--forest-deep);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-pill);
  width: fit-content;
}
.pdetail__hero--dark .pdetail__chip {
  background: rgba(197, 242, 38, 0.12);
  color: var(--lime-natural);
  position: relative; z-index: 1;
}

.pdetail__amount-block {
  position: relative; z-index: 1;
}
.pdetail__amount-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  opacity: 0.6;
  margin-bottom: 0.625rem;
}
.pdetail__amount-value {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--forest-deep);
}
.pdetail__hero--dark .pdetail__amount-value { color: #FFFFFF; }
.pdetail__amount-mark {
  display: inline-block;
  background: var(--forest-deep);
  color: var(--lime-natural);
  padding: 0.06em 0.32em;
  border-radius: 16px;
  letter-spacing: -0.045em;
  line-height: 1;
}
.pdetail__hero--dark .pdetail__amount-mark {
  background: var(--lime-natural);
  color: var(--forest-deep);
}
.pdetail__amount-suffix {
  display: block;
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  font-weight: 600;
  margin-top: 0.5rem;
  opacity: 0.75;
}

/* Иллюстрация залога — на тёмной карточке используем blend-mode */
.pdetail__illustration {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -1rem;
}
.pdetail__illustration img {
  max-width: 100%;
  width: auto;
  max-height: 220px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 32px rgba(20, 56, 32, 0.18));
}
.pdetail__hero--dark .pdetail__illustration img {
  mix-blend-mode: lighten;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.5));
}

/* Правая колонка — терминал с условиями */
.pdetail__sidebar {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 96px;
}

.pdetail__terms {
  display: flex; flex-direction: column;
  gap: 0;
}
.pdetail__term {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
}
.pdetail__term:last-child { border-bottom: none; }
.pdetail__term-label { color: var(--muted); }
.pdetail__term-value {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pdetail__term-value--accent {
  background: var(--lime-natural);
  color: var(--forest-deep);
  padding: 0.1em 0.5em;
  border-radius: 8px;
}

.pdetail__cta {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--forest);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 14px;
  width: 100%;
  transition: background 0.2s, transform 0.2s;
}
.pdetail__cta:hover { background: var(--forest-2); transform: translateY(-1px); }

.pdetail__hint {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

/* ---------- Documents block (требования) ---------- */
.docs-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.docs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 600px) { .docs-grid { grid-template-columns: 1fr 1fr; } }
.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  background: var(--bg-warm);
  border-radius: 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.doc-item__num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--forest);
  color: var(--lime-natural);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ---------- About text block ---------- */
.about-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 880px) { .about-block { grid-template-columns: 1fr 2fr; gap: 3rem; } }
.about-block__title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}
.about-block__body p {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.about-block__body p:last-child { margin-bottom: 0; }

/* ---------- Calculator page v5 ---------- */
.calc-page {
  background: var(--grad-dark-clean);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 4rem);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.calc-page::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(197, 242, 38, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.calc-page__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative; z-index: 1;
}
@media (min-width: 980px) { .calc-page__inner { grid-template-columns: 1.1fr 1fr; gap: 3.5rem; } }

.calc-page__title {
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.calc-page__lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 44ch;
}

.calc-page__tabs {
  display: flex; flex-wrap: wrap;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  padding: 0.375rem;
  width: fit-content;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.calc-page__tab {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.625rem 1.125rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.calc-page__tab:hover { color: #FFFFFF; }
.calc-page__tab.is-active {
  background: var(--lime-natural);
  color: var(--forest-deep);
}

.calc-page__field {
  margin-bottom: 1.5rem;
}
.calc-page__field-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.625rem;
}
.calc-page__field-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}
.calc-page__field-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lime-natural);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.calc-page__slider {
  width: 100%; height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
}
.calc-page__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  background: var(--lime-natural);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--lime-natural), 0 4px 12px rgba(197, 242, 38, 0.4);
  cursor: pointer;
}
.calc-page__slider::-moz-range-thumb {
  width: 24px; height: 24px;
  background: var(--lime-natural);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
}
.calc-page__minmax {
  display: flex; justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.calc-page__panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.calc-page__panel-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime-natural);
  display: flex; align-items: center; gap: 0.625rem;
}
.calc-page__panel-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--lime-natural); }

.calc-page__result-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.calc-page__result-row:last-child { border-bottom: none; }
.calc-page__result-label { font-size: 0.875rem; color: rgba(255, 255, 255, 0.65); }
.calc-page__result-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.calc-page__result-value--big {
  font-size: clamp(1.625rem, 2.6vw, 2rem);
  color: var(--lime-natural);
}

.calc-page__note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* ---------- Listing v5: 2 крупные карточки ---------- */
.products-listing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 980px) { .products-listing { grid-template-columns: 1fr 1fr; } }


/* ============================================================
   v7 — INNER PAGES (about, contacts, how-to-*, blog, requirements)
   ============================================================ */

/* Info card — белая стеклянная плашка */
.info-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.info-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.info-card__list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; padding: 0; margin: 0; }
.info-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.5;
}
.info-card__list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--lime-natural);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.info-card p { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: 0.625rem; }
.info-card p:last-child { margin-bottom: 0; }
.info-card strong { color: var(--ink); }

/* 2-col grid */
.cols-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 880px) { .cols-2 { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

/* Stats strip — 4 крупные цифры на тёмной плашке */
.stats-strip {
  background: var(--grad-dark-clean);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 60%; height: 160%;
  background: radial-gradient(ellipse at center, rgba(197, 242, 38, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative; z-index: 1;
}
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stats-grid__item {}
.stats-grid__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lime-natural);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stats-grid__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
  max-width: 18ch;
}

/* Method tile — карточка способа (для how-to-repay) */
.methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .methods-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .methods-grid { grid-template-columns: repeat(3, 1fr); } }
.method-tile {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.method-tile--lime { background: var(--grad-lime-clean); border-color: transparent; }
.method-tile--dark { background: var(--grad-dark-clean); border-color: transparent; color: #FFFFFF; }
.method-tile__chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(31, 77, 42, 0.08);
  color: var(--forest-deep);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius-pill);
  width: fit-content;
}
.method-tile--dark .method-tile__chip { background: rgba(197, 242, 38, 0.12); color: var(--lime-natural); }
.method-tile__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: inherit;
}
.method-tile__text {
  color: inherit;
  opacity: 0.78;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.method-tile__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.method-tile__list li {
  background: rgba(15, 20, 16, 0.06);
  color: inherit;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
}
.method-tile--dark .method-tile__list li { background: rgba(255, 255, 255, 0.08); }

/* Contact hero block */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 980px) { .contact-hero { grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: stretch; } }
.contact-hero__main {
  background: var(--grad-lime-clean);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex; flex-direction: column; gap: 1.5rem;
  min-height: 360px;
  position: relative; overflow: hidden;
}
.contact-hero__main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero__main > * { position: relative; z-index: 1; }
.contact-hero__phone {
  font-size: clamp(1.875rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--forest-deep);
  text-decoration: none;
  display: block;
  line-height: 1;
}
.contact-hero__phone-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-deep);
  opacity: 0.65;
  margin-bottom: 0.5rem;
}
.contact-hero__email {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--forest-deep);
  text-decoration: none;
}
.contact-hero__side {
  background: var(--grad-dark-clean);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  color: #FFFFFF;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-hero__side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 100% 100%, rgba(197, 242, 38, 0.18) 0%, transparent 60%);
}
.contact-hero__side > * { position: relative; z-index: 1; }
.contact-hero__address {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
}
.contact-hero__schedule {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}
.contact-hero__schedule strong { color: var(--lime-natural); font-weight: 700; }

/* ---------- Blog grid ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  min-height: 280px;
  overflow: hidden;
  position: relative;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.blog-card__cover {
  height: 180px;
  background: var(--grad-lime-clean);
  border-radius: 18px;
  margin: -1rem -1rem 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--forest-deep);
  position: relative;
  overflow: hidden;
}
.blog-card__cover--dark { background: var(--grad-dark-clean); color: var(--lime-natural); }
.blog-card__cover--soft { background: var(--lime-natural-soft); color: var(--forest-deep); }
.blog-card__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.blog-card__cover--dark::after {
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(197, 242, 38, 0.18) 0%, transparent 65%);
}
.blog-card__meta {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
}
.blog-card__chip {
  background: var(--lime-natural-soft);
  color: var(--forest-deep);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.blog-card__title {
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}
.blog-card__excerpt {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: -0.25rem;
}
.blog-card__link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest);
}
.blog-card__link svg { transition: transform 0.25s var(--ease); }
.blog-card:hover .blog-card__link svg { transform: translateX(4px); }


/* ============================================================
   v8 — OFFICE GALLERY + LIME COINS DECORATION
   ============================================================ */

/* ---- Office gallery — 3 равные вертикальные карточки (Polaroid-style) ---- */
.office-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .office-gallery { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.office-gallery__main,
.office-gallery__side {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-warm);
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft);
}
.office-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.office-gallery__main:hover img,
.office-gallery__side:hover img { transform: scale(1.04); }
.office-gallery__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15, 20, 16, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

/* ---- About teaser — превью на главной с фото и кнопкой ---- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  overflow: hidden;
}
@media (min-width: 880px) {
  .about-teaser { grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center; padding: clamp(2rem, 3vw, 2.5rem); }
}
.about-teaser__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-warm);
}
@media (min-width: 880px) { .about-teaser__visual { aspect-ratio: 5 / 6; } }
.about-teaser__visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.about-teaser:hover .about-teaser__visual img { transform: scale(1.03); }
.about-teaser__visual-caption {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(15, 20, 16, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-pill);
}
.about-teaser__body { padding: 0.5rem 0; }
.about-teaser__title {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1rem;
}
.about-teaser__text {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  max-width: 50ch;
}
.about-teaser__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}
.about-teaser__fact {
  background: var(--bg-warm);
  padding: 0.875rem 1rem;
  border-radius: 14px;
}
.about-teaser__fact-num {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  line-height: 1;
}
.about-teaser__fact-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.3;
}
.about-teaser__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.375rem;
  background: var(--forest);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 14px;
  transition: background 0.2s, transform 0.2s;
  width: fit-content;
}
.about-teaser__cta:hover { background: var(--forest-2); transform: translateY(-1px); }

/* ---- Lime coins decorative elements (hero) ---- */
.hero-v2__main {
  /* делаем overflow visible чтобы монеты могли торчать */
  overflow: hidden; /* пока оставляю hidden, монеты внутри карточки */
}

.lime-coin {
  position: absolute;
  pointer-events: none;
  z-index: 0;             /* под текстом — больше не перекрывают */
  filter: drop-shadow(0 14px 30px rgba(20, 56, 32, 0.35));
  animation: coinFloat 7s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}
.lime-coin img { width: 100%; height: auto; display: block; }

/* Все позиции — в правой части (где нет текста) или ниже metrics */
.lime-coin--top-right {
  --coin-rot: -10deg; --coin-rot-alt: 4deg;
  top: 2rem; right: 2rem;
  width: 100px;
  animation-delay: 0s;
}
.lime-coin--mid-right {
  --coin-rot: 22deg; --coin-rot-alt: 28deg;
  top: 50%; right: 4%;
  width: 70px;
  animation-delay: -2.5s;
}
.lime-coin--bottom-right {
  --coin-rot: -18deg; --coin-rot-alt: -10deg;
  bottom: 2.5rem; right: 6%;
  width: 80px;
  animation-delay: -4.5s;
}
/* top-left убрана из hero — она перекрывала chip "Лицензия ЦБ" */
.lime-coin--top-left { display: none; }

/* Контент hero — поверх монет */
.hero-v2__main > div,
.hero-v2__main > .hero-v2__metrics { position: relative; z-index: 1; }

/* На мобильной — полностью скрываем все декоративные монеты */
@media (max-width: 900px) {
  .hero-v2__main .lime-coin { display: none; }
}

/* Единственная анимация — тихая левитация (без реакций на hover) */
@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(var(--coin-rot, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--coin-rot, 0deg)); }
}

/* page-head декоративные монеты — только справа в свободной зоне */
.page-head-v5 { position: relative; overflow: hidden; }
.page-head-v5 > .container { position: relative; z-index: 1; }
.page-head-v5 .lime-coin { z-index: 0; }
.page-head-v5 .lime-coin--top-right { top: 30%; right: 3%; width: 80px; }
.page-head-v5 .lime-coin--mid-right { top: 70%; right: 9%; width: 56px; }
/* Скрыть на планшете и мобильной — иначе перекрывают lead/h1 */
@media (max-width: 1024px) {
  .page-head-v5 .lime-coin { display: none; }
}

/* ---- Концептуальный блок "Lime Coins" (на about) ---- */
.coin-strip {
  background: var(--grad-lime-clean);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 880px) {
  .coin-strip { grid-template-columns: 1.4fr 1fr; align-items: center; gap: 3rem; }
}
.coin-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
  pointer-events: none;
}
.coin-strip__inner { position: relative; z-index: 1; }
.coin-strip__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-deep);
  opacity: 0.65;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.coin-strip__title {
  font-size: clamp(1.875rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--forest-deep);
  margin-bottom: 1rem;
}
.coin-strip__text {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--forest-deep);
  opacity: 0.78;
  max-width: 50ch;
}
.coin-strip__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
}
.coin-strip__visual img {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 18px 42px rgba(20, 56, 32, 0.3));
  animation: coinSpin 12s ease-in-out infinite;
}
@keyframes coinSpin {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-10px); }
}


/* ============================================================
   v9 — LIME EMBLEM SVG decoration
   ============================================================ */

.emblem {
  position: absolute;
  pointer-events: none;
  user-select: none;
  display: block;
  z-index: 0;
}

/* Правая колонка hero — ОДИН блок с ОДНОТОННЫМ фоном (калькулятор + эмблема) */
.hero-v2__col {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--forest);
}
/* Калькулятор и эмблема — прозрачный фон, нет рамок и градиентов */
.hero-v2__col .hero-v2__side {
  flex: 1 1 auto;
  min-height: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.hero-v2__col .hero-v2__side::before { display: none; }
.hero-v2__emblem {
  background: transparent;
  border-radius: 0;
  padding: clamp(1.25rem, 2vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  min-height: 220px;
}
.hero-v2__emblem::before { display: none; }
.hero-v2__emblem img {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(197, 242, 38, 0.5)) drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
  animation: emblemFloat 9s ease-in-out infinite;
}

/* На мобильной скрываем — экономим место */
@media (max-width: 900px) {
  .hero-v2__emblem { display: none; }
}

@keyframes emblemFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(6deg); }
}

/* Полу-эмблемы как декорация по бокам блоков */
.emblem--half-right {
  right: -10%;
  top: 50%;
  width: 280px;
  transform: translateY(-50%);
  opacity: 0.18;
}
.emblem--half-left {
  left: -12%;
  bottom: -20%;
  width: 240px;
  opacity: 0.2;
}
.emblem--corner-tr {
  top: -18%;
  right: -8%;
  width: 200px;
  opacity: 0.22;
}
@media (max-width: 760px) {
  .emblem--half-right, .emblem--half-left, .emblem--corner-tr { display: none; }
}

/* Чтобы родители были position: relative + overflow: hidden — для выглядывания из углов */
.cta-v2 .emblem--half-right,
.compliance .emblem--half-left,
.brand-strip .emblem--corner-tr { z-index: 0; }

.compliance { position: relative; overflow: hidden; }
.compliance > div,
.compliance .compliance__items { position: relative; z-index: 1; }


/* ============================================================
   v10 — USE-CASES (жизненные ситуации, для чего берут кредит)
   ============================================================ */

.use-cases { position: relative; }

.use-cases-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px)  { .use-cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .use-cases-grid { grid-template-columns: repeat(3, 1fr); } }

/* Mobile: горизонтальный слайдер с snap-scroll */
@media (max-width: 699px) {
  .use-cases-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    gap: 0.875rem;
    padding-bottom: 0.5rem;
    margin: 0 calc(-1 * var(--gutter));
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .use-cases-grid::-webkit-scrollbar { display: none; }
  .use-cases-grid > .use-case {
    flex: 0 0 78%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

/* Кнопки слайдера — под карточками, по центру, только на мобильной */
.use-cases__controls {
  display: none;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 1.25rem;
}
.use-cases__nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 6px 20px -6px rgba(20, 56, 32, 0.4);
}
.use-cases__nav:hover { background: var(--forest-2); }
.use-cases__nav:active { transform: scale(0.92); }
.use-cases__nav[disabled] { opacity: 0.3; cursor: default; box-shadow: none; }
@media (max-width: 699px) {
  .use-cases__controls { display: flex; }
}

.use-case {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: var(--bg-warm);
}
.use-case:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.use-case:hover img { transform: scale(1.05); }

.use-case__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
  /* Пока img грузится, фон карточки (.use-case с inline LQIP background-image)
     виден сквозь "пустую" img — пользователь сразу видит размытое превью. */
}
.use-case__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 20, 16, 0.85) 0%, rgba(15, 20, 16, 0.4) 40%, transparent 65%);
  pointer-events: none;
}
.use-case__chip {
  position: absolute;
  top: 1rem; left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(197, 242, 38, 0.95);
  color: var(--forest-deep);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.use-case__chip--soft {
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest);
}
.use-case__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.25rem 1.25rem;
  z-index: 2;
  color: #fff;
}
.use-case__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.375rem;
}
.use-case__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}


/* ============================================================
   v11 — MAP EMBED (Яндекс)
   ============================================================ */

.map-embed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-warm);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 7;
}
@media (max-width: 720px) { .map-embed { aspect-ratio: 4 / 5; } }
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-embed__pin {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(15, 20, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 0.875rem 1.125rem;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  z-index: 2;
  pointer-events: none;
  max-width: 280px;
}
.map-embed__pin-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lime-natural);
  margin-bottom: 0.375rem;
  display: block;
}
.map-embed__open {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--lime-natural);
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}
.map-embed__open:hover { background: var(--lime-natural-2); transform: translateY(-1px); }


/* ============================================================
   v12 — STEP PHOTOS (replace SVG icons with actual photos)
   ============================================================ */

.step-v2__photo {
  margin-top: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-warm);
  position: relative;
}
.step-v2__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.step-v2:hover .step-v2__photo img { transform: scale(1.04); }
.step-v2--accent .step-v2__photo { background: rgba(255, 255, 255, 0.4); }
.step-v2--dark .step-v2__photo { background: rgba(255, 255, 255, 0.06); }


/* ============================================================
   v13 — BLOG: фото-обложка карточки + страница статьи
   ============================================================ */

.blog-card__cover--photo { padding: 0; overflow: hidden; }
.blog-card__cover--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-card__cover--photo img { transform: scale(1.04); }
.blog-card__cover--photo::after { display: none; }

/* Article page */
.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.article__cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: var(--bg-warm);
  box-shadow: var(--shadow-card);
}
.article__cover img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

.article {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.article p { margin-bottom: 1.25rem; color: var(--ink-soft); }
.article h2 {
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}
.article ul {
  margin: 0 0 1.5rem;
  padding-left: 0;
  list-style: none;
}
.article ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  color: var(--ink-soft);
}
.article ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.625em;
  width: 8px; height: 8px;
  background: var(--lime-natural);
  border-radius: 50%;
}
.article__back {
  max-width: 720px;
  margin: 2.5rem auto 0;
  font-size: 0.9375rem;
}
.article__back a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.article__back a:hover { color: var(--forest-2); }


/* ---- CTA «Читать все статьи» под grid'ом блога на главной ---- */
.blog-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.blog-cta {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

/* ============ GAME FAB (Lime Runner) ============ */

.game-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem 0.875rem 1rem;
  background: linear-gradient(135deg, #C5F226 0%, #95cc1c 100%);
  color: #1F4D2A;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9375rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(31, 77, 42, 0.28),
              0 2px 6px rgba(31, 77, 42, 0.16);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid rgba(31, 77, 42, 0.12);
  cursor: pointer;
}
.game-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 32px rgba(31, 77, 42, 0.36),
              0 4px 10px rgba(31, 77, 42, 0.18);
}
.game-fab:active {
  transform: scale(0.97);
}
.game-fab__icon {
  font-size: 1.25rem;
  line-height: 1;
  animation: gameFabPulse 2.4s ease-in-out infinite;
}
@keyframes gameFabPulse {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50%      { transform: rotate(-8deg) scale(1.1); }
}
.game-fab__text {
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* На очень узких экранах — только иконка, без текста */
@media (max-width: 380px) {
  .game-fab { padding: 0.875rem; }
  .game-fab__text { display: none; }
}

/* Не показываем FAB на самой странице игры */
body.is-game-page .game-fab { display: none; }

/* ============ LEAD MODAL (глобальная форма заявки) ============ */

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lead-modal[hidden] { display: none; }
.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lead-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 16, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lead-modal__card {
  position: relative;
  z-index: 1;
  background: var(--lime-natural, #C5F226);
  color: var(--forest-deep, #143820);
  border-radius: 32px;
  padding: 2.25rem 1.75rem 2rem;
  max-width: 480px;
  width: 100%;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(15, 20, 16, 0.35),
              0 8px 24px rgba(15, 20, 16, 0.2);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.lead-modal.is-open .lead-modal__card {
  transform: translateY(0) scale(1);
}
.lead-modal__close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 20, 16, 0.08);
  border: 1px solid rgba(15, 20, 16, 0.12);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--forest-deep, #143820);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.lead-modal__close:hover {
  background: rgba(15, 20, 16, 0.16);
  transform: rotate(90deg);
}
.lead-modal__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 2.5rem 0.75rem 0;
  color: var(--forest-deep, #143820);
}
.lead-modal__lead {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  opacity: 0.8;
}
.lead-modal .cta-v2__actions {
  gap: 0.75rem;
}
.lead-modal .form__input,
.lead-modal .form__select {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 20, 16, 0.1);
}

/* Блокировка скролла body при открытой модалке */
body.is-modal-open { overflow: hidden; }

@media (max-width: 540px) {
  .lead-modal__card {
    padding: 1.75rem 1.25rem 1.5rem;
    border-radius: 24px;
  }
}

/* ============ GLOW для всех кнопок ============ */

/* Базовая мягкая «дышащая» подсветка для всех .btn — без агрессии,
   просто немного жизни. Усиливается на hover. */
.btn,
.nav__cta {
  position: relative;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s var(--ease, cubic-bezier(0.22, 1, 0.36, 1)),
    box-shadow 0.3s ease,
    border-color 0.25s ease;
}

/* Правило: цвет свечения = цвет фона кнопки. Без оранжевых/красных ring'ов
   на лаймовых кнопках и без лаймовых ring'ов на forest-кнопках. */

/* Лаймовая кнопка — лаймовое свечение */
.btn--lime {
  box-shadow:
    0 6px 16px -6px rgba(197, 242, 38, 0.5),
    0 0 0 0 rgba(197, 242, 38, 0);
}
.btn--lime:hover {
  box-shadow:
    0 10px 28px -6px rgba(197, 242, 38, 0.7),
    0 0 32px rgba(197, 242, 38, 0.55),
    0 0 0 4px rgba(197, 242, 38, 0.18);
  transform: translateY(-2px);
}

/* Оранжевая кнопка (старый стиль .btn--orange) — оранжевое свечение */
.btn--orange {
  box-shadow:
    0 6px 16px -6px rgba(255, 107, 53, 0.45),
    0 0 0 0 rgba(255, 107, 53, 0);
}
.btn--orange:hover {
  box-shadow:
    0 10px 28px -6px rgba(255, 107, 53, 0.6),
    0 0 28px rgba(255, 107, 53, 0.45);
  transform: translateY(-2px);
}

/* Тёмные кнопки (forest) — forest-свечение, БЕЗ лаймовых ring'ов */
.btn--dark {
  box-shadow:
    0 6px 18px -4px rgba(15, 30, 18, 0.35),
    0 0 0 0 rgba(15, 30, 18, 0);
}
.btn--dark:hover {
  box-shadow:
    0 12px 28px -6px rgba(15, 30, 18, 0.5),
    0 0 28px rgba(31, 77, 42, 0.45),
    0 0 0 3px rgba(31, 77, 42, 0.15);
  transform: translateY(-2px);
}

/* Светлая ghost (контур forest) — forest-glow */
.btn--ghost-light:hover {
  box-shadow:
    0 8px 20px -8px rgba(31, 77, 42, 0.4),
    0 0 16px rgba(31, 77, 42, 0.2);
  transform: translateY(-2px);
}

/* Тёмная ghost (контур lime) — лаймовый glow */
.btn--ghost-dark:hover {
  box-shadow:
    0 0 18px rgba(197, 242, 38, 0.4),
    0 0 0 3px rgba(197, 242, 38, 0.15);
}

/* Nav-CTA — на лаймовой шапке: лаймовое свечение (без orange!) */
.nav--dark .nav__cta {
  box-shadow: 0 6px 16px -4px rgba(197, 242, 38, 0.45);
}
.nav--dark .nav__cta:hover {
  box-shadow:
    0 10px 24px -4px rgba(197, 242, 38, 0.65),
    0 0 28px rgba(197, 242, 38, 0.45);
  transform: translateY(-2px);
}

/* Submit-кнопка в lead-form (она .btn--dark, тёмная) — forest-свечение */
.cta-v2 .btn--dark {
  box-shadow:
    0 8px 24px -8px rgba(15, 30, 18, 0.5),
    0 0 0 0 rgba(15, 30, 18, 0);
}
.cta-v2 .btn--dark:hover {
  box-shadow:
    0 14px 32px -8px rgba(15, 30, 18, 0.6),
    0 0 28px rgba(31, 77, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Mini-calc CTA в hero — лаймовое свечение */
.calc-mini__cta:hover {
  box-shadow: 0 0 20px rgba(197, 242, 38, 0.5);
}

/* Лёгкая пульсация для nav-CTA — лаймовая, в тон фону */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 16px -4px rgba(197, 242, 38, 0.45); }
  50%      { box-shadow: 0 6px 16px -4px rgba(197, 242, 38, 0.55), 0 0 18px rgba(197, 242, 38, 0.3); }
}
.nav--dark .nav__cta:not(:hover) {
  animation: ctaPulse 3.2s ease-in-out infinite;
}

/* ============ CALL FAB + STACK ============ */

/* Контейнер для двух FAB-кнопок (Позвонить + Играть) */
.fab-stack {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
}
/* Перебиваем абсолютное позиционирование game-fab — теперь внутри стека */
.fab-stack .game-fab {
  position: static;
}

/* Кнопка «Позвонить» — тёмная (forest), чтобы отличалась от лаймовой Игры */
.call-fab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem 0.875rem 1rem;
  background: linear-gradient(135deg, #1F4D2A 0%, #143820 100%);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  box-shadow:
    0 8px 24px rgba(15, 30, 18, 0.35),
    0 2px 6px rgba(15, 30, 18, 0.18);
  transition: transform 0.2s, box-shadow 0.25s, background 0.25s;
}
.call-fab:hover,
.call-fab.is-open {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 14px 32px rgba(15, 30, 18, 0.45),
    0 0 28px rgba(31, 77, 42, 0.4);
}
.call-fab:active { transform: scale(0.97); }
.call-fab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  animation: callFabRing 4s ease-in-out infinite;
}
@keyframes callFabRing {
  0%, 100% { transform: rotate(0); }
  10%      { transform: rotate(-12deg); }
  20%      { transform: rotate(10deg); }
  30%      { transform: rotate(-8deg); }
  40%      { transform: rotate(0); }
}
.call-fab__text {
  white-space: nowrap;
  letter-spacing: 0.02em;
}
@media (max-width: 380px) {
  .call-fab { padding: 0.875rem; }
  .call-fab__text { display: none; }
}

/* Попап с двумя номерами */
.call-pop {
  position: fixed;
  right: 1.25rem;
  bottom: 8.5rem; /* над стеком FAB */
  z-index: 95;
  min-width: 280px;
  background: #fff;
  border-radius: 20px;
  padding: 0.625rem;
  box-shadow:
    0 24px 60px -10px rgba(15, 30, 18, 0.35),
    0 4px 12px rgba(15, 30, 18, 0.18);
  border: 1px solid rgba(15, 30, 18, 0.08);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.2s, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.call-pop[hidden] { display: none; }
.call-pop.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.call-pop__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted, #6e7373);
  padding: 0.5rem 0.75rem 0.375rem;
}
.call-pop__item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.75rem 0.875rem;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink, #0f1410);
  transition: background 0.18s;
}
.call-pop__item:hover {
  background: rgba(197, 242, 38, 0.18);
}
.call-pop__num {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.call-pop__label {
  font-size: 0.8125rem;
  color: var(--muted, #6e7373);
}

/* ============ HERO — вертикальное центрирование контента ============ */
/* Текст по левому краю (как было). Верхний блок (chip+H1+lead+cta)
   вертикально центрирован в hero-карточке — чтобы он смотрелся
   "посередине квадрата", а не "прилипшим к верху".
   Метрики прижаты к нижнему краю. */
.hero-v2__main {
  justify-content: center;
  gap: 1.5rem;
}
.hero-v2__main > .hero-v2__metrics {
  margin-top: auto;
}

/* ============ REVEAL ON SCROLL — чистые fade-in-up/down/left/right ============ */

[data-reveal] {
  opacity: 0;
  transform: var(--reveal-from, translate3d(0, 40px, 0));
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal="up"]    { --reveal-from: translate3d(0, 40px, 0); }
[data-reveal="down"]  { --reveal-from: translate3d(0, -40px, 0); }
[data-reveal="left"]  { --reveal-from: translate3d(-50px, 0, 0); }
[data-reveal="right"] { --reveal-from: translate3d(50px, 0, 0); }

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============ HOVER MAGIC: tilt + glow для карточек ============ */

/* Слегка приподнимаются и наклоняются при hover — добавляет «жизни» */
.pcard, .blog-card, .use-case, .step-v2, .compliance__item, .trust-item {
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.3s ease;
}
.pcard:hover, .blog-card:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 24px 50px -16px rgba(15, 30, 18, 0.28);
}
.use-case:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.04);
}
.step-v2:hover {
  transform: translateY(-4px);
}
.compliance__item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
}
.trust-item:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .pcard, .blog-card, .use-case, .step-v2, .compliance__item, .trust-item {
    transition: none;
  }
  .pcard:hover, .blog-card:hover, .use-case:hover, .step-v2:hover { transform: none; }
}

/* ============================================================
   Cookie consent banner (compliance with UZ personal data law)
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 720px;
  margin: 0 auto;
  background: var(--forest, #1F4D2A);
  color: #FFFFFF;
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.cookie-banner.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}
.cookie-banner__link {
  color: var(--lime, #C5F226);
  text-decoration: underline;
  font-weight: 600;
}
.cookie-banner__link:hover { color: #FFFFFF; }
.cookie-banner__btn {
  background: var(--lime, #C5F226);
  color: var(--forest, #1F4D2A);
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}
.cookie-banner__btn:hover {
  background: #d4ff3a;
  transform: translateY(-1px);
}
@media (max-width: 520px) {
  .cookie-banner { padding: 14px 16px; border-radius: 16px; }
  .cookie-banner__text { font-size: 0.8125rem; }
  .cookie-banner__btn { width: 100%; padding: 12px; }
}
