/*
 * =========================================================
 * 🛁 Лендинги реставрации - единый мягкий стиль (DEFERRED)
 * СКОП: offcanvas + modal + секции ниже первого экрана + footer
 * =========================================================
 */

/* =========================================================
   landing-band: умеренная дымка без “грязи”
   - пятна видны, но не отвлекают
   - верхнее сглаживание мягкое
   ========================================================= */

.restoration-landing.landing-band{
  /* дефолты */
  --band-bg: #fff;
  --band-spot1: 76,181,195;
  --band-spot2: 76,181,195;

  /* СДЕЛАЛИ ТИШЕ */
  --band-a: .09; /* было .12 */
  --band-b: .05; /* было .07 */

  /* чуть чище верх */
  --band-top: .90; /* было .85 */

  background:
    radial-gradient(1200px 520px at 12% 6%,
      rgba(var(--band-spot1), var(--band-a)) 0%,
      rgba(var(--band-spot1), 0) 70%
    ),

    radial-gradient(1100px 480px at 88% 92%,
      rgba(var(--band-spot2), var(--band-b)) 0%,
      rgba(var(--band-spot2), 0) 68%
    ),

    linear-gradient(180deg,
      rgba(255,255,255,var(--band-top)) 0%,
      rgba(255,255,255,0) 240px
    ),

    var(--band-bg);

  background-repeat:no-repeat;
}

/* SKY: холодный */
.restoration-landing.landing-band--sky{
  --band-bg: var(--tint-sky);
  --band-spot1: 76,181,195;
  --band-spot2: 76,181,195;

  /* тише */
  --band-a: .08; /* было .11 */
  --band-b: .04; /* было .06 */
  --band-top: .90;
}

/* HERO: тёплый (без грязи) */
.restoration-landing.landing-band--hero{
  --band-bg: var(--tint-hero);
  --band-spot1: 255,210,190;
  --band-spot2: 255,235,222;

  /* тише */
  --band-a: .09; /* было .12 */
  --band-b: .05; /* было .07 */
  --band-top: .88; /* было .80 */
}

/* MINT: доверие */
.restoration-landing.landing-band--mint{
  --band-bg: var(--tint-mint);
  --band-spot1: 170,233,205;
  --band-spot2: 214,248,234;

  /* тише */
  --band-a: .08; /* было .10 */
  --band-b: .04; /* было .06 */
  --band-top: .90;
}

/* SAND: сроки/условия */
.restoration-landing.landing-band--sand{
  --band-bg: var(--tint-sand);
  --band-spot1: 255,228,190;
  --band-spot2: 255,244,224;

  /* тише */
  --band-a: .08; /* было .10 */
  --band-b: .04; /* было .06 */
  --band-top: .90;
}


/* =========================================================
   3.1) Универсальный details/summary (без треугольников)
   ========================================================= */

/* ✅ убираем маркеры summary во всём лендинге */
.restoration-landing summary::-webkit-details-marker { display: none; }
.restoration-landing summary::marker { content: ""; }

/* если summary используется как лейбл/пилюля */
.restoration-landing summary.landing-restoration__label {
    list-style: none;
    display: inline-flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
}
.restoration-landing details[open] > summary.landing-restoration__label { opacity: 0.92; }

/* =========================================================
   4.3) OFFCANVAS “Услуги” — компактный список (БЕЗ карточек/цен)
   CTA НЕ липкий, пункты ниже ~в 2 раза, БЕЗ разделителей-линий
   ========================================================= */

.restoration-landing.landing-header #landing-linked-ads-menu { z-index: 2300; }

