:root{
  --bg-main:#0C1A16;
  --bg-card:rgba(18,38,32,0.62);
  --bg-alt:#0F221C;
  --accent:#34D399;
  --accent-2:#E4B85C;
  --text-main:#EAF4EE;
  --text-muted:#8FB0A2;
  --border:rgba(52,211,153,0.22);
  --gold-line:rgba(228,184,92,0.55);
  --ink-on-accent:#062018;

  --font-head:'Sora',system-ui,sans-serif;
  --font-body:'Instrument Sans',system-ui,sans-serif;

  --wrap:1160px;
  --gutter:1.5rem;
  --rail-w:250px;
  --measure:72ch;

  --radius:16px;
  --radius-sm:10px;
  --radius-btn:14px;

  --blur:14px;
  --shadow:0 18px 44px -22px rgba(0,0,0,0.7);
  --shadow-soft:0 8px 26px -18px rgba(0,0,0,0.6);
  --pad-sec:clamp(3rem,6vw,5rem);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  overflow-x:hidden;
  font-family:var(--font-body);
  color:var(--text-main);
  line-height:1.65;
  background:
    radial-gradient(1100px 700px at 12% -8%,rgba(52,211,153,0.12),transparent 60%),
    radial-gradient(900px 620px at 108% 8%,rgba(228,184,92,0.08),transparent 55%),
    var(--bg-main);
  padding-inline-start:var(--rail-w);
}
@media (prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;transition:none!important;animation:none!important}}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--font-head);line-height:1.15;font-weight:700;margin:0 0 .6em;letter-spacing:-.01em}
h3,h4{font-weight:600}
p{margin:0 0 1rem}
:where(section,main) :focus-visible,a:focus-visible,button:focus-visible,summary:focus-visible{
  outline:2px solid var(--accent);outline-offset:3px;border-radius:4px}

/* ============ SKIP LINK ============ */
.dcde-skip{position:absolute;inset-inline-start:-9999px;top:0;z-index:1000;
  padding:.7rem 1.1rem;border-radius:0 0 var(--radius-sm) 0;
  font-family:var(--font-head);font-weight:600;font-size:.92rem;
  background:var(--accent);color:var(--ink-on-accent)}
.dcde-skip:focus{inset-inline-start:0}

/* ============ CONTAINER / SECTION ============ */
.dcde-container{width:100%;max-width:var(--wrap);margin-inline:auto;padding-inline:var(--gutter)}
.dcde-section{padding-block:var(--pad-sec);position:relative}
.dcde-section--alt{background:linear-gradient(180deg,rgba(15,34,28,0.7),rgba(15,34,28,0.35))}
.dcde-section>.dcde-container>*:last-child{margin-bottom:0}
/* соседние секции одного фона читаются как один блок — не удваиваем вертикальный отступ */
.dcde-section:not(.dcde-section--alt):not(.dcde-cta)+.dcde-section:not(.dcde-section--alt):not(.dcde-cta){padding-block-start:0}
.dcde-eyebrow{
  font-family:var(--font-head);font-size:.72rem;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;color:var(--accent);margin:0 0 .8rem;display:inline-flex;align-items:center;gap:.55rem}
.dcde-eyebrow::before{content:"";width:22px;height:1px;background:currentColor;opacity:.6}
.dcde-h2{font-size:clamp(1.55rem,2.8vw,2.1rem)}
.dcde-lead{color:var(--text-muted);font-size:1.08rem}
/* длина строки: без ограничения текст растягивался на ~130 знаков */
.dcde-section p,.dcde-legal li{max-width:var(--measure)}
.dcde-panel p,.dcde-card p,.dcde-tile p{max-width:none}

/* ============ BUTTONS ============ */
.dcde-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--font-head);font-weight:600;font-size:.98rem;min-height:48px;
  padding:.82rem 1.5rem;border-radius:var(--radius-btn);border:1px solid transparent;
  cursor:pointer;transition:transform .18s ease,box-shadow .2s ease,background .2s ease;
  background:linear-gradient(135deg,var(--accent),#2bb587);color:var(--ink-on-accent);
  box-shadow:0 12px 30px -14px rgba(52,211,153,0.7)}
