/* Стили лендинга «Секреты прораба».
   Подключаются только на этой странице, чтобы не утяжелять остальной сайт.
   Цвета — фирменные: синий сайта плюс строительный жёлтый. */

.lp { background: var(--white); }
/* clip, а не hidden: hidden делает блок отдельной прокручиваемой
   областью, из-за чего справа появляется вторая полоса прокрутки,
   а сама прокрутка начинает подтормаживать */
.lp { overflow-x: clip; }

/* ---------- плавное появление блоков при прокрутке ---------- */
.reveal { opacity: 0; transform: translateY(26px); will-change: opacity, transform; transition: opacity .7s ease, transform .7s cubic-bezier(.22,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; will-change: auto; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- общая раскладка секций ---------- */
.lp-sec { padding: 72px 0; position: relative; }
.lp-sec-paper { background: var(--paper); }
.lp-sec-dark { background: var(--navy); color: #fff; }
.lp-sec-dark h2, .lp-sec-dark h3 { color: #fff; }
.lp-sec h2 { font-size: 32px; line-height: 1.25; margin-bottom: 18px; }
.lp-sec p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; font-size: 16.5px; }
.lp-sec-dark p { color: rgba(255,255,255,.82); }
.lp-center { text-align: center; }
.lp-sub { margin-bottom: 34px !important; }
.lp-muted { color: var(--ink-soft); font-size: 15px; }

/* мягкая жёлтая черта между секциями — переход, а не резкий стык */
.lp-sec + .lp-sec::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 72px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.lp-two { display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center; }
.lp-two-rev { grid-template-columns: .85fr 1.15fr; }
.lp-two-rev .lp-media { order: -1; }

/* ---------- первый экран ---------- */
.lp-hero { padding: 54px 0 68px; background: linear-gradient(180deg, var(--paper) 0%, var(--white) 100%); }
.lp-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.lp-hero h1 { font-size: 40px; line-height: 1.16; margin: 14px 0 16px; }
.lp-lead { font-size: 17.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 20px; }
.lp-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 12px; }

/* бегущий отблеск по надписи «Секреты прораба».
   Проходит один раз при загрузке и останавливается: бесконечное мигание
   на заголовке мешало бы читать. */
/* отблеск не должен выходить за пределы надписи — иначе на узких
   экранах он растягивает страницу вбок */
.lp-brand { position: relative; display: inline-block; padding: 2px 0 6px; overflow: hidden; }
.lp-brand-letters { position: relative; z-index: 2; display: inline-block;
  font-weight: 800; font-size: 15px; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); }
.lp-letter { display: inline-block; opacity: 0; animation: lp-letter-in .5s ease forwards; animation-delay: calc(var(--l) * .055s); }
@keyframes lp-letter-in { from { opacity: 0; transform: translateY(-4px) scale(1.06); } to { opacity: 1; transform: none; } }
.lp-brand-scan { position: absolute; inset: -4px -10px; z-index: 1; pointer-events: none; border-radius: 8px;
  background: radial-gradient(circle at 50% 50%, rgba(243,183,13,.55) 0%, transparent 55%),
              radial-gradient(circle at 45% 45%, rgba(47,111,237,.35) 0%, transparent 50%);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 0%, transparent 8%, #000 26%);
  mask: radial-gradient(circle at 50% 50%, transparent 0%, transparent 8%, #000 26%);
  animation: lp-scan 1.9s cubic-bezier(.6,.8,.5,1) .15s 1 both; }
@keyframes lp-scan { 0% { transform: translateX(-60%); opacity: 0; } 18% { opacity: 1; } 100% { transform: translateX(60%); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .lp-letter, .lp-brand-scan { animation: none; opacity: 1; } .lp-brand-scan { display: none; } }

/* ---------- список с галочками ---------- */
.lp-checks { list-style: none; margin: 0 0 22px; padding: 0; }
.lp-checks li { position: relative; padding-left: 30px; margin-bottom: 11px; color: var(--ink-soft); line-height: 1.6; font-size: 16px; }
.lp-checks li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 2px 8px rgba(243,183,13,.45); }
.lp-checks li::after { content: ""; position: absolute; left: 6px; top: 9px; width: 6px; height: 3px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }
.lp-checks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 4px 28px; }

/* ---------- кнопка ---------- */
/* Круглая подложка при наведении разворачивается во всю ширину, стрелка
   подаётся вперёд. Цвета фирменные: синий сайта вместо сиреневого. */
.cta { position: relative; display: inline-flex; align-items: center; gap: 0;
  padding: 14px 22px; border: none; background: none; cursor: pointer;
  text-decoration: none; transition: transform .2s ease; -webkit-tap-highlight-color: transparent; }
.cta::before { content: ""; position: absolute; top: 0; left: 0; display: block;
  width: 49px; height: 49px; border-radius: 50px; background: var(--gold);
  box-shadow: 0 6px 18px rgba(243,183,13,.4);
  transition: width .35s cubic-bezier(.4,.2,.2,1); }
.cta span { position: relative; font-family: var(--body); font-size: 17px; font-weight: 700;
  letter-spacing: .01em; color: var(--navy); white-space: nowrap; }
.cta svg { position: relative; margin-left: 10px; fill: none; stroke: var(--navy);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transform: translateX(-5px); transition: transform .3s ease, stroke .3s ease; }
@media (hover: hover) and (pointer: fine) {
  .cta:hover::before { width: 100%; }
  .cta:hover svg { transform: translateX(0); }
}
.cta:active { transform: scale(.96); }
.cta:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; border-radius: 50px; }
/* на тёмной секции */
.cta-light::before { background: rgba(255,255,255,.14); }
.cta-light span { color: #fff; }
.cta-light svg { stroke: #fff; }
@media (hover: hover) and (pointer: fine) {
  .cta-light:hover::before { background: var(--gold); }
  .cta-light:hover span, .cta-light:hover svg { color: var(--navy); stroke: var(--navy); }
}
.cta-sm { padding: 11px 16px; }
.cta-sm span { font-size: 15px; }
.cta-sm::before { width: 42px; height: 42px; }
.cta-wide { width: 100%; justify-content: center; }
.cta-wide::before { left: 50%; transform: translateX(-50%); }
@media (hover: hover) and (pointer: fine) { .cta-wide:hover::before { width: 100%; } }

/* ---------- фото и заглушки под фото ---------- */
/* Место под фото задано заранее и не зависит от размеров загруженной
   картинки: иначе большое или вытянутое фото растягивало бы строку и
   съезжал бы текст рядом. Картинка вписывается в эту рамку, лишнее по
   краям мягко обрезается — пропорции самой фотографии не искажаются. */
.lp-media, .lp-hero-media { position: relative; aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center; }
/* Картинка вписывается в место целиком, ничего не обрезая. Фона у рамки
   нет — у фото без фона ничего лишнего за ним не появится. Тень идёт по
   контуру самой картинки: у прозрачной она ляжет по форме предмета. */
.lp-media img, .lp-hero-media img { display: block; max-width: 100%; max-height: 100%;
  width: auto; height: auto; object-fit: contain; border-radius: 14px;
  filter: drop-shadow(0 12px 20px rgba(22,35,63,.15)); box-shadow: none; }
.lp-media-wide { margin: 30px 0; aspect-ratio: 16 / 9; }
/* пустая рамка-подсказка занимает ровно столько же места, сколько займёт
   будущее фото — поэтому вёрстка не поедет, когда его загрузят */
.lp-hero-media .lp-ph, .lp-media .lp-ph { position: absolute; inset: 0; min-height: 0; border-radius: 0; }
.lp-ph { display: flex; box-sizing: border-box; align-items: center; justify-content: center; text-align: center; min-height: 260px;
  border: 2px dashed #C7D4EC; border-radius: 18px; background: repeating-linear-gradient(45deg, #FBFCFE, #FBFCFE 12px, #F4F7FC 12px, #F4F7FC 24px);
  color: #8A97AE; font-size: 14px; font-weight: 600; padding: 20px; }
.lp-ph-tall { min-height: 0; aspect-ratio: 4 / 5; }
.lp-ph-wide { min-height: 0; aspect-ratio: 16 / 9; margin: 30px 0; }

/* ---------- акценты в тексте ---------- */
.lp-accent { background: linear-gradient(180deg, transparent 62%, rgba(243,183,13,.32) 62%);
  display: inline; color: var(--navy) !important; font-weight: 600; }
.lp-punch { font-size: 21px; font-weight: 800; color: var(--navy) !important; margin-top: 20px; }

/* ---------- карточки с переворотом ---------- */
.lp-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 34px; }
.flip-card { background-color: transparent; height: 260px; perspective: 1000px; }
.flip-card-inner { position: relative; width: 100%; height: 100%; text-align: center;
  transition: transform .8s cubic-bezier(.3,.7,.3,1); transform-style: preserve-3d; }
@media (hover: hover) and (pointer: fine) { .flip-card:hover .flip-card-inner { transform: rotateY(180deg); } }
.flip-card:focus-visible .flip-card-inner, .flip-card.is-flipped .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back { position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; padding: 22px 22px 46px;
  -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.22); }
.flip-card-front { background: linear-gradient(135deg, #FFFFFF 62%, #FFF6DC 100%); color: var(--navy); border: 1px solid #F0D68A; }
.lp-sec-dark .flip-card-front .title, .flip-card-front .title { font-size: 18px; font-weight: 800; margin: 0; color: var(--navy); }
.lp-sec-dark .flip-card-front p { color: var(--ink-soft); }
.lp-sec-dark .flip-card-back, .lp-sec-dark .flip-card-back .flip-sum { color: var(--navy); }
.flip-card-front p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.flip-card-back { transform: rotateY(180deg); color: var(--navy);
  background: linear-gradient(135deg, var(--gold) 20%, #FFD35A 100%); border: 1px solid var(--gold-dark); }
.flip-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; opacity: .8; }
.flip-sum { font-size: 26px; font-weight: 800; line-height: 1.2; }
.lp-total { max-width: 760px; margin: 0 auto; text-align: center; }

/* ---------- что вы узнаете ---------- */
.lp-learn { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 22px 30px; margin-bottom: 10px; }
.lp-learn-item { display: flex; gap: 16px; align-items: flex-start; }
.lp-num { flex: none; width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--navy); font-weight: 800; font-size: 16px; box-shadow: 0 6px 16px rgba(243,183,13,.4); }
.lp-learn-item h3 { font-size: 17px; margin-bottom: 6px; }
.lp-learn-item p { font-size: 15px; margin: 0; }

/* ---------- вопросы ---------- */
.lp-quiz { counter-reset: q; list-style: none; padding: 0; margin: 0 0 18px; }
.lp-quiz li { counter-increment: q; position: relative; padding-left: 40px; margin-bottom: 14px;
  color: var(--ink-soft); line-height: 1.65; }
.lp-quiz li::before { content: counter(q); position: absolute; left: 0; top: -1px; width: 27px; height: 27px;
  border-radius: 9px; background: var(--blue-light); color: var(--blue); font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center; }

/* ---------- цена и покупка ---------- */
.lp-price-card { max-width: 620px; margin: 0 auto; background: var(--white); border: 1px solid var(--line);
  border-radius: 24px; padding: 38px; box-shadow: 0 26px 60px rgba(22,35,63,.12); text-align: center; }
.lp-price-card h2 { font-size: 30px; margin-bottom: 10px; }
.lp-price-sub { margin-bottom: 24px; }
.lp-buy { text-align: left; margin-bottom: 26px; }
.lp-buy label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; color: var(--navy); }
.lp-buy input[type=email] { width: 100%; box-sizing: border-box; padding: 14px 16px; font-size: 15.5px;
  font-family: var(--body); color: var(--navy); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 16px;
  transition: border-color .15s ease, box-shadow .15s ease; }
.lp-buy input[type=email]:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,111,237,.15); }
.lp-format { list-style: none; padding: 20px 0 0; margin: 0; border-top: 1px solid var(--line); text-align: left; }
.lp-format li { position: relative; padding-left: 22px; margin-bottom: 9px; font-size: 14.5px; color: var(--ink-soft); }
.lp-format li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ---------- частые вопросы ---------- */
.lp-faq-wrap { max-width: 780px; }
.lp-faq { background: var(--white); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.lp-faq summary { cursor: pointer; padding: 18px 46px 18px 20px; font-weight: 700; color: var(--navy);
  position: relative; list-style: none; font-size: 16px; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: ""; position: absolute; right: 20px; top: 50%; width: 9px; height: 9px;
  border-right: 2.5px solid var(--gold-dark); border-bottom: 2.5px solid var(--gold-dark);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease; }
.lp-faq[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.lp-faq p { padding: 0 20px 18px; margin: 0; font-size: 15.5px; }

/* ---------- финал ---------- */
.lp-final { padding: 80px 0; }
.lp-final h2 { font-size: 34px; max-width: 760px; margin: 0 auto 16px; }
.lp-final-text { max-width: 640px; margin: 0 auto 26px !important; font-size: 17px; }

/* ---------- планшет ---------- */
@media (max-width: 960px) {
  .lp-hero-grid, .lp-two { grid-template-columns: 1fr; gap: 28px; }
  /* на узких экранах сначала фото, затем заголовок и текст — так блок
     читается сверху вниз одинаково во всех секциях */
  .lp-hero-media, .lp-two .lp-media, .lp-two-rev .lp-media { order: -1; }
  .lp-flow { display: flex; flex-direction: column; }
  .lp-flow .lp-media-wide, .lp-flow .lp-ph-wide { order: -1; margin-top: 0; }
  .lp-hero h1 { font-size: 32px; }
  .lp-sec { padding: 54px 0; }
  .lp-sec h2 { font-size: 27px; }
  .lp-final h2 { font-size: 28px; }
}

/* ---------- телефон ---------- */
@media (max-width: 640px) {
  .lp-hero { padding: 32px 0 44px; }
  .lp-hero h1 { font-size: 26px; }
  .lp-lead { font-size: 16px; }
  .lp-sec { padding: 44px 0; }
  .lp-sec h2 { font-size: 23px; }
  .lp-sec p { font-size: 16px; }
  .lp-btn { display: block; text-align: center; padding: 15px 20px; }
  .lp-cards { grid-template-columns: 1fr; }
  .flip-card { height: 230px; }
  .lp-price-card { padding: 24px 20px; border-radius: 18px; }
  .lp-price-card h2 { font-size: 21px; line-height: 1.3; }
  .lp-punch { font-size: 19px; }
  .lp-media, .lp-hero-media, .lp-ph-tall { aspect-ratio: 4 / 3; }
  .lp-media-wide, .lp-ph-wide { aspect-ratio: 3 / 2; }
  .lp-final { padding: 56px 0; }
  .lp-final h2 { font-size: 24px; }
}

@media (max-width: 640px) {
  .lp-media img, .lp-hero-media img { filter: none; }
}

/* ---------- подсказка «нажмите» на карточке ---------- */
/* Надпись собрана из девяти вертикальных полос разного размера: вместе
   они дают эффект бегущей строки с перспективой. Под ней — полоска
   с бегающим бликом. */
.flip-press { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); }
/* Исходный эффект рассчитан на заставку во весь экран: там надпись
   выходит крошечной относительно своей рамки. На карточке шириной 220 px
   она была бы нечитаемой, поэтому задаём размеры под карточку явно. */
.flip-press .loader { width: 170px; height: 22px; }
.loader { --main-size: 2.6em; --text-color: var(--navy); --shine-color: rgba(243,183,13,.45);
  --shadow-color: #B9C2D4;
  display: flex; justify-content: center; align-items: center; overflow: hidden;
  user-select: none; position: relative; font-size: var(--main-size); font-weight: 900;
  text-transform: uppercase; color: var(--text-color); width: 7.3em; height: 1em;
  filter: drop-shadow(0 0 .05em var(--shine-color)); }
.loader .text { display: flex; align-items: center; justify-content: center; text-align: center;
  white-space: nowrap; overflow: hidden; position: absolute; }
.loader .text:nth-child(1) { clip-path: polygon(0% 0%, 11.11% 0%, 11.11% 100%, 0% 100%); font-size: calc(var(--main-size)/20); margin-left: -2.1em; opacity: .6; }
.loader .text:nth-child(2) { clip-path: polygon(11.11% 0%, 22.22% 0%, 22.22% 100%, 11.11% 100%); font-size: calc(var(--main-size)/16); margin-left: -.98em; opacity: .7; }
.loader .text:nth-child(3) { clip-path: polygon(22.22% 0%, 33.33% 0%, 33.33% 100%, 22.22% 100%); font-size: calc(var(--main-size)/13); margin-left: -.33em; opacity: .8; }
.loader .text:nth-child(4) { clip-path: polygon(33.33% 0%, 44.44% 0%, 44.44% 100%, 33.33% 100%); font-size: calc(var(--main-size)/11); margin-left: -.05em; opacity: .9; }
.loader .text:nth-child(5) { clip-path: polygon(44.44% 0%, 55.55% 0%, 55.55% 100%, 44.44% 100%); font-size: calc(var(--main-size)/10); margin-left: 0; opacity: 1; }
.loader .text:nth-child(6) { clip-path: polygon(55.55% 0%, 66.66% 0%, 66.66% 100%, 55.55% 100%); font-size: calc(var(--main-size)/11); margin-left: .05em; opacity: .9; }
.loader .text:nth-child(7) { clip-path: polygon(66.66% 0%, 77.77% 0%, 77.77% 100%, 66.66% 100%); font-size: calc(var(--main-size)/13); margin-left: .33em; opacity: .8; }
.loader .text:nth-child(8) { clip-path: polygon(77.77% 0%, 88.88% 0%, 88.88% 100%, 77.77% 100%); font-size: calc(var(--main-size)/16); margin-left: .98em; opacity: .7; }
.loader .text:nth-child(9) { clip-path: polygon(88.88% 0%, 100% 0%, 100% 100%, 88.88% 100%); font-size: calc(var(--main-size)/20); margin-left: 2.1em; opacity: .6; }
.loader .text span { animation: scrolling 2s cubic-bezier(.1,.6,.9,.4) infinite, shadow 2s cubic-bezier(.1,.6,.9,.4) infinite; }
.loader .text:nth-child(1) span { background: linear-gradient(to right, var(--text-color) 4%, var(--shadow-color) 7%); background-size: 200% auto; background-clip: text; -webkit-background-clip: text; color: transparent; }
.loader .text:nth-child(2) span { background: linear-gradient(to right, var(--text-color) 9%, var(--shadow-color) 13%); background-size: 200% auto; background-clip: text; -webkit-background-clip: text; color: transparent; }
.loader .text:nth-child(3) span { background: linear-gradient(to right, var(--text-color) 15%, var(--shadow-color) 18%); background-size: 200% auto; background-clip: text; -webkit-background-clip: text; color: transparent; }
.loader .text:nth-child(4) span { background: linear-gradient(to right, var(--text-color) 20%, var(--shadow-color) 23%); background-size: 200% auto; background-clip: text; -webkit-background-clip: text; color: transparent; }
.loader .text:nth-child(6) span { background: linear-gradient(to right, var(--shadow-color) 29%, var(--text-color) 32%); background-size: 200% auto; background-clip: text; -webkit-background-clip: text; color: transparent; }
.loader .text:nth-child(7) span { background: linear-gradient(to right, var(--shadow-color) 34%, var(--text-color) 37%); background-size: 200% auto; background-clip: text; -webkit-background-clip: text; color: transparent; }
.loader .text:nth-child(8) span { background: linear-gradient(to right, var(--shadow-color) 39%, var(--text-color) 42%); background-size: 200% auto; background-clip: text; -webkit-background-clip: text; color: transparent; }
.loader .text:nth-child(9) span { background: linear-gradient(to right, var(--shadow-color) 45%, var(--text-color) 48%); background-size: 200% auto; background-clip: text; -webkit-background-clip: text; color: transparent; }
.loader .line { position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden; height: .05em; width: calc(var(--main-size)/2); margin-top: .9em; border-radius: .05em; }
.loader .line::before { content: ""; position: absolute; height: 100%; width: 100%; background-color: var(--gold); opacity: .35; }
.loader .line::after { content: ""; position: absolute; height: 100%; width: 100%; background-color: var(--gold);
  border-radius: .05em; transform: translateX(-90%); animation: wobble 2s cubic-bezier(.5,.8,.5,.2) infinite; }
@keyframes wobble { 0% { transform: translateX(-90%); } 50% { transform: translateX(90%); } 100% { transform: translateX(-90%); } }
@keyframes scrolling { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes shadow { 0% { background-position: -98% 0; } 100% { background-position: 102% 0; } }
@media (prefers-reduced-motion: reduce) { .loader .text span, .loader .line::after { animation: none; } }

.lp-hint-flip { display: inline-flex; align-items: center; gap: 9px; }
.lp-hint-flip::before { content: ""; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); flex: none; }

/* на телефоне кнопка в шапке не помещается рядом с логотипом */
@media (max-width: 760px) { .cta-head { display: none; } }

/* «Увеличить на телефонах» — галочка в админке. Место под фото становится
   выше, поэтому сама картинка выходит крупнее. На компьютере ничего не
   меняется: там размер и так достаточный. */
@media (max-width: 640px) {
  .lp-media.is-big, .lp-hero-media.is-big { aspect-ratio: 3 / 4; }
  .lp-media-wide.is-big { aspect-ratio: 4 / 3; }
}

/* ---------- карточки «После прочтения вы сможете» ---------- */
/* Внутри карточки по кругу ходит размытое жёлтое пятно, сверху — почти
   непрозрачная подложка, сквозь которую оно просвечивает. */
.lp-able { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
@media (max-width: 960px) { .lp-able { grid-template-columns: repeat(2, 1fr); } }
.card { position: relative; width: 100%; min-height: 240px; border-radius: 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 44px rgba(22,35,63,.10), 0 2px 6px rgba(22,35,63,.06); }
.bg { position: absolute; inset: 5px; z-index: 2; background: rgba(255,255,255,.94);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); border-radius: 12px;
  outline: 2px solid #fff; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; padding: 22px; text-align: center; }
.bg p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); }
.card-check { flex: none; width: 48px; height: 48px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; background: var(--gold);
  box-shadow: 0 8px 20px rgba(243,183,13,.45); }
.card-check svg { fill: none; stroke: var(--navy); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.blob { position: absolute; z-index: 1; top: 50%; left: 50%; width: 140px; height: 140px;
  border-radius: 50%; background-color: var(--gold); filter: blur(14px);
  animation: blob-bounce 5s infinite ease; }
@keyframes blob-bounce {
  0%   { transform: translate(-100%, -100%) translate3d(0, 0, 0); }
  25%  { transform: translate(-100%, -100%) translate3d(100%, 0, 0); }
  50%  { transform: translate(-100%, -100%) translate3d(100%, 100%, 0); }
  75%  { transform: translate(-100%, -100%) translate3d(0, 100%, 0); }
  100% { transform: translate(-100%, -100%) translate3d(0, 0, 0); }
}
@media (prefers-reduced-motion: reduce) { .blob { animation: none; } }
@media (max-width: 640px) {
  .lp-able { grid-template-columns: 1fr; gap: 16px; }
  .card { min-height: 190px; }
  .bg { padding: 18px; gap: 12px; }
  .card-check { width: 42px; height: 42px; }
}