.restoration-landing.landing-header #landing-linked-ads-menu .uk-offcanvas-bar {
    background: rgba(255, 255, 255, 0.96);
    color: var(--text-main);
    width: min(92vw, 380px);

    border-left: 1px solid rgba(148, 163, 184, 0.20);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.28);

    padding: 14px 12px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;

    scrollbar-width: none;
    -ms-overflow-style: none;
}
.restoration-landing.landing-header #landing-linked-ads-menu .uk-offcanvas-bar::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.restoration-landing.landing-header #landing-linked-ads-menu h3 {
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: 0.01em;
    margin: 4px 0 10px;
}

.restoration-landing.landing-header #landing-linked-ads-menu .uk-offcanvas-close { color: var(--text-muted); }
.restoration-landing.landing-header #landing-linked-ads-menu .uk-offcanvas-close:hover { color: var(--text-main); }

/* список: без линий, вместо этого — минимальный gap */
.restoration-landing.landing-header #landing-linked-ads-menu .landing-offcanvas__list {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* li без разделителей */
.restoration-landing.landing-header #landing-linked-ads-menu .landing-offcanvas__li {
    margin: 0;
    border: 0 !important;
}

/* ✅ пункты ниже ~в 2 раза */
.restoration-landing.landing-header #landing-linked-ads-menu .landing-offcanvas__link,
.restoration-landing.landing-header #landing-linked-ads-menu .landing-offcanvas__static {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    padding: 7px 6px 7px 12px;
    min-height: 28px;

    color: var(--text-main);
    text-decoration: none !important;
    border: 0 !important;

    border-radius: 10px;
    transition: 0.18s ease;
}

.restoration-landing.landing-header #landing-linked-ads-menu a.landing-offcanvas__link:hover {
    background: rgba(75, 181, 195, 0.06);
    text-decoration: none !important;
}

/* ✅ УБРАЛИ ПОЛОСКИ */
.restoration-landing.landing-header #landing-linked-ads-menu .landing-offcanvas__link::before,
.restoration-landing.landing-header #landing-linked-ads-menu .landing-offcanvas__static::before,
.restoration-landing.landing-header #landing-linked-ads-menu .landing-offcanvas__static--disabled::before {
    content: none !important;
}

.restoration-landing.landing-header #landing-linked-ads-menu .landing-offcanvas__li.uk-active > a.landing-offcanvas__link {
    background: rgba(75, 181, 195, 0.08);
}

.restoration-landing.landing-header #landing-linked-ads-menu a.landing-offcanvas__link:focus-visible {
    outline: 3px solid rgba(75, 181, 195, 0.25);
    outline-offset: 2px;
}

.restoration-landing.landing-header #landing-linked-ads-menu .landing-offcanvas__label {
    font-weight: 400;
    line-height: 1.15;
    font-size: 15px;
}

.restoration-landing.landing-header #landing-linked-ads-menu .landing-offcanvas__chev {
    font-size: 18px;
    line-height: 1;
    color: rgba(123, 135, 148, 0.90);
}
.restoration-landing.landing-header #landing-linked-ads-menu a.landing-offcanvas__link:hover .landing-offcanvas__chev {
    color: var(--brand-color-dark);
}

.restoration-landing.landing-header #landing-linked-ads-menu .landing-offcanvas__static--disabled { opacity: 0.55; }

.restoration-landing.landing-header #landing-linked-ads-menu .uk-text-meta { display: none !important; }

/* =========================================================
   4.4) OFFCANVAS CTA — без разделительной линии сверху
   ========================================================= */

.restoration-landing.landing-header #landing-linked-ads-menu .landing-offcanvas-cta {
    margin-top: 12px;
    padding-top: 12px;

    border-top: 0 !important;
    box-shadow: none !important;

    position: static;
    background: transparent;

    display: grid;
    gap: 10px;

    padding-bottom: calc(10px + env(safe-area-inset-bottom));
}

.restoration-landing.landing-header #landing-linked-ads-menu hr { display: none !important; }

.restoration-landing.landing-header #landing-linked-ads-menu .landing-offcanvas-cta .uk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 44px;
    padding: 10px 16px !important;
    line-height: 1.15;

    border-radius: 999px;
    box-sizing: border-box;
}