.dcde-btn:hover{transform:translateY(-2px);box-shadow:0 18px 38px -14px rgba(52,211,153,0.8)}
.dcde-btn--gold{background:linear-gradient(135deg,var(--accent-2),#c99a3f);color:#241905;
  box-shadow:0 12px 30px -14px rgba(228,184,92,0.7)}
.dcde-btn--gold:hover{box-shadow:0 18px 38px -14px rgba(228,184,92,0.85)}
.dcde-btn--ghost{background:transparent;border-color:var(--border);color:var(--text-main);box-shadow:none}
.dcde-btn--ghost:hover{background:rgba(52,211,153,0.08);box-shadow:none}

/* ============ ICONS ============ */
.dcde-icon{width:1.5em;height:1.5em;display:inline-block;vertical-align:middle;flex-shrink:0;stroke:currentColor}
.dcde-icon--lg{width:1.9em;height:1.9em}

/* ============ HEADER — NAV RAIL ============ */
.dcde-header{
  position:fixed;inset-block:0;inset-inline-start:0;width:var(--rail-w);z-index:900;
  background:linear-gradient(180deg,rgba(11,26,22,0.94),rgba(9,21,17,0.97));
  backdrop-filter:blur(var(--blur));-webkit-backdrop-filter:blur(var(--blur));
  border-inline-end:1px solid var(--border)}
.dcde-header__inner{display:flex;flex-direction:column;height:100%;padding:1.5rem 1.15rem;gap:1.4rem}
.dcde-logo{display:inline-flex;align-items:center;gap:.65rem;flex-shrink:0;min-width:0}
.dcde-logo__badge{width:40px;height:40px;flex-shrink:0;display:block;border-radius:12px;
  box-shadow:var(--shadow-soft);transition:transform .2s ease}
.dcde-logo:hover .dcde-logo__badge{transform:translateY(-1px) rotate(-3deg)}
.dcde-logo__word{font-family:var(--font-head);font-weight:700;font-size:1.1rem;letter-spacing:-.02em;
  line-height:1.05;color:var(--text-main);white-space:nowrap}
.dcde-logo__word em{font-style:normal;color:var(--accent-2)}
.dcde-logo__img{height:40px;width:auto;object-fit:contain}

.dcde-burger{display:none;flex-shrink:0;width:44px;height:44px;border:1px solid var(--border);
  border-radius:12px;background:rgba(52,211,153,0.06);cursor:pointer;padding:0;
  flex-direction:column;align-items:center;justify-content:center;gap:5px}
.dcde-burger span{display:block;width:22px;height:2px;border-radius:2px;background:var(--text-main);transition:transform .22s,opacity .22s}
.dcde-header.is-open .dcde-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.dcde-header.is-open .dcde-burger span:nth-child(2){opacity:0}
.dcde-header.is-open .dcde-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.dcde-nav{flex:1;min-height:0;overflow-y:auto}
.dcde-nav__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.2rem}
.dcde-nav__list a{
  display:block;padding:.62rem .8rem;border-radius:var(--radius-sm);
  font-family:var(--font-head);font-weight:500;font-size:.96rem;color:var(--text-muted);
  transition:background .18s,color .18s;position:relative}
.dcde-nav__list a:hover,.dcde-nav__list a[aria-current="page"]{color:var(--text-main);background:rgba(52,211,153,0.1)}
.dcde-nav__list a[aria-current="page"]::before{content:"";position:absolute;inset-inline-start:0;top:20%;bottom:20%;width:3px;border-radius:3px;background:var(--accent)}
.dcde-header__cta{margin-top:auto;flex-shrink:0}

@media (max-width:959px){
  body{padding-inline-start:0}
  .dcde-header{position:sticky;inset:auto;top:0;width:auto;border-inline-end:none;border-block-end:1px solid var(--border)}
  /* flex-wrap обязателен: .dcde-nav имеет width:100% и order:4 — без переноса
     открытое меню сжималось в колонку рядом с лого вместо строки под шапкой */
  .dcde-header__inner{flex-direction:row;flex-wrap:wrap;align-items:center;height:auto;
    padding:.7rem var(--gutter);gap:.6rem}
  .dcde-logo{flex-shrink:1}
  .dcde-logo__badge{width:36px;height:36px;border-radius:11px}
  .dcde-logo__word{font-size:1rem;min-width:0}
  .dcde-logo__img{max-width:min(45vw,180px);height:auto;max-height:36px}
  .dcde-burger{display:flex;order:3}
  .dcde-header__cta{margin-top:0;margin-inline-start:auto;order:2;padding:.6rem 1.05rem;font-size:.9rem;min-height:44px}
  .dcde-nav{flex:none;order:4;width:100%;display:none;overflow:visible}
  .dcde-header.is-open .dcde-nav{display:block;padding-top:.5rem;border-top:1px solid var(--border);margin-top:.25rem}
  .dcde-nav__list{gap:.15rem}
  .dcde-nav__list a{padding:.75rem .7rem}
}
/* 320px: лого + CTA + бургер не влезали в строку и бургер переносился вниз —
   даём слову лого переноситься на две строки вместо того, чтобы прятать его целиком */