/* =========================================================
   5) Модалка обратного звонка
   ========================================================= */

.landing-callback-modal.uk-modal-dialog {
    background: linear-gradient(155deg, #ffffff 0%, #f7fbff 55%, var(--brand-color-soft) 100%);
    border: 1px solid rgba(75, 181, 195, 0.14);
    box-shadow: var(--shadow-soft);

    border-radius: 24px;
    width: 100% !important;
    max-width: 460px !important;
    margin: 40px auto;
    overflow: hidden;
    box-sizing: border-box;
}

.landing-callback-modal__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: rgba(75, 181, 195, 0.16);
    color: var(--brand-color-dark);
    font-weight: 500;
    margin-bottom: 6px;
}

.landing-callback-modal .uk-form-label {
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 4px;
}

.landing-callback-modal .uk-input,
.landing-callback-modal .uk-textarea {
    border-radius: 12px;
    border: 1px solid rgba(31, 41, 51, 0.12);
    background: #fff;
    transition: 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.landing-callback-modal .uk-input:focus,
.landing-callback-modal .uk-textarea:focus {
    border-color: rgba(75, 181, 195, 0.60);
    box-shadow: 0 0 0 3px rgba(75, 181, 195, 0.16);
}

/* ============================================================
HERO CARD SUBSTYLE: WHITE (палитра для белых карточек)
Используется в секциях ниже героя, геометрия = hero, меняем только цвет.
Добавить в deferred/non-critical CSS.
============================================================ */

.restoration-landing .landing-hero-8__type--white,
.restoration-landing .landing-hero-8__card--white{
  /* важно: background shorthand + !important перебивает uk-card-default hover */
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.98) 0%,
    rgba(255,255,255,1) 62%,
    rgba(242,250,251,.98) 100%
  ) !important;

  background-color: transparent !important; /* анти-серый hover от UIkit */
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .07);

  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease,
    background .18s ease;
}

/* интерактивность карточек (чтобы “курсором выделялось”, как ты просишь) */
.restoration-landing .landing-hero-8__type--white.uk-card-hover,
.restoration-landing .landing-hero-8__card--white.uk-card-hover{
  cursor: pointer;
}

.restoration-landing .landing-hero-8__type--white.uk-card-hover:hover,
.restoration-landing .landing-hero-8__card--white.uk-card-hover:hover{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,1) 58%,
    rgba(236,249,249,.98) 100%
  ) !important;

  background-color: transparent !important; /* гасим серый hover UIkit */
  border-color: rgba(15, 23, 42, .16);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
  transform: translateY(-2px);
}

/* мета внутри белых карточек */
.restoration-landing .landing-hero-8__type--white .uk-text-meta,
.restoration-landing .landing-hero-8__card--white .uk-text-meta{
  color: rgba(15, 23, 42, .62);
}

/* если вдруг где-то оставишь uk-card-default — принудительно не даём ему “серить” */
.restoration-landing .landing-hero-8__type--white.uk-card-default,
.restoration-landing .landing-hero-8__card--white.uk-card-default{
  background-color: transparent !important;
}
.restoration-landing .landing-hero-8__type--white.uk-card-default.uk-card-hover:hover,
.restoration-landing .landing-hero-8__card--white.uk-card-default.uk-card-hover:hover{
  background-color: transparent !important;
}

/* =========================================================
   8) Блок способов реставрации
   ========================================================= */

.restoration-landing .landing-restoration {
    position: relative;
    padding-top: 20px;
    padding-bottom: 10px;
}

.restoration-landing .landing-restoration::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(800px 520px at 85% 10%, rgba(75, 181, 195, 0.06) 0, rgba(75, 181, 195, 0) 62%),
        radial-gradient(800px 520px at 10% 90%, rgba(255, 173, 120, 0.05) 0, rgba(255, 173, 120, 0) 66%);
}

.restoration-landing .landing-restoration__title {
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
}

@media (min-width: 641px) {
    .restoration-landing .landing-restoration__title { font-size: 30px; line-height: 1.2; }
}

@media (max-width: 640px) {
    .restoration-landing .landing-restoration__title { font-size: 24px; line-height: 1.25; }
    .restoration-landing .landing-restoration { padding-top: 26px; }
}

/* Tabs */
.restoration-landing .landing-restoration__tabs { border: none; }
.restoration-landing .landing-restoration__tabs::before { display: none; }

.restoration-landing .landing-restoration__tabs > li > a {
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,0.30);
    background: #fff;

    padding: 12px 14px;
    margin-bottom: 10px;

    transition: 0.18s ease;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);

    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-weight: 400;
    color: var(--text-main);

    text-transform: none !important;
    letter-spacing: 0 !important;
}

.restoration-landing .landing-restoration__tabs > li > a span[uk-icon] { color: var(--brand-color-dark); }

.restoration-landing .landing-restoration__tabs > li.uk-active > a {
    border-color: rgba(75,181,195,0.85);
    background: var(--brand-color-soft);
    box-shadow: 0 6px 16px rgba(75,181,195,0.18);
    transform: translateX(2px);
}

.restoration-landing .landing-restoration__tabs > li > a:hover {
    border-color: rgba(75,181,195,0.70);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}

/* Desktop: ширина 100% + шрифт больше */
@media (min-width: 960px) {
    .restoration-landing .landing-restoration__tabs > li { width: 100%; }
    .restoration-landing .landing-restoration__tabs > li > a {
        width: 100%;
        font-size: 16px;
        padding: 14px 16px;
    }
}

/* Mobile: по центру, компактнее, без иконок */
@media (max-width: 640px) {
    .restoration-landing .landing-restoration__tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;

        gap: 6px !important;
        overflow-x: visible !important;
        padding-bottom: 0 !important;
        margin: 0 auto !important;
    }

    .restoration-landing .landing-restoration__tabs > li {
        padding: 0 !important;
        margin: 0 !important;
    }

    .restoration-landing .landing-restoration__tabs > li > a {
        margin: 0 !important;
        padding: 4px 10px !important;
        min-height: 20px !important;

        border-radius: 999px;
        white-space: nowrap;

        font-size: 13px !important;
        line-height: 1.05 !important;

        gap: 0 !important;
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    }

    .restoration-landing .landing-restoration__tabs > li > a span[uk-icon] { display: none !important; }
    .restoration-landing .landing-restoration__tabs > li.uk-active > a { transform: none !important; }
}

/* Карточки контента */
.restoration-landing .landing-restoration__card {
    border-radius: var(--radius-card);
    border: 1px solid rgba(148,163,184,0.18);
    background: #fff;
    transition: 0.18s ease;
}

/* брендовый цвет иконок */
.brand-icon svg{
    color: var(--brand-color, #4BB5C3);
}

.restoration-landing .landing-restoration__card:hover {
    box-shadow: 0 12px 24px rgba(75,181,195,0.12);
    transform: translateY(-1px);
}

.restoration-landing .landing-restoration__card--recommended {
    border: 2px solid rgba(75,181,195,0.85);
    box-shadow: 0 12px 26px rgba(75,181,195,0.18);
}

/* Labels */
.restoration-landing .landing-restoration__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.restoration-landing .landing-restoration__label--minus {
    background: var(--accent-red);
    border: 1px solid var(--accent-red-border);
    color: #9F1F32;
}

.restoration-landing .landing-restoration__label--plus {
    background: var(--accent-green);
    border: 1px solid var(--accent-green-border);
    color: #1D6B34;
}

/* ✅ НОВОЕ: универсальный “info” (синий) */
.restoration-landing .landing-restoration__label--info {
    background: var(--accent-blue);
    border: 1px solid var(--accent-blue-border);
    color: #1F4E8A;
}

.restoration-landing .landing-restoration__label--step{
  min-width: 38px;
  justify-content: center;
}

.restoration-landing .landing-restoration__pros-cons-group + .landing-restoration__pros-cons-group { margin-top: 12px; }

/* =========================================================
   8.1) ✅ Универсальные списки с CSS-маркерами (без иконок в HTML)
   Используй на любом UL/OL:
   .landing-restoration__list landing-restoration__list--checks / --dots / --pluses / --minuses / --steps
   ========================================================= */

.restoration-landing .landing-restoration__list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;

    /* дефолт: “точка” в бренд-стиле */
    --ll-marker: "•";
    --ll-bg: rgba(75, 181, 195, 0.10);
    --ll-border: rgba(75, 181, 195, 0.30);
    --ll-color: var(--brand-color-dark);
}