@media (max-width:420px){
  .dcde-header__inner{gap:.45rem;padding-inline:1rem}
  .dcde-logo__badge{width:34px;height:34px;border-radius:10px}
  .dcde-logo__word{font-size:.86rem;white-space:normal;line-height:1.1;overflow-wrap:anywhere}
  .dcde-header__cta{padding:.6rem .75rem;font-size:.84rem}
}

/* ============ HERO ============ */
.dcde-hero{position:relative;overflow:hidden}
.dcde-hero__img{display:block;width:100%;height:auto;max-height:70vh;aspect-ratio:3/2;object-fit:cover;border-radius:var(--radius)}
/* внутри рамки картинка заполняет её целиком, а не вылезает вниз под overflow:hidden */
.dcde-hero__visual .dcde-hero__img{height:100%;max-height:none;aspect-ratio:auto;border-radius:0}
.dcde-hero__inner h1{text-wrap:balance}

/* HOME — stacked pattern */
.dcde-hero--home{padding-block:clamp(3.4rem,7vw,6rem)}
.dcde-hero--home .dcde-hero__inner{display:flex;flex-direction:column;gap:clamp(1.8rem,4vw,2.8rem)}
.dcde-hero--home .dcde-hero__copy{max-width:none}
.dcde-hero--home h1{font-size:clamp(2.3rem,5.6vw,4rem);font-weight:800}
.dcde-hero--home .dcde-hero__sub{font-size:1.15rem;color:var(--text-muted);margin:0 0 1.6rem;max-width:62ch}
.dcde-hero__actions{display:flex;flex-wrap:wrap;gap:.85rem}
.dcde-hero__visual{
  position:relative;width:100%;aspect-ratio:3/1.35;border-radius:var(--radius);overflow:hidden;
  border:1px solid var(--border);box-shadow:var(--shadow)}
@media (max-width:640px){.dcde-hero__visual{aspect-ratio:16/10}}

/* INNER — compact page header */
.dcde-hero--inner{position:relative;min-height:190px;display:flex;align-items:center;
  padding-block:clamp(1.6rem,3.5vw,2.4rem);
  padding-inline:max(var(--gutter),calc((100% - var(--wrap))/2 + var(--gutter)));
  background:linear-gradient(120deg,rgba(15,34,28,0.9),rgba(12,26,22,0.7)),var(--bg-alt);
  border-block-end:1px solid var(--border);border-radius:0}
.dcde-hero--inner .dcde-hero__inner{width:100%;max-width:var(--wrap);margin-inline:auto}
.dcde-hero--inner h1{font-size:clamp(1.7rem,4vw,2.6rem);margin:.3rem 0 0}
.dcde-hero--inner .dcde-hero__sub{color:var(--text-muted);margin:.7rem 0 0;max-width:60ch}
.dcde-hero--inner .dcde-hero__img{position:absolute;inset:0;width:100%;height:100%;max-height:none;aspect-ratio:auto;object-fit:cover;border-radius:0;z-index:0}
.dcde-hero--inner .dcde-hero__inner::after{content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(90deg,rgba(9,20,16,0.9),rgba(9,20,16,0.66))}
:where(.dcde-hero--inner .dcde-hero__inner>:not(.dcde-hero__img)){position:relative;z-index:2}

/* ============ BREADCRUMB ============ */
.dcde-breadcrumb{font-size:.82rem;color:var(--text-muted)}
.dcde-breadcrumb ol{list-style:none;display:flex;flex-wrap:wrap;gap:.4rem;margin:0;padding:0}
.dcde-breadcrumb li+li::before{content:"/";margin-inline-end:.4rem;color:var(--border)}
.dcde-breadcrumb a:hover{color:var(--accent)}

/* ============ PAGE HEADER (base, legal) ============ */
.dcde-page-header{position:relative;padding-block:clamp(2rem,4vw,3rem);
  padding-inline:max(var(--gutter),calc((100% - var(--wrap))/2 + var(--gutter)));
  background:var(--bg-alt);border-block-end:1px solid var(--border)}
.dcde-page-header__inner{width:100%;max-width:var(--wrap);margin-inline:auto}
.dcde-page-header h1{font-size:clamp(1.8rem,4vw,2.6rem);margin:.4rem 0 0}
.dcde-page-header:has(.dcde-hero__img){min-height:240px;display:flex;align-items:flex-end}
.dcde-page-header:has(.dcde-hero__img) .dcde-hero__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.dcde-page-header:has(.dcde-hero__img) .dcde-page-header__inner{position:relative;z-index:2}
.dcde-page-header:has(.dcde-hero__img)::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(0deg,rgba(9,20,16,0.9),rgba(9,20,16,0.5))}

/* ============ OVERVIEW ============ */
.dcde-overview p{color:var(--text-muted)}
.dcde-overview p strong{color:var(--text-main)}

/* ============ FEATURE CARDS — icon-rows ============ */
.dcde-features{display:flex;flex-direction:column;gap:0}
.dcde-feature{display:flex;align-items:flex-start;gap:1.1rem;padding:1.4rem 0;border-block-end:1px solid var(--border)}
.dcde-feature:last-child{border-block-end:none}
.dcde-feature__chip{flex-shrink:0;width:54px;height:54px;display:grid;place-items:center;border-radius:14px;
  color:var(--accent);background:rgba(52,211,153,0.12);border:1px solid var(--border)}
.dcde-feature__chip .dcde-icon{width:1.7em;height:1.7em}
.dcde-feature__body{min-width:0}
.dcde-feature__body h3{font-size:1.2rem;margin:.15rem 0 .4rem}
.dcde-feature__body p{color:var(--text-muted);margin:0}

/* ============ CARDS GRID ============ */
.dcde-cards{display:grid;gap:1.1rem;grid-template-columns:repeat(auto-fit,minmax(min(220px,100%),1fr))}
.dcde-card{
  background:var(--bg-card);backdrop-filter:blur(var(--blur));-webkit-backdrop-filter:blur(var(--blur));
  border:1px solid var(--border);border-radius:var(--radius);padding:1.6rem;position:relative;overflow:hidden;
  box-shadow:var(--shadow-soft);transition:transform .2s,border-color .2s;display:flex;flex-direction:column}
.dcde-card::before{content:"";position:absolute;inset-inline:0;top:0;height:2px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));opacity:0;transition:opacity .2s}
.dcde-card:hover,.dcde-card:focus-within{transform:translateY(-3px);border-color:rgba(52,211,153,0.4)}
.dcde-card:hover::before,.dcde-card:focus-within::before{opacity:1}
.dcde-card h3{font-size:1.2rem;margin-bottom:.5rem}
.dcde-card p{color:var(--text-muted);margin:0}
.dcde-card__icon{color:var(--accent);margin-bottom:.9rem}
/* вся карточка кликабельна — на тач-устройствах hover-подсказки нет */
.dcde-card__more{margin-top:auto;padding-top:1rem}
.dcde-card__link{display:inline-flex;align-items:center;gap:.35rem;color:var(--accent);
  font-family:var(--font-head);font-weight:600;font-size:.95rem;text-decoration:none}
.dcde-card__link::after{content:"";position:absolute;inset:0;border-radius:inherit}
.dcde-card__link span{transition:transform .2s ease}
.dcde-card:hover .dcde-card__link span{transform:translateX(3px)}

/* ============ NUMBERED LIST ============ */
.dcde-steps{list-style:none;counter-reset:step;margin:0;padding:0;display:flex;flex-direction:column;gap:1.1rem}
.dcde-steps li{counter-increment:step;position:relative;padding:1.35rem 1.5rem 1.35rem 4.4rem;
  background:var(--bg-card);backdrop-filter:blur(var(--blur));-webkit-backdrop-filter:blur(var(--blur));
  border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-soft)}
.dcde-steps li::before{content:counter(step,decimal-leading-zero);position:absolute;inset-inline-start:1.3rem;top:1.2rem;
  font-family:var(--font-head);font-weight:800;font-size:1.15rem;color:var(--accent);letter-spacing:-.02em}
.dcde-steps li h3{font-size:1.2rem;margin:0 0 .35rem}
.dcde-steps li p{color:var(--text-muted);margin:0}

/* ============ TWO COLS + CONTENT PANEL ============ */
.dcde-twocols{display:grid;gap:clamp(1.5rem,3vw,2.6rem);grid-template-columns:1fr;align-items:start}
/* 1080, а не 820: на десктопе контент = вьюпорт − 250px рельса, иначе панель сжималась до ~256px */
@media (min-width:1080px){.dcde-twocols{grid-template-columns:1.15fr .85fr}}
@media (min-width:820px) and (max-width:959px){.dcde-twocols{grid-template-columns:1.15fr .85fr}}
.dcde-twocols>*{min-width:0}
.dcde-twocols__text p{color:var(--text-muted)}
.dcde-panel{background:var(--bg-card);backdrop-filter:blur(var(--blur));-webkit-backdrop-filter:blur(var(--blur));
  border:1px solid var(--border);border-radius:var(--radius);padding:1.6rem;box-shadow:var(--shadow-soft)}