.restoration-landing .landing-restoration__list li {
    position: relative;
    padding: 6px 0 6px 28px;
    font-size: 14px;
    border-bottom: none !important;
}

.restoration-landing .landing-restoration__list li:last-child { border-bottom: none; }

.restoration-landing .landing-restoration__list li::before {
    content: var(--ll-marker);
    position: absolute;
    left: 0;
    top: 8px;

    width: 18px;
    height: 18px;
    border-radius: var(--radius-pill);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    background: var(--ll-bg);
    border: 1px solid var(--ll-border);
    color: var(--ll-color);
}

/* варианты маркеров */
.restoration-landing .landing-restoration__list--dots {
    --ll-marker: "•";
    --ll-bg: rgba(75, 181, 195, 0.10);
    --ll-border: rgba(75, 181, 195, 0.30);
    --ll-color: var(--brand-color-dark);
}

.restoration-landing .landing-restoration__list--checks,
.restoration-landing .landing-restoration__list--pros {
    --ll-marker: "✓";
    --ll-bg: var(--accent-green);
    --ll-border: var(--accent-green-border);
    --ll-color: #1D6B34;
}

.restoration-landing .landing-restoration__list--pluses {
    --ll-marker: "+";
    --ll-bg: var(--accent-blue);
    --ll-border: var(--accent-blue-border);
    --ll-color: #1F4E8A;
}

.restoration-landing .landing-restoration__list--minuses,
.restoration-landing .landing-restoration__list--cons {
    --ll-marker: "×";
    --ll-bg: var(--accent-red);
    --ll-border: var(--accent-red-border);
    --ll-color: #9F1F32;
}

/* ✅ шаги (нумерация) */
.restoration-landing .landing-restoration__list--steps {
    counter-reset: ll-step;
    --ll-bg: var(--accent-blue);
    --ll-border: var(--accent-blue-border);
    --ll-color: #1F4E8A;
}

.restoration-landing .landing-restoration__list--steps li::before {
    counter-increment: ll-step;
    content: counter(ll-step);
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 700;
    top: 7px; /* чуть ровнее для цифры */
}

/* опционально: если где-то всё же нужен старый режим “с иконками в разметке” */
.restoration-landing .landing-restoration__list--icon li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-left: 0;
}
.restoration-landing .landing-restoration__list--icon li::before { content: none; display: none; }

.restoration-landing .landing-restoration__list-icon {
    margin-top: 2px;
    min-width: 16px;
}

.restoration-landing .landing-restoration__card h4 {
    font-weight: 500;
    margin-bottom: 8px;
}

/* =========================================================
   8.2) TRUST / Почему нам доверяют — чтобы “цепляло”
   ========================================================= */

.restoration-landing#trust{
    position: relative;
    overflow: hidden;
}

.restoration-landing#trust::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(900px 520px at 18% 18%, rgba(75, 181, 195, 0.10) 0, rgba(75, 181, 195, 0) 62%),
        radial-gradient(900px 520px at 88% 78%, rgba(255, 173, 120, 0.08) 0, rgba(255, 173, 120, 0) 66%);
}

.restoration-landing#trust .trust__head{
    gap: 14px;
}

.restoration-landing#trust .trust__head h2{
    position: relative;
    display: inline-block;
}

.restoration-landing#trust .trust__head h2::after{
    content: "";
    display: block;
    width: 84px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(75, 181, 195, 0) 0%,
        rgba(75, 181, 195, 0.95) 50%,
        rgba(75, 181, 195, 0) 100%
    );
    opacity: 0.95;
}

/* Карточки доверия */
.restoration-landing#trust .trust-card{
    position: relative;
    overflow: hidden;
}

/* акцентная “полоска” сверху */
.restoration-landing#trust .trust-card::before{
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    top: 10px;
    height: 3px;
    border-radius: 999px;
    background: rgba(75, 181, 195, 0.55);
}

.restoration-landing#trust .trust-card__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.restoration-landing#trust .trust-card__icon{
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;

    background: rgba(75, 181, 195, 0.10);
    border: 1px solid rgba(75, 181, 195, 0.28);
    color: var(--brand-color-dark);
}

.restoration-landing#trust .trust-card__icon [uk-icon] svg{
    width: 20px;
    height: 20px;
}

/* варианты по цвету */
.restoration-landing#trust .trust-card--blue::before{ background: rgba(31, 78, 138, 0.45); }
.restoration-landing#trust .trust-card--blue .trust-card__icon{
    background: var(--accent-blue);
    border-color: var(--accent-blue-border);
    color: #1F4E8A;
}

.restoration-landing#trust .trust-card--green::before{ background: rgba(29, 107, 52, 0.45); }
.restoration-landing#trust .trust-card--green .trust-card__icon{
    background: var(--accent-green);
    border-color: var(--accent-green-border);
    color: #1D6B34;
}

.restoration-landing#trust .trust-card--yellow::before{ background: rgba(140, 94, 17, 0.45); }
.restoration-landing#trust .trust-card--yellow .trust-card__icon{
    background: var(--accent-yellow);
    border-color: var(--accent-yellow-border);
    color: #8C5E11;
}

/* Галерея “до/после” */
.restoration-landing#trust .trust-gallery__link{
    text-decoration: none !important;
    display: block;
}

.restoration-landing#trust .trust-gallery__card{
    padding: 0;
    overflow: hidden;
}

.restoration-landing#trust .trust-gallery__thumb{
    height: 170px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
    background: linear-gradient(145deg, #ffffff 0%, rgba(242, 250, 251, 0.95) 100%);
}

/* лёгкий “зум” на ховер */
.restoration-landing#trust .trust-gallery__thumb img{
    transform: scale(1);
    transition: 0.25s ease;
}

.restoration-landing#trust .trust-gallery__link:hover .trust-gallery__thumb img{
    transform: scale(1.04);
}

.restoration-landing#trust .trust-gallery__overlay{
    position: absolute;
    inset: 0;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(15, 35, 52, 0.00) 35%, rgba(15, 35, 52, 0.42) 100%);
}

.restoration-landing#trust .trust-gallery__caption{
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.restoration-landing#trust .trust__note{
    box-shadow: 0 10px 22px rgba(15, 35, 52, 0.06);
}

@media (max-width: 640px){
    .restoration-landing#trust .trust-gallery__thumb{ height: 150px; }
}

/* Заглушка вместо фото (иконка UIkit) */
.restoration-landing#trust .trust-gallery__thumb--placeholder{
    background:
        radial-gradient(520px 260px at 25% 8%, rgba(255,255,255,0.75) 0, rgba(255,255,255,0) 60%),
        linear-gradient(180deg, rgba(75,181,195,0.10) 0%, rgba(255,255,255,0) 42%),
        linear-gradient(180deg, #f7fbff 0%, #e9f3f6 58%, #d9e7ea 100%);
}