.dcde-panel__title{font-size:1.05rem;margin:0 0 1rem;color:var(--text-main)}
.dcde-facts{margin:0}
.dcde-facts__row{display:flex;justify-content:space-between;gap:1rem;padding:.7rem 0;border-block-end:1px solid var(--border)}
.dcde-facts__row:last-child{border-block-end:none}
.dcde-facts__row dt{color:var(--text-muted);font-size:.92rem;margin:0}
.dcde-facts__row dd{margin:0;font-family:var(--font-head);font-weight:600;text-align:end}
.dcde-checklist{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.7rem}
.dcde-checklist li{display:flex;align-items:flex-start;gap:.65rem;color:var(--text-muted)}
.dcde-checklist .dcde-icon{color:var(--accent);margin-top:.15rem}
.dcde-tiles{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(200px,100%),1fr));gap:.7rem}
.dcde-tiles>*{min-width:0}
.dcde-tile{background:rgba(52,211,153,0.06);border:1px solid var(--border);border-radius:var(--radius-sm);padding:.9rem}
.dcde-tile__val{display:block;font-family:var(--font-head);font-weight:700;font-size:1.4rem;line-height:1.2;color:var(--accent)}
.dcde-tile__lbl{display:block;font-size:.78rem;line-height:1.4;color:var(--text-muted);margin-top:.25rem}
.dcde-score{display:flex;align-items:center;gap:.8rem}
.dcde-score__num{font-family:var(--font-head);font-weight:800;font-size:2.4rem;color:var(--accent-2);line-height:1}
.dcde-score__stars{display:flex;gap:.15rem;color:var(--accent-2)}
.dcde-score__lbl{font-size:.85rem;color:var(--text-muted)}

/* ============ DATA / PAYMENTS TABLE ============ */
.dcde-table-wrap{overflow-x:auto;max-width:100%;margin-block:1.5rem;position:relative;
  border:1px solid var(--border);border-radius:var(--radius);
  background:var(--bg-card);backdrop-filter:blur(var(--blur));-webkit-backdrop-filter:blur(var(--blur))}
/* подсказка «таблица прокручивается» — только там, где она реально не влезает */
@media (max-width:700px){
  .dcde-table-wrap{background-image:linear-gradient(to left,rgba(6,20,15,0.8),transparent 46px);
    background-repeat:no-repeat;background-position:right center;background-size:46px 100%}
}
.dcde-table{width:100%;border-collapse:collapse;min-width:520px}
.dcde-table th,.dcde-table td{padding:.9rem 1.1rem;text-align:start;border-block-end:1px solid var(--border)}
.dcde-table th{font-family:var(--font-head);font-size:.82rem;letter-spacing:.05em;text-transform:uppercase;
  color:var(--accent);white-space:nowrap;background:rgba(52,211,153,0.06)}
.dcde-table td{color:var(--text-muted)}
.dcde-table tr:last-child td{border-block-end:none}
.dcde-table tbody tr:hover td{background:rgba(52,211,153,0.05)}
.dcde-pay-method{display:flex;align-items:center;gap:.6rem;color:var(--text-main);font-weight:600;white-space:nowrap}
.dcde-pay-method .dcde-icon{color:var(--accent)}

/* ============ STATS BAR — strip ============ */
/* grid + gap-как-разделитель: у flex-wrap при переносе оставались висячие вертикальные линии */
.dcde-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(160px,100%),1fr));
  gap:1px;background:var(--border);
  border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.dcde-stats>*{min-width:0}
.dcde-stat{padding:1.3rem 1.4rem;background:rgba(16,34,28,0.94)}
/* val/lbl — <span>: без display:block они склеивались в одну строку */
.dcde-stat__val{display:block;font-family:var(--font-head);font-weight:800;font-size:clamp(1.5rem,3vw,2rem);color:var(--accent);line-height:1.1}
.dcde-stat__lbl{display:block;font-size:.8rem;line-height:1.4;letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);margin-top:.5rem}

/* ============ CATEGORIES BAR ============ */
.dcde-cats{display:flex;flex-wrap:wrap;gap:.6rem}
.dcde-cat{display:inline-flex;align-items:center;gap:.45rem;padding:.6rem 1.1rem;min-height:44px;border-radius:999px;
  border:1px solid var(--border);background:rgba(52,211,153,0.06);color:var(--text-muted);
  font-family:var(--font-head);font-size:.92rem;font-weight:500;transition:background .18s,color .18s,border-color .18s}
.dcde-cat:hover{background:rgba(52,211,153,0.14);color:var(--text-main);border-color:rgba(52,211,153,0.45)}
.dcde-cat .dcde-icon{color:var(--accent)}

/* ============ RTP GRID ============ */
.dcde-rtp{display:grid;gap:clamp(.6rem,1.5vw,1rem);grid-template-columns:repeat(2,minmax(0,1fr))}
@media (min-width:640px){.dcde-rtp{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (min-width:960px){.dcde-rtp{grid-template-columns:repeat(4,minmax(0,1fr))}}
.dcde-rtp-item{position:relative;overflow:hidden;min-width:0;border-radius:var(--radius);
  border:1px solid var(--border);background:var(--bg-card)}
.dcde-rtp-item__thumb{aspect-ratio:3/2;position:relative;
  background:linear-gradient(135deg,rgba(52,211,153,0.2),rgba(228,184,92,0.16))}
.dcde-rtp-item__thumb img{width:100%;height:100%;object-fit:cover;display:block}
.dcde-rtp-item__name{padding:.6rem .75rem;font-family:var(--font-head);font-weight:600;font-size:.9rem}
.dcde-rtp-tooltip{position:absolute;left:0;right:0;bottom:0;opacity:0;transition:opacity .2s;
  padding:.6rem .75rem;font-size:.82rem;color:var(--text-main);
  background:linear-gradient(0deg,rgba(6,20,15,0.94),rgba(6,20,15,0.2))}
.dcde-rtp-item:hover .dcde-rtp-tooltip,.dcde-rtp-item:focus-within .dcde-rtp-tooltip{opacity:1}

/* ============ FAQ — boxed ============ */
.dcde-faq{display:flex;flex-direction:column;gap:.85rem}
.dcde-faq details{background:var(--bg-card);backdrop-filter:blur(var(--blur));-webkit-backdrop-filter:blur(var(--blur));
  border:1px solid var(--border);border-radius:var(--radius);padding:0 1.3rem;box-shadow:var(--shadow-soft)}
.dcde-faq summary{cursor:pointer;padding:1rem 0;min-height:52px;font-weight:600;font-family:var(--font-head);
  list-style:none;display:flex;align-items:flex-start;gap:.6rem}
.dcde-faq summary:hover{color:var(--accent)}
.dcde-faq summary::-webkit-details-marker{display:none}
/* flex-start, а не baseline: на 320px вопрос занимает 2–3 строки и маркер уезжал от текста */
.dcde-faq summary::before{content:'+';flex-shrink:0;width:1.1em;color:var(--accent);font-weight:700;line-height:inherit}
.dcde-faq details[open] summary::before{content:'−'}
.dcde-faq details>:not(summary){padding:.25rem 0 1.1rem;color:var(--text-muted)}

/* ============ CTA BLOCK ============ */
.dcde-cta{position:relative;overflow:hidden}
.dcde-cta__inner{background:linear-gradient(135deg,rgba(52,211,153,0.14),rgba(228,184,92,0.1));
  border:1px solid var(--gold-line);border-radius:var(--radius);padding:clamp(2.2rem,5vw,3.4rem);
  display:flex;flex-direction:column;gap:1.1rem;text-align:center;align-items:center;box-shadow:var(--shadow)}
.dcde-cta__inner h2{font-size:clamp(1.6rem,3.4vw,2.3rem);margin:0}
.dcde-cta__inner p{color:var(--text-muted);margin:0;max-width:56ch}
.dcde-cta__actions{display:flex;flex-wrap:wrap;gap:.85rem;justify-content:center;margin-top:.3rem}
.dcde-cta__fine{font-size:.875rem;line-height:1.6;color:var(--text-muted);margin:0;max-width:62ch}
.dcde-cta__disclosure{font-size:.875rem;color:var(--text-muted);margin:0;max-width:62ch}

/* ============ WERBE-DISCLOSURE ============ */
.dcde-disclosure{display:flex;align-items:flex-start;gap:.7rem;margin:0;
  padding:.9rem 1.15rem;border-radius:var(--radius-sm);
  border:1px solid var(--border);border-inline-start:3px solid var(--accent-2);
  background:rgba(228,184,92,0.06);color:var(--text-muted);font-size:.875rem;line-height:1.6;
  max-width:var(--measure)}
.dcde-disclosure strong{color:var(--text-main)}
.dcde-disclosure .dcde-icon{color:var(--accent-2);flex-shrink:0;margin-top:.1rem}

/* ============ TOC ============ */
.dcde-toc{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.3rem 1.5rem}
.dcde-toc h2{font-size:1rem;font-family:var(--font-head);margin:0 0 .8rem;color:var(--accent)}
.dcde-toc ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.4rem}
.dcde-toc a{color:var(--text-muted);font-size:.94rem}
.dcde-toc a:hover{color:var(--accent)}

/* ============ LEGAL BODY ============ */
.dcde-legal{counter-reset:legalsec}
.dcde-legal h2{counter-increment:legalsec;font-size:1.3rem;margin:2.2rem 0 .7rem;padding-top:.4rem;max-width:var(--measure)}
.dcde-legal h2::before{content:counter(legalsec) ". ";color:var(--accent);font-family:var(--font-head)}
.dcde-legal h3{font-size:1.1rem;margin:1.4rem 0 .5rem}
.dcde-legal p,.dcde-legal li{color:var(--text-muted)}
.dcde-legal ul,.dcde-legal ol{padding-inline-start:1.3rem}
.dcde-legal a{color:var(--accent);text-decoration:underline}

/* ============ STICKY NAV (mobile) ============ */
.dcde-sticky-nav{display:none}
@media (max-width:767px){
  .dcde-sticky-nav{display:flex;position:fixed;inset-inline:0;bottom:0;z-index:850;
    justify-content:space-around;padding:.5rem;gap:.3rem;
    background:rgba(9,21,17,0.96);backdrop-filter:blur(var(--blur));border-block-start:1px solid var(--border)}
  .dcde-sticky-nav a{display:flex;flex-direction:column;align-items:center;gap:.15rem;
    font-size:.68rem;color:var(--text-muted)}
  .dcde-sticky-nav a .dcde-icon{color:var(--accent)}
}

/* ============ CHAT WIDGET ============ */
.dcde-chat-btn{position:fixed;bottom:1.3rem;inset-inline-end:1.3rem;z-index:860;
  width:54px;height:54px;border-radius:50%;border:1px solid var(--gold-line);cursor:pointer;
  display:grid;place-items:center;color:#062018;background:linear-gradient(135deg,var(--accent),var(--accent-2));box-shadow:var(--shadow)}
.dcde-chat-dialog{position:fixed;bottom:5.4rem;inset-inline-end:1.3rem;z-index:860;width:min(320px,90vw);
  background:var(--bg-card);backdrop-filter:blur(var(--blur));border:1px solid var(--border);
  border-radius:var(--radius);padding:1.2rem;box-shadow:var(--shadow);display:none}
.dcde-chat-dialog[open],.dcde-chat-dialog.is-open{display:block}

/* ============ FOOTER ============ */
.dcde-footer{background:linear-gradient(180deg,rgba(9,21,17,0.6),rgba(7,18,14,0.95));
  border-block-start:1px solid var(--border);margin-top:clamp(3rem,6vw,5rem);padding-top:var(--pad-sec)}
.dcde-footer__grid{display:grid;gap:2rem;grid-template-columns:1.4fr;padding-bottom:2.5rem}
@media (min-width:720px){.dcde-footer__grid{grid-template-columns:1.5fr 1fr 1fr}}
.dcde-footer__grid>*{min-width:0}
.dcde-footer__brand p{color:var(--text-muted);font-size:.92rem;margin-top:1rem;max-width:42ch}
.dcde-footer__col h3{font-family:var(--font-head);font-size:.82rem;letter-spacing:.14em;text-transform:uppercase;color:var(--accent);margin:0 0 .9rem}
.dcde-footer__col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.1rem}
/* зона тапа была ~25px при рекомендованных 44 — соседние пункты слипались */
.dcde-footer__col a{display:block;padding-block:.45rem;color:var(--text-muted);font-size:.94rem}
.dcde-footer__col a:hover{color:var(--text-main)}
.dcde-footer__note{border-block-start:1px solid var(--border);padding-block:1.4rem;margin:0;
  color:var(--text-muted);font-size:.82rem;display:flex;align-items:flex-start;gap:.7rem}
.dcde-footer__note strong{color:var(--text-main)}
.dcde-footer__note-badge{flex-shrink:0;width:34px;height:34px;border-radius:50%;
  display:grid;place-items:center;color:var(--accent);
  background:rgba(52,211,153,0.08);border:1.5px solid var(--border)}
.dcde-footer__note-badge .dcde-icon{width:1.15em;height:1.15em}
.dcde-footer__disclaimer{border-block-start:1px solid var(--border);padding-block:1.6rem;
  color:var(--text-muted);font-size:.82rem;display:flex;align-items:flex-start;gap:.7rem}
.dcde-footer__disclaimer .dcde-badge18{flex-shrink:0;width:34px;height:34px;border-radius:50%;
  display:grid;place-items:center;font-family:var(--font-head);font-weight:800;font-size:.8rem;
  color:var(--accent-2);border:1.5px solid var(--accent-2)}
.dcde-footer__bottom{border-block-start:1px solid var(--border);padding-block:1.3rem;
  display:flex;flex-wrap:wrap;gap:.8rem;justify-content:space-between;align-items:center;
  color:var(--text-muted);font-size:.82rem}
.dcde-footer__bottom a{color:var(--text-muted);display:inline-block;padding-block:.35rem}
.dcde-footer__bottom a:hover{color:var(--accent)}

/* utilities */
.dcde-mt0{margin-top:0}
p a{color:var(--accent);text-decoration:underline;text-underline-offset:2px}
/* sa-responsive-net */
table th{white-space:nowrap}
figure,blockquote,dl,dd,fieldset{margin:0}
/* sa-logo-chip */
.dcde-footer .dcde-logo__img{filter:none;background:transparent;padding:0}
.dcde-footer .dcde-footer__logo-chip{background:transparent;padding:0}
/* sa-logo-fit */
.dcde-logo__img{object-fit:contain}
/* sa-ph-media */
.dcde-page-header:has(.dcde-hero__img){position:relative;overflow:hidden;isolation:isolate;min-height:clamp(200px,30vh,300px);display:flex;flex-direction:column;justify-content:center}
.dcde-page-header:has(.dcde-hero__img) .dcde-hero__img{position:absolute;inset:0;width:100%;height:100%;max-height:none;aspect-ratio:auto;object-fit:cover;margin:0;z-index:0}
.dcde-page-header:has(.dcde-hero__img)::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(10,12,18,.72),rgba(10,12,18,.5))}
:where(.dcde-page-header:has(.dcde-hero__img)>:not(.dcde-hero__img)){position:relative}
.dcde-page-header:has(.dcde-hero__img)>:not(.dcde-hero__img){z-index:2}
.dcde-page-header:has(.dcde-hero__img),.dcde-page-header:has(.dcde-hero__img) h1,.dcde-page-header:has(.dcde-hero__img) a,.dcde-page-header:has(.dcde-hero__img) p,.dcde-page-header:has(.dcde-hero__img) li,.dcde-page-header:has(.dcde-hero__img) span{color:#fff}
/* sa-hero-media */
.dcde-hero:has(>.dcde-hero__img){position:relative;isolation:isolate}
.dcde-hero:has(>.dcde-hero__img)>.dcde-hero__img{z-index:0}
.dcde-hero:has(>.dcde-hero__img)::after{z-index:1}
:where(.dcde-hero:has(>.dcde-hero__img)>:not(.dcde-hero__img)){position:relative}
.dcde-hero:has(>.dcde-hero__img)>:not(.dcde-hero__img){z-index:2}
/* sa-rhythm */
:where(.dcde-table-wrap){margin-block:1.5rem}
:where(main) :where(ul,ol,table,.dcde-table-wrap)+p{margin-block-start:1rem}
/* sa-slot-link */
.dcde-rtp-item,.dcde-rtp-item:hover,.dcde-rtp-item:focus{color:inherit;text-decoration:none;cursor:pointer}

/* ============ ВЕРТИКАЛЬНЫЙ РИТМ ============
   единый воздух между заголовком/абзацем и блочным компонентом.
   В конце файла — иначе более поздние `margin:0` компонентов перебивают правило.
   Маргины соседей схлопываются, поэтому значение не суммируется с margin-bottom заголовка. */
.dcde-cards,.dcde-stats,.dcde-cats,.dcde-features,.dcde-faq,.dcde-steps,.dcde-twocols,
.dcde-checklist,.dcde-rtp,.dcde-tiles,.dcde-table-wrap{margin-block-start:1.6rem}
.dcde-table-wrap{margin-block-end:1.6rem}
/* внутри панелей/колонок отступ задаёт сам контейнер */
.dcde-panel>.dcde-checklist,.dcde-panel>.dcde-tiles,.dcde-panel>.dcde-facts,
.dcde-twocols>*>.dcde-checklist:first-child{margin-block-start:0}
.dcde-section>.dcde-container>*:first-child,
.dcde-legal>*:first-child{margin-block-start:0}
/* абзац после блочного компонента не должен прилипать к нему */
main :where(ul,ol,dl,table,.dcde-table-wrap,.dcde-cards,.dcde-stats,.dcde-features,.dcde-faq,.dcde-steps)+p{margin-block-start:1.2rem}