.restoration-landing#trust .trust-gallery__placeholder{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 0;
}

.restoration-landing#trust .trust-gallery__placeholder{
    color: rgba(58,155,169,0.85); /* brand-color-dark */
}

.restoration-landing#trust .trust-gallery__placeholder svg{
    width: 46px;
    height: 46px;
}

.restoration-landing#trust .trust-gallery__placeholder-text{
    font-size: 12px;
    color: rgba(31,41,51,0.65);
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(148,163,184,0.22);
    border-radius: var(--radius-pill);
    padding: 4px 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* чтобы overlay (лейбл/подпись) всегда был сверху */
.restoration-landing#trust .trust-gallery__overlay{ z-index: 1; }

/* =========================================================
   8.3) FAQ / Частые вопросы — визуально “живее”
   (UIkit animation, без кастомной анимации)
   ========================================================= */

.restoration-landing#faq{
    position: relative;
    overflow: hidden;
}

.restoration-landing#faq::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(900px 520px at 10% 10%, rgba(75, 181, 195, 0.10) 0, rgba(75, 181, 195, 0) 62%),
        radial-gradient(900px 520px at 90% 80%, rgba(255, 173, 120, 0.08) 0, rgba(255, 173, 120, 0) 66%);
}

.restoration-landing#faq .faq__head{ gap: 14px; }

.restoration-landing#faq .faq__head h2{
    position: relative;
    display: inline-block;
}

.restoration-landing#faq .faq__head h2::after{
    content: "";
    display: block;
    width: 84px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(75, 181, 195, 0) 0%,
        rgba(75, 181, 195, 0.95) 50%,
        rgba(75, 181, 195, 0) 100%
    );
    opacity: 0.95;
}

/* Левая карточка */
.restoration-landing#faq .faq__side{
    background: linear-gradient(155deg, #ffffff 0%, #f7fbff 55%, rgba(242, 250, 251, 0.95) 100%);
    border: 1px solid rgba(148,163,184,0.18);
    box-shadow: 0 12px 26px rgba(15, 35, 52, 0.06);
}

.restoration-landing#faq .faq__side-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.restoration-landing#faq .faq__side-icon{
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;

    background: var(--accent-blue);
    border: 1px solid var(--accent-blue-border);
    color: #1F4E8A;
}

.restoration-landing#faq .faq__side-icon [uk-icon] svg{
    width: 20px;
    height: 20px;
}

/* Аккордеон как “карточки” */
.restoration-landing#faq .faq__accordion > li{
    background: #fff;
    border: 1px solid rgba(148,163,184,0.18);
    border-radius: var(--radius-card);
    box-shadow: 0 10px 22px rgba(15, 35, 52, 0.04);
    overflow: hidden;
    margin-top: 12px;
}
.restoration-landing#faq .faq__accordion > li:first-child{ margin-top: 0; }

/* убираем стандартную стрелку UIkit */
.restoration-landing#faq .uk-accordion-title::before{
    display: none !important;
}

/* заголовок вопроса (не жирный) */
.restoration-landing#faq .uk-accordion-title{
    position: relative;
    display: block;
    padding: 16px 52px 16px 16px;

    font-weight: 500;
    color: var(--text-main);
    line-height: 1.25;

    text-decoration: none !important;
}

.restoration-landing#faq .uk-accordion-title:hover{
    background: rgba(75, 181, 195, 0.04);
}

/* круглый плюс/минус справа */
.restoration-landing#faq .uk-accordion-title::after{
    content: "+";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);

    width: 30px;
    height: 30px;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 700;
    line-height: 1;

    background: var(--accent-blue);
    border: 1px solid var(--accent-blue-border);
    color: #1F4E8A;
}

/* открыто — “минус” */
.restoration-landing#faq li.uk-open > .uk-accordion-title{
    background: rgba(233, 246, 236, 0.40);
}
.restoration-landing#faq li.uk-open > .uk-accordion-title::after{
    content: "–";
    background: var(--accent-green);
    border-color: var(--accent-green-border);
    color: #1D6B34;
}

/* контент */
.restoration-landing#faq .uk-accordion-content{
    padding: 0 16px 16px;
    margin-top: 0;
    color: rgba(31, 41, 51, 0.85);
}

/* === chips === */
.restoration-landing#faq .faq-chips{ margin-bottom: 12px; }
.restoration-landing#faq .faq-chips__label{ margin-bottom: 8px; }
.restoration-landing#faq .faq-chips__row{ gap: 8px; }

.restoration-landing#faq .faq-chip{
    display: inline-flex;
    align-items: center;

    padding: 8px 12px;
    border-radius: 999px;

    background: rgba(75, 181, 195, 0.08);
    border: 1px solid rgba(75, 181, 195, 0.24);

    color: #1F4E8A;
    text-decoration: none !important;

    font-size: 13px;
    line-height: 1.1;
    font-weight: 500;

    transition: 0.18s ease;
}

.restoration-landing#faq .faq-chip:hover{
    background: rgba(75, 181, 195, 0.14);
    border-color: rgba(75, 181, 195, 0.40);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 35, 52, 0.06);
}

.restoration-landing#faq .faq-chip.is-active{
    background: var(--accent-blue);
    border-color: var(--accent-blue-border);
    box-shadow: 0 10px 22px rgba(15, 35, 52, 0.06);
}

.restoration-landing#faq .faq-chip:focus-visible{
    outline: 3px solid rgba(75, 181, 195, 0.25);
    outline-offset: 2px;
}

@media (max-width: 640px){
    .restoration-landing#faq .faq-chip{
        padding: 8px 10px;
        font-size: 12.5px;
    }
}

/* === ответ как card + тонкий верхний акцент === */

.restoration-landing#faq .faq__accordion .uk-accordion-content{
    margin-top: 10px;
}

.restoration-landing#faq .faq__accordion .uk-accordion-content p{
    margin: 0;
    position: relative;

    padding: 12px 14px;
    border-radius: 14px;

    background: linear-gradient(145deg, #ffffff 0%, rgba(242, 250, 251, 0.92) 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 10px 22px rgba(15, 35, 52, 0.06);

    font-size: 14px;
    line-height: 1.6;
}

.restoration-landing#faq .faq__accordion .uk-accordion-content p::before{
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    top: 10px;

    height: 2px;
    border-radius: 999px;

    background: linear-gradient(
        90deg,
        rgba(75, 181, 195, 0) 0%,
        rgba(75, 181, 195, 0.75) 50%,
        rgba(75, 181, 195, 0) 100%
    );
    opacity: 0.7;
}

@media (max-width: 640px){
    .restoration-landing#faq .faq__accordion .uk-accordion-content p{
        padding: 11px 12px;
        border-radius: 12px;
        font-size: 13.5px;
    }
    .restoration-landing#faq .faq__accordion .uk-accordion-content p::before{
        left: 12px;
        right: 12px;
        top: 9px;
    }
}

/* =========================================================
   9) Футер
   ========================================================= */

.landing-footer--restoration {
    background: linear-gradient(180deg, #f7fbfc 0%, #eff6f8 100%);
    border-top: 1px solid rgba(75, 181, 195, 0.12);
}

.landing-footer--restoration .landing-footer__panel {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 18px 0 14px;
}

@media (min-width: 960px) {
    .landing-footer--restoration .landing-footer__panel { padding: 22px 4px 18px; }
}

.landing-footer--restoration .landing-footer__legal {
    margin-top: 10px;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 640px;
}

.landing-footer--restoration .landing-footer__geo { color: var(--text-muted); }

.landing-footer--restoration a {
    color: var(--brand-color-dark);
    font-weight: 500;
    text-decoration: none;
}

.landing-footer--restoration a:hover { color: var(--brand-color); }
