:root {
  --c-primary: #2D5CB7;
  --c-secondary: #1B376E;
  --c-accent: #01AC35;
  --c-accent-2: #770BFB;
  --c-bg: #F4F5F8;
  --c-bg-alt: #E8EBF0;
  --c-text: #151B27;
  --c-text-muted: #57647E;
  --c-header-bg: #212226;
  --c-header-text: #FFFFFF;
  --c-header-text-muted: #A4ACC0;
  --c-footer-bg: #191A1D;
  --c-footer-text: #FFFFFF;
  --c-footer-text-muted: #A4ACC0;
  --c-accent-text: #FFFFFF;
  --c-accent-2-text: #FFFFFF;
  --c-border: rgba(0,0,0,.08);
  --c-border-chrome: rgba(255,255,255,.08);
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,.18);
  --container: 1200px;
  --gap: 24px;
}
body.site-hyfyw {
  margin:0;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif);
  font-size:16px; line-height:1.55; color:var(--c-text); background:var(--c-bg);
  -webkit-font-smoothing:antialiased;
}
body.site-hyfyw .main-hyfyw { max-width:var(--container); margin:0 auto; padding:32px 20px 64px; }
body.site-hyfyw .h1-hyfyw { font-size:clamp(28px,4vw,40px); line-height:1.15; margin:0 0 20px; }

/* Breadcrumb */
.breadcrumb { background:var(--c-bg-alt); border-bottom:1px solid var(--c-border); }
.breadcrumb__inner { max-width:var(--container); margin:0 auto; padding:10px 20px; }
.breadcrumb__list { list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:4px; align-items:center; font-size:13px; }
.breadcrumb__item { display:inline-flex; align-items:center; }
.breadcrumb__item:not(:last-child)::after { content:"›"; margin-left:6px; color:var(--c-text-muted); font-size:14px; }
.breadcrumb__item a { color:var(--c-text-muted); }
.breadcrumb__item a:hover { color:var(--c-accent); text-decoration:underline; }
.breadcrumb__current { color:var(--c-text); font-weight:500; }

/* Reset & body basics */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust:100%; }
img { max-width:100%; height:auto; display:block; }
a { color:var(--c-primary); text-decoration:none; }
a:hover { text-decoration:underline; }

.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 22px; border-radius:var(--radius); font-weight:600; font-size:15px;
  font-family:inherit; line-height:1; text-decoration:none; border:1px solid transparent;
  cursor:pointer; appearance:none; -webkit-appearance:none; background:none;
  transition:transform .12s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:hover { text-decoration:none; transform:translateY(-1px); }
.btn--primary { background:var(--c-accent); color:var(--c-accent-text); }
.btn--primary:hover { filter:brightness(1.1); }
.btn--accent-2 { background:var(--c-accent-2); color:var(--c-accent-2-text); }
.btn--accent-2:hover { filter:brightness(1.1); }
.btn--ghost { background:transparent; color:var(--c-header-text); border-color:var(--c-border-chrome); }
.btn--ghost:hover { border-color:var(--c-accent); color:var(--c-accent); }
.btn--lg { padding:14px 28px; font-size:16px; }
.btn--block { width:100%; }
.btn--pill { border-radius:999px; padding:12px 26px; }

/* Header shared rules */
.hdr { background:var(--c-header-bg); color:var(--c-header-text); border-bottom:1px solid var(--c-border-chrome); }
.hdr a { color:var(--c-header-text); }
.hdr__inner { max-width:var(--container); margin:0 auto; padding:14px 20px; display:flex; align-items:center; gap:24px; }
.hdr__logo { display:flex; align-items:center; font-weight:700; font-size:20px; }
.hdr__logo-text { color:var(--c-accent); }
.hdr__nav { flex:1; }
.hdr__nav-list { list-style:none; margin:0; padding:0; display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }
.hdr__nav-list a { font-weight:500; font-size:14px; padding:6px 4px; }
.hdr__nav-list a.is-active, .hdr__nav-list a:hover { color:var(--c-accent); }
.hdr__cta { display:flex; gap:10px; }
.hdr__burger { display:none; background:none; border:0; width:36px; height:36px; flex-direction:column; gap:5px; justify-content:center; align-items:center; cursor:pointer; }
.hdr__burger span { display:block; width:22px; height:2px; background:var(--c-header-text); }
.hdr__mobile { display:none; padding:16px 20px; border-top:1px solid var(--c-border-chrome); background:var(--c-header-bg); }
.hdr__mobile-list { list-style:none; padding:0; margin:0 0 14px; }
.hdr__mobile-list li { border-bottom:1px solid var(--c-border-chrome); }
.hdr__mobile-list a { display:block; padding:12px 0; }
.hdr__mobile-cta { display:flex; flex-direction:column; gap:10px; }

/* Shared language-switcher helpers */
.hdr__flag { font-size:16px; line-height:1; display:inline-block; }
.hdr__mobile-lang { display:flex; flex-wrap:wrap; gap:10px; padding-top:10px; border-top:1px solid var(--c-border-chrome); margin-top:10px; }
.hdr__mobile-lang a { display:inline-flex; align-items:center; gap:6px; padding:6px 10px; border:1px solid var(--c-border-chrome); border-radius:999px; font-size:13px; color:var(--c-header-text); }
.hdr__mobile-lang a.is-active { border-color:var(--c-accent); color:var(--c-accent); }

/* Footer shared rules */
.ftr { background:var(--c-footer-bg); color:var(--c-footer-text); border-top:1px solid var(--c-border-chrome); margin-top:48px; }
.ftr a { color:var(--c-footer-text); }
.ftr__cols { max-width:var(--container); margin:0 auto; padding:40px 20px 24px; display:grid; grid-template-columns:repeat(4, 1fr); gap:28px; }
.ftr__heading { font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--c-footer-text-muted); margin:0 0 12px; }
.ftr__links { list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.ftr__links a { font-size:14px; }
.ftr__links a:hover { color:var(--c-accent); }
.ftr__tagline { color:var(--c-footer-text-muted); font-size:14px; margin:12px 0 0; }
.ftr__col .btn + .btn { margin-top:12px; }
.ftr__bottom { max-width:var(--container); margin:0 auto; padding:14px 20px 28px; border-top:1px solid var(--c-border-chrome); display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; color:var(--c-footer-text-muted); font-size:13px; }
.ftr--b .ftr__inner { max-width:var(--container); margin:0 auto; padding:24px 20px; display:flex; flex-wrap:wrap; align-items:center; gap:18px; justify-content:space-between; }
.ftr--b .ftr__links { display:flex; gap:16px; flex-wrap:wrap; }
.ftr--b .ftr__copy { flex-basis:100%; color:var(--c-footer-text-muted); font-size:13px; margin:0; }

/* Shared responsive */
@media (max-width: 900px) {
  .ftr__cols { grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hdr__nav, .hdr__cta { display:none; }
  .hdr__burger { display:flex; margin-left:auto; }
  .hdr__mobile.is-open { display:block; }

  .ftr__cols { grid-template-columns:1fr; }
  .ftr__bottom { flex-direction:column; }
}

/* Blocks */
.blk { margin:0 0 24px; }
.blk-heading { font-size:clamp(22px,3vw,30px); margin:32px 0 14px; line-height:1.25; }
.blk-paragraph { color:var(--c-text); }
.blk-list ul, .blk-list ol, ul.blk-list, ol.blk-list { padding-left:22px; }
.blk-list li { margin-bottom:6px; }
.blk-list--check { list-style:none; padding-left:0; }
.blk-list--check li { position:relative; padding-left:28px; margin-bottom:8px; }
.blk-list--check li::before {
  content:""; position:absolute; left:0; top:4px; width:18px; height:18px;
  border-radius:50%; background:var(--c-accent);
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat;
          mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat;
}

.blk-table { overflow-x:auto; -webkit-overflow-scrolling:touch; }
.blk-table table { width:100%; border-collapse:collapse; background:var(--c-bg-alt); border-radius:var(--radius); overflow:hidden; min-width:420px; }
.blk-table th, .blk-table td { padding:12px 14px; text-align:left; border-bottom:1px solid var(--c-border); font-size:14px; }
.blk-table th { background:rgba(127,127,127,.08); font-weight:600; }
.blk-table tr:last-child td { border-bottom:0; }
.blk-table--striped tbody tr:nth-child(even) td { background:rgba(127,127,127,.05); }

.blk-info-table { background:var(--c-bg-alt); border-radius:var(--radius); padding:20px 22px; border:1px solid var(--c-border); }
.blk-info-table__title { margin:0 0 12px; font-size:18px; }
.blk-info-table dl { margin:0; display:grid; grid-template-columns:1fr; gap:0; }
.blk-info-table__row { display:flex; justify-content:space-between; gap:12px; padding:10px 0; border-bottom:1px dashed var(--c-border); font-size:14px; }
.blk-info-table__row:last-child { border-bottom:0; }
.blk-info-table dt { color:var(--c-text-muted); }
.blk-info-table dd { margin:0; text-align:right; font-weight:500; }

.blk-info-table--cards { background:transparent; border:0; padding:0; }
.blk-info-table--cards .blk-info-table__grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(180px,1fr)); gap:12px; }
.blk-info-table--cards .blk-info-table__card { background:var(--c-bg-alt); border:1px solid var(--c-border); border-radius:var(--radius); padding:14px 16px; }
.blk-info-table--cards .blk-info-table__label { color:var(--c-text-muted); font-size:12px; text-transform:uppercase; letter-spacing:.05em; }
.blk-info-table--cards .blk-info-table__value { font-size:16px; font-weight:600; margin-top:4px; }

.blk-faq__title { margin:24px 0 14px; }
.blk-faq__item { background:var(--c-bg-alt); border:1px solid var(--c-border); border-radius:var(--radius); padding:14px 18px; margin-bottom:10px; }
.blk-faq__item summary { cursor:pointer; font-weight:600; list-style:none; }
.blk-faq__item summary::-webkit-details-marker { display:none; }
.blk-faq__item[open] summary { margin-bottom:10px; color:var(--c-accent); }
.blk-faq__answer { color:var(--c-text-muted); font-size:15px; }

.blk-faq--accordion .blk-faq__q {
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:12px;
  padding:0; background:none; border:0; color:var(--c-text); font-weight:600;
  cursor:pointer; font-size:15px; text-align:left;
}
.blk-faq--accordion .blk-faq__icon { font-size:20px; line-height:1; color:var(--c-accent); transition:transform .15s; }
.blk-faq--accordion .blk-faq__q[aria-expanded="true"] .blk-faq__icon { transform:rotate(45deg); }
.blk-faq--accordion .blk-faq__a { margin-top:10px; color:var(--c-text-muted); font-size:15px; }

.blk-faq--grid .blk-faq__cards { display:grid; grid-template-columns:repeat(auto-fit, minmax(260px,1fr)); gap:14px; }
.blk-faq--grid .blk-faq__card { background:var(--c-bg-alt); border:1px solid var(--c-border); border-radius:var(--radius); padding:16px 18px; }
.blk-faq--grid .blk-faq__card .blk-faq__q { font-size:16px; margin:0 0 8px; color:var(--c-accent); }
.blk-faq--grid .blk-faq__card .blk-faq__a { color:var(--c-text-muted); font-size:14px; }

.blk-steps { list-style:none; padding:0; margin:0 0 28px; display:grid; gap:14px; }
.blk-steps__item { display:flex; gap:16px; background:var(--c-bg-alt); border:1px solid var(--c-border); border-radius:var(--radius); padding:16px 18px; }
.blk-steps__num { width:36px; height:36px; min-width:36px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:var(--c-accent); color:var(--c-accent-text); font-weight:700; }
.blk-steps__title { margin:0 0 4px; font-size:17px; }
.blk-steps__text { margin:0; color:var(--c-text-muted); font-size:14px; }

.blk-steps--cards { display:grid; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); gap:14px; }
.blk-steps--cards .blk-steps__card { background:var(--c-bg-alt); border:1px solid var(--c-border); border-radius:var(--radius); padding:18px; }
.blk-steps--cards .blk-steps__num { width:32px; height:32px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:var(--c-accent); color:var(--c-accent-text); font-weight:700; margin-bottom:10px; }
.blk-paragraph--lead { font-size:18px; line-height:1.6; color:var(--c-text); }

.blk-cta { text-align:center; margin:28px 0; }
.blk-cta--banner {
  background:linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  color:#fff; padding:36px 28px; border-radius:var(--radius); margin:32px 0;
}
.blk-cta--banner .blk-cta__title { margin:0 0 8px; font-size:clamp(22px,3vw,30px); }
.blk-cta--banner .blk-cta__sub { margin:0 0 18px; opacity:.9; }

.blk-image figcaption { font-size:13px; color:var(--c-text-muted); margin-top:6px; text-align:center; }

.blk-heading--accent { display:flex; align-items:center; gap:12px; }
.blk-heading__bar { display:inline-block; width:4px; height:24px; background:var(--c-accent); border-radius:2px; }

/* FAQ question-mark badge */
.blk-faq > .blk-faq__item > summary { display:flex; align-items:center; gap:10px; }
.blk-faq > .blk-faq__item > summary::before,
.blk-faq--grid .blk-faq__q::before {
  content:"?"; display:inline-flex; align-items:center; justify-content:center;
  width:24px; height:24px; min-width:24px; border-radius:50%; background:var(--c-accent);
  color:var(--c-accent-text); font-weight:700; font-size:14px; flex-shrink:0;
}
.blk-faq--grid .blk-faq__q { display:flex; align-items:center; gap:8px; }
.blk-faq--accordion .blk-faq__q > span:first-child::before {
  content:"?"; display:inline-flex; align-items:center; justify-content:center;
  width:22px; height:22px; border-radius:50%; background:var(--c-accent);
  color:var(--c-accent-text); font-weight:700; font-size:13px; margin-right:8px; vertical-align:middle;
}

/* CTA arrow */
.blk-cta .btn::after { content:"\2192"; margin-left:6px; font-size:18px; }

/* Block responsive */
@media (max-width: 720px) {
  /* Info table ??? stack label/value vertically */
  .blk-info-table { padding:16px; }
  .blk-info-table__row { flex-direction:column; gap:4px; }
  .blk-info-table dd { text-align:left; }

  /* Info table cards ??? force single column */
  .blk-info-table--cards .blk-info-table__grid { grid-template-columns:1fr; }

  /* Tables ??? reduce cell padding for scroll area */
  .blk-table th, .blk-table td { padding:10px 10px; font-size:13px; }

  /* FAQ ??? reduce item padding */
  .blk-faq__item { padding:12px 14px; }
  .blk-faq--grid .blk-faq__cards { grid-template-columns:1fr; }
  .blk-faq--grid .blk-faq__card { padding:14px; }

  /* Steps ??? reduce padding */
  .blk-steps__item { padding:14px; gap:12px; }
  .blk-steps__num { width:32px; height:32px; min-width:32px; font-size:14px; }
  .blk-steps--cards { grid-template-columns:1fr; }

  /* CTA banner ??? reduce padding */
  .blk-cta--banner { padding:24px 18px; margin:24px 0; }

  /* Paragraph lead ??? reduce font */
  .blk-paragraph--lead { font-size:16px; }
}


/* ?????? Hero block ?????? */
.blk-hero {
  background: linear-gradient(135deg, var(--c-secondary), var(--c-primary) 60%, var(--c-bg) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 32px;
  position: relative;
}
.blk-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
}
.blk-hero__content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.blk-hero__title {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
  margin: 0;
  color: var(--c-text);
}
.blk-hero__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-muted);
}
.blk-hero__cta {
  align-self: flex-start;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.blk-hero__media {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.blk-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 720px) {
  .blk-hero__inner {
    grid-template-columns: 1fr;
  }
  .blk-hero__content {
    padding: 32px 20px 24px;
    text-align: center;
    align-items: center;
  }
  .blk-hero__cta {
    align-self: center;
    width: 100%;
  }
  .blk-hero__media {
    max-height: 320px;
  }
}


/* ?????? Hero bonus variant ?????? */
.blk-hero--bonus {
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 32px;
}
.blk-hero--bonus__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
}

/* Left: title + text */
.blk-hero--bonus__content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.blk-hero--bonus__title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.2;
  margin: 0;
  color: var(--c-text);
}
.blk-hero--bonus__bar {
  display: inline-block;
  width: 4px;
  min-height: 28px;
  height: 100%;
  background: var(--c-accent);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 4px;
}
.blk-hero--bonus__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
}

/* Right: bonus card */
.blk-hero--bonus__card {
  background: linear-gradient(160deg, var(--c-secondary) 0%, var(--c-bg) 100%);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.blk-hero--bonus__bonus-label {
  font-size: 20px;
  font-weight: 600;
  color: var(--c-text);
  position: relative;
  z-index: 1;
}
.blk-hero--bonus__amount {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.blk-hero--bonus__bonus-sub {
  font-size: 13px;
  color: var(--c-text-muted);
  max-width: 280px;
  position: relative;
  z-index: 1;
}
.blk-hero--bonus__cta {
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.blk-hero--bonus__decor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 190px;
  height: 190px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.blk-hero--bonus__decor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 720px) {
  .blk-hero--bonus__inner {
    grid-template-columns: 1fr;
  }
  .blk-hero--bonus__content {
    padding: 28px 20px 20px;
  }
  .blk-hero--bonus__card {
    padding: 28px 20px 32px;
  }
  .blk-hero--bonus__decor {
    width: 130px;
    height: 130px;
  }
}


/* ?????? Hero split variant ?????? */
/* Desktop: title+text left, image+CTA right.
   Mobile:  title ??? image ??? CTA ??? text (reorder via grid-areas). */
.blk-hero--split {
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 32px;
}
.blk-hero--split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "title  media"
    "text   media"
    ".      action";
  max-width: var(--container);
  margin: 0 auto;
}
.blk-hero--split__title {
  grid-area: title;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.15;
  margin: 0;
  color: var(--c-text);
  text-transform: uppercase;
  font-weight: 800;
  padding: 48px 40px 16px;
}
.blk-hero--split__text {
  grid-area: text;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  padding: 0 40px 48px;
  align-self: start;
}
.blk-hero--split__media {
  grid-area: media;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 0;
}
.blk-hero--split__media img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}
.blk-hero--split__action {
  grid-area: action;
  display: flex;
  justify-content: center;
  padding: 16px 24px 32px;
}
.blk-hero--split__cta {
  min-width: 200px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

@media (max-width: 720px) {
  .blk-hero--split__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "title"
      "media"
      "action"
      "text";
  }
  .blk-hero--split__title {
    padding: 28px 20px 16px;
    text-align: center;
  }
  .blk-hero--split__media {
    padding: 0 20px;
  }
  .blk-hero--split__action {
    padding: 20px 20px 12px;
  }
  .blk-hero--split__cta {
    width: 100%;
  }
  .blk-hero--split__text {
    padding: 8px 20px 28px;
    font-size: 13px;
  }
}


/* ?????? Hero split v2: centered columns + display:contents mobile reorder ?????? */
.blk-hero--split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.blk-hero--split__left {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blk-hero--split__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
}
/* Reset old grid-area rules */
.blk-hero--split__title {
  grid-area: unset;
  padding: 0;
  align-self: unset;
}
.blk-hero--split__text {
  grid-area: unset;
  padding: 0;
  align-self: unset;
}
.blk-hero--split__media {
  grid-area: unset;
  padding: 0;
}
.blk-hero--split__action {
  grid-area: unset;
  padding: 0;
}

@media (max-width: 720px) {
  .blk-hero--split__inner {
    grid-template-columns: 1fr;
  }
  .blk-hero--split__left,
  .blk-hero--split__right {
    display: contents;
  }
  .blk-hero--split__title { order: 1; padding: 28px 20px 12px; text-align: center; }
  .blk-hero--split__media { order: 2; padding: 0 20px; }
  .blk-hero--split__action { order: 3; padding: 16px 20px 8px; display: flex; }
  .blk-hero--split__cta { width: 100%; }
  .blk-hero--split__text { order: 4; padding: 8px 20px 28px; font-size: 13px; }
}

/* Hero default — center CTA */
.blk-hero__cta { align-self: center; }


/* ?????? Hero promo variant ?????? */
.blk-hero--promo {
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 32px;
}
.blk-hero--promo__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 40px 48px;
  text-align: center;
}
.blk-hero--promo__title {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 auto 20px;
  color: #fff;
  max-width: 720px;
}
.blk-hero--promo__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 700px;
  margin: 0 auto 32px;
}

/* Promo card */
.blk-hero--promo__card {
  border: 2px solid rgba(255,255,255,.25);
  border-radius: calc(var(--radius) + 4px);
  padding: 28px 32px;
  max-width: 780px;
  margin: 0 auto;
}
.blk-hero--promo__offer {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

/* Code + CTA row */
.blk-hero--promo__row {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.blk-hero--promo__code-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 12px 20px;
  min-width: 200px;
}
.blk-hero--promo__code {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
  flex: 1;
}
.blk-hero--promo__copy {
  background: none;
  border: 0;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color .15s;
}
.blk-hero--promo__copy:hover {
  color: #fff;
}
.blk-hero--promo__copy.is-copied {
  color: var(--c-accent);
}
.blk-hero--promo__cta {
  min-width: 180px;
  font-size: 16px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .blk-hero--promo__inner {
    padding: 36px 20px 32px;
  }
  .blk-hero--promo__card {
    padding: 20px 16px;
  }
  .blk-hero--promo__row {
    flex-direction: column;
    gap: 12px;
  }
  .blk-hero--promo__code-box {
    width: 100%;
    justify-content: center;
  }
  .blk-hero--promo__cta {
    width: 100%;
  }
}


/* ?????? CTA promo variant ?????? */
.blk-cta--promo {
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
  text-align: center;
}
.blk-cta--promo__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Heading with gift icon */
.blk-cta--promo__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.blk-cta--promo__gift {
  color: var(--c-accent);
}
.blk-cta--promo__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: .02em;
}

/* Bonus amount */
.blk-cta--promo__amount {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--c-accent-2);
  line-height: 1.1;
}
.blk-cta--promo__sub {
  font-size: 16px;
  color: var(--c-text);
  margin-bottom: 4px;
}
.blk-cta--promo__extra {
  font-size: 16px;
  color: var(--c-accent-2);
  font-weight: 600;
  margin-bottom: 12px;
}

/* Promo code row with chevrons */
.blk-cta--promo__code-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 20px;
}
.blk-cta--promo__chevrons {
  display: flex;
  gap: -4px;
  color: var(--c-accent-2);
  opacity: .8;
}
.blk-cta--promo__chevrons--rev {
  transform: scaleX(-1);
}
.blk-cta--promo__code-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px dashed var(--c-accent);
  border-radius: 999px;
  padding: 12px 24px;
  min-width: 180px;
}
.blk-cta--promo__code {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  letter-spacing: .06em;
  flex: 1;
}
.blk-cta--promo__copy {
  background: none;
  border: 0;
  color: #666;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color .15s;
}
.blk-cta--promo__copy:hover { color: #111; }
.blk-cta--promo__copy.is-copied { color: var(--c-accent-2); }

/* CTA button */
.blk-cta--promo__btn {
  margin-top: 8px;
  min-width: 260px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

@media (max-width: 720px) {
  .blk-cta--promo__inner { padding: 32px 20px; }
  .blk-cta--promo__chevrons { display: none; }
  .blk-cta--promo__code-box { width: 100%; justify-content: center; }
  .blk-cta--promo__btn { width: 100%; min-width: unset; }
}


/* ?????? CTA download variant ?????? */
.blk-cta--download {
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
  padding: 24px;
}
.blk-cta--download__card {
  display: flex;
  align-items: center;
  gap: 28px;
  border: 2px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
}
.blk-cta--download__logo {
  flex-shrink: 0;
}
.blk-cta--download__logo img {
  max-height: 56px;
  width: auto;
}
.blk-cta--download__body {
  flex: 1;
  min-width: 0;
}
.blk-cta--download__title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.blk-cta--download__sub {
  font-size: clamp(14px, 2vw, 18px);
  color: #fff;
  font-weight: 600;
  margin-top: 2px;
}
.blk-cta--download__buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.blk-cta--download__btn {
  min-width: 170px;
  font-size: 14px;
  gap: 8px;
}
.blk-cta--download__btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

@media (max-width: 720px) {
  .blk-cta--download { padding: 16px; }
  .blk-cta--download__card {
    flex-direction: column;
    padding: 24px 20px;
    text-align: center;
    gap: 16px;
  }
  .blk-cta--download__body { text-align: center; }
  .blk-cta--download__buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .blk-cta--download__btn {
    width: 100%;
    min-width: unset;
    justify-content: center;
  }
  .blk-cta--download__btn-text { text-align: center; }
}


/* ?????? CTA bonus variant ?????? */
.blk-cta--bonus {
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
  position: relative;
}
.blk-cta--bonus__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.blk-cta--bonus__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--c-text);
}
.blk-cta--bonus__amount {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: var(--c-accent-2);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.blk-cta--bonus__sub {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 12px;
  max-width: 400px;
}
.blk-cta--bonus__btn {
  min-width: 220px;
  font-size: 16px;
  margin-top: 8px;
}

/* Decorative image ??? bottom-left */
.blk-cta--bonus__decor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 140px;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}
.blk-cta--bonus__decor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom left;
}

@media (max-width: 720px) {
  .blk-cta--bonus__inner { padding: 36px 20px; }
  .blk-cta--bonus__btn { width: 100%; min-width: unset; }
  .blk-cta--bonus__decor { width: 100px; height: 100px; }
}


/* ?????? FAQ bordered variant ?????? */
.blk-faq--bordered__title {
  text-align: center;
  color: var(--c-accent);
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 20px;
  font-weight: 700;
}
.blk-faq--bordered__list {
  border: 1.5px solid var(--c-accent);
  border-radius: var(--radius);
  overflow: hidden;
}
.blk-faq--bordered__item {
  border-bottom: 1px solid var(--c-accent);
}
.blk-faq--bordered__item:last-child {
  border-bottom: 0;
}
.blk-faq--bordered__q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  background: var(--c-bg-alt);
  transition: background .15s;
}
.blk-faq--bordered__q::-webkit-details-marker { display: none; }
.blk-faq--bordered__q::before {
  content: "???";
  font-size: 14px;
  color: var(--c-text);
  transition: transform .15s;
  flex-shrink: 0;
}
.blk-faq--bordered__item[open] > .blk-faq--bordered__q::before {
  content: "???";
}
.blk-faq--bordered__item[open] > .blk-faq--bordered__q {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.blk-faq--bordered__q:hover {
  background: rgba(255,255,255,.03);
}
.blk-faq--bordered__a {
  padding: 14px 20px 18px 44px;
  color: var(--c-text-muted);
  font-size: 14px;
  line-height: 1.7;
  background: var(--c-bg-alt);
}

@media (max-width: 720px) {
  .blk-faq--bordered__q { padding: 14px 16px; font-size: 14px; }
  .blk-faq--bordered__a { padding: 12px 16px 16px 36px; font-size: 13px; }
}


/* ?????? FAQ highlight variant ?????? */
.blk-faq--highlight__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  font-style: italic;
  margin: 0 0 18px;
  color: var(--c-text);
}
.blk-faq--highlight__item {
  border: 2px solid var(--c-accent);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.blk-faq--highlight__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--c-accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  font-style: italic;
  cursor: pointer;
  list-style: none;
}
.blk-faq--highlight__q::-webkit-details-marker { display: none; }
.blk-faq--highlight__q-text {
  flex: 1;
}

/* Circle icon: minus when open, plus when closed */
.blk-faq--highlight__icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blk-faq--highlight__icon::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: #fff;
}
.blk-faq--highlight__icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 14px;
  background: #fff;
  transition: transform .15s;
}
.blk-faq--highlight__item[open] .blk-faq--highlight__icon::after {
  transform: rotate(90deg);
}

.blk-faq--highlight__a {
  padding: 16px 20px;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 14px;
  line-height: 1.7;
  border-top: 1px solid var(--c-accent);
}

@media (max-width: 720px) {
  .blk-faq--highlight__q { padding: 14px 16px; font-size: 13px; }
  .blk-faq--highlight__a { padding: 14px 16px; font-size: 13px; }
  .blk-faq--highlight__icon { width: 28px; height: 28px; min-width: 28px; }
  .blk-faq--highlight__icon::before { width: 12px; }
  .blk-faq--highlight__icon::after { height: 12px; }
}


/* ?????? Heading uppercase variant ?????? */
.blk-heading--upper {
  text-transform: uppercase;
  font-weight: 800;
  font-style: italic;
  letter-spacing: .02em;
}


/* ?????? Heading underline variant ?????? */
.blk-heading--underline {
  text-align: center;
  margin: 32px 0 14px;
}
.blk-heading--underline__text {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--c-text);
}
.blk-heading--underline__line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
  margin: 0 auto;
}

/* ?????? Heading badge variant ?????? */
.blk-heading--badge {
  margin: 32px 0 14px;
}
.blk-heading--badge__text {
  display: inline-block;
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.3;
  margin: 0;
  padding: 10px 24px;
  background: var(--c-bg-alt);
  border: 1.5px solid var(--c-accent);
  border-radius: 999px;
  color: var(--c-text);
  font-weight: 700;
}


/* ?????? Heading boxed variant (replaces badge) ?????? */
.blk-heading--boxed {
  margin: 32px 0 14px;
}
.blk-heading--boxed__text {
  display: block;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.3;
  margin: 0;
  padding: 14px 20px;
  background: var(--c-bg-alt);
  border-left: 4px solid var(--c-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--c-text);
  font-weight: 700;
}


/* ?????? Paragraph with title ?????? */
.blk-paragraph__title {
  font-size: clamp(20px, 2.5vw, 26px);
  margin: 0 0 10px;
  color: var(--c-text);
  line-height: 1.25;
}
.blk-paragraph__text {
  margin: 0;
}

/* ?????? Paragraph image variants (shared) ?????? */
.blk-paragraph--img__title {
  font-size: clamp(20px, 2.5vw, 26px);
  margin: 0 0 16px;
  color: var(--c-accent);
  line-height: 1.25;
}
.blk-paragraph--img__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
}
.blk-paragraph--img__media {
  overflow: hidden;
  border-radius: var(--radius);
}
.blk-paragraph--img__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blk-paragraph--img__body {
  padding: 24px 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blk-paragraph--img-left .blk-paragraph--img__body {
  padding: 24px 24px 24px 0;
}
.blk-paragraph--img-right .blk-paragraph--img__body {
  padding: 24px 0 24px 24px;
}
.blk-paragraph--img__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
}
.blk-paragraph--img__cta {
  align-self: flex-start;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

@media (max-width: 720px) {
  .blk-paragraph--img__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .blk-paragraph--img__media {
    max-height: 240px;
  }
  .blk-paragraph--img__body {
    padding: 20px !important;
  }
  .blk-paragraph--img__cta {
    align-self: center;
    width: 100%;
  }
}


/* ?????? Paragraph image v2: title inside body, centered, vertical align ?????? */
.blk-paragraph--img__row {
  align-items: center;
}
.blk-paragraph--img__title {
  text-align: center;
}
.blk-paragraph--img__body {
  align-items: center;
  text-align: center;
}
.blk-paragraph--img__cta {
  align-self: center;
}


/* ?????? Info table striped variant ?????? */
.blk-info-table--striped {
  background: transparent;
  border: 0;
  padding: 0;
}
.blk-info-table--striped__heading {
  font-size: clamp(20px, 2.5vw, 26px);
  margin: 0 0 16px;
  color: var(--c-text);
}
.blk-info-table--striped__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.blk-info-table--striped__table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 360px;
}
.blk-info-table--striped__table thead th {
  background: var(--c-bg-alt);
  padding: 14px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  color: var(--c-text);
  border-bottom: 2px solid var(--c-border);
}
.blk-info-table--striped__table tbody tr {
  border-bottom: 1px solid var(--c-border);
}
.blk-info-table--striped__table tbody tr:last-child {
  border-bottom: 0;
}
.blk-info-table--striped__table tbody tr:nth-child(even) {
  background: var(--c-bg-alt);
}
.blk-info-table--striped__label {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-text);
  width: 40%;
}
.blk-info-table--striped__value {
  padding: 16px 24px;
  font-size: 15px;
  color: var(--c-text-muted);
}

@media (max-width: 720px) {
  .blk-info-table--striped__label,
  .blk-info-table--striped__value {
    padding: 12px 16px;
    font-size: 14px;
  }
  .blk-info-table--striped__label {
    width: 45%;
  }
}


/* ?????? Info table bordered variant ?????? */
.blk-info-table--bordered {
  background: transparent;
  border: 0;
  padding: 0;
}
.blk-info-table--bordered__heading {
  font-size: clamp(20px, 2.5vw, 26px);
  margin: 0 0 16px;
  color: var(--c-text);
}
.blk-info-table--bordered__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 2px solid var(--c-accent);
  border-radius: var(--radius);
  overflow: hidden;
}
.blk-info-table--bordered__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 340px;
}
.blk-info-table--bordered__table tr {
  border-bottom: 1.5px solid var(--c-accent);
}
.blk-info-table--bordered__table tr:last-child {
  border-bottom: 0;
}
.blk-info-table--bordered__label {
  background: var(--c-accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px;
  width: 35%;
  vertical-align: middle;
  border-right: 1.5px solid rgba(255,255,255,.15);
}
.blk-info-table--bordered__value {
  background: var(--c-bg-alt);
  color: var(--c-text);
  font-size: 14px;
  padding: 14px 20px;
  vertical-align: middle;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .blk-info-table--bordered__label {
    width: 40%;
    padding: 12px 14px;
    font-size: 13px;
  }
  .blk-info-table--bordered__value {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* Fix: info_table bordered — visual separation between border and label */
.blk-info-table--bordered__wrap {
  border-color: var(--c-border);
  padding: 6px;
  background: var(--c-bg-alt);
}
.blk-info-table--bordered__label {
  border-radius: 4px 0 0 4px;
}

/* Fix: info_table bordered — darker accent for label, cleaner border */
.blk-info-table--bordered__wrap {
  border-color: rgba(255,255,255,.12);
  padding: 0;
  background: none;
  border-width: 1.5px;
}
.blk-info-table--bordered__table tr {
  border-bottom-color: rgba(255,255,255,.08);
}
.blk-info-table--bordered__label {
  background: color-mix(in srgb, var(--c-accent) 70%, #000);
  border-radius: 0;
}


/* ?????? Info table two-col variant ?????? */
.blk-info-table--two-col {
  background: transparent;
  border: 0;
  padding: 0;
}
.blk-info-table--two-col__heading {
  font-size: clamp(20px, 2.5vw, 26px);
  margin: 0 0 16px;
  color: var(--c-text);
}
.blk-info-table--two-col__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.blk-info-table--two-col__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--c-border);
}
.blk-info-table--two-col__row:nth-last-child(-n+2) {
  border-bottom: 0;
}
.blk-info-table--two-col__dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
  position: relative;
  top: -1px;
}
.blk-info-table--two-col__label {
  color: var(--c-accent);
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}
.blk-info-table--two-col__value {
  margin-left: auto;
  text-align: right;
  font-weight: 700;
  font-size: 14px;
  color: var(--c-text);
}

@media (max-width: 720px) {
  .blk-info-table--two-col__grid {
    grid-template-columns: 1fr;
  }
  .blk-info-table--two-col__row:last-child {
    border-bottom: 0;
  }
  .blk-info-table--two-col__row:nth-last-child(2) {
    border-bottom: 1px dashed var(--c-border);
  }
}


/* Info table two-col ??? icon support */
.blk-info-table--two-col__icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  background: var(--c-accent);
  -webkit-mask: var(--icon-url) center/contain no-repeat;
  mask: var(--icon-url) center/contain no-repeat;
}


/* ?????? List numbered variant ?????? */
.blk-list--numbered {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blk-list--numbered__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.blk-list--numbered__num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 2px solid var(--c-accent);
  color: var(--c-accent);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blk-list--numbered__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text);
  padding-top: 8px;
}

@media (max-width: 720px) {
  .blk-list--numbered__num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 14px;
  }
  .blk-list--numbered__text {
    font-size: 14px;
    padding-top: 6px;
  }
}


/* ?????? List badges variant ?????? */
.blk-list--badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blk-list--badges__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.blk-list--badges__mark {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.blk-list--badges__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text);
  padding-top: 3px;
}

@media (max-width: 720px) {
  .blk-list--badges__mark {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }
  .blk-list--badges__mark svg {
    width: 12px;
    height: 12px;
  }
  .blk-list--badges__text {
    font-size: 14px;
  }
}


/* ?????? Table accent variant ?????? */
.blk-table--accent table {
  border-left: 3px solid var(--c-accent);
  border-radius: 0;
}
.blk-table--accent thead th {
  background: var(--c-accent);
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 14px 18px;
  border-bottom: 0;
}
.blk-table--accent tbody td {
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
  padding: 14px 18px;
  font-size: 14px;
  vertical-align: top;
}
.blk-table--accent tbody tr:last-child td {
  border-bottom: 0;
}
.blk-table--accent__first {
  font-weight: 700;
  color: var(--c-text);
  width: 30%;
}

/* Fix: table accent — column separator */
.blk-table--accent tbody td {
  border-right: 1px solid var(--c-border);
}
.blk-table--accent tbody td:last-child {
  border-right: 0;
}
.blk-table--accent thead th {
  border-right: 1px solid rgba(255,255,255,.2);
}
.blk-table--accent thead th:last-child {
  border-right: 0;
}


/* ?????? Table bordered variant ?????? */
.blk-table--bordered table {
  border: 1.5px solid var(--c-accent);
  border-radius: var(--radius);
  overflow: hidden;
}
.blk-table--bordered thead th {
  background: var(--c-accent);
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 15px;
  padding: 14px 18px;
  border-bottom: 0;
  border-right: 1px solid rgba(255,255,255,.2);
}
.blk-table--bordered thead th:last-child {
  border-right: 0;
}
.blk-table--bordered tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--c-accent);
  border-right: 1px solid var(--c-border);
  vertical-align: middle;
  font-size: 14px;
}
.blk-table--bordered tbody td:last-child {
  border-right: 0;
}
.blk-table--bordered tbody tr:last-child td {
  border-bottom: 0;
}

/* Inline icon/image support inside cells */
.blk-table--bordered td img,
.blk-table--bordered td .tbl-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 12px;
  border-radius: 4px;
}
/* SVG icon via CSS mask (for /icons/*.svg) */
.blk-table--bordered td .tbl-ico {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 10px;
  background: var(--c-accent);
  -webkit-mask: var(--icon-url) center/contain no-repeat;
  mask: var(--icon-url) center/contain no-repeat;
}
/* Min/Max styled lines */
.blk-table--bordered .tbl-minmax {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}
.blk-table--bordered .tbl-minmax span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.blk-table--bordered .tbl-label {
  color: var(--c-text-muted);
}
.blk-table--bordered .tbl-val {
  font-weight: 700;
  text-align: right;
}

@media (max-width: 720px) {
  .blk-table--bordered td img,
  .blk-table--bordered td .tbl-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }
  .blk-table--bordered td {
    padding: 12px 14px;
    font-size: 13px;
  }
}


/* ?????? TOC (Table of Contents) block ?????? */
.blk-toc {
  margin: 24px 0;
}
.blk-toc__details {
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-bg-alt);
}
.blk-toc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.blk-toc__header::-webkit-details-marker { display: none; }
.blk-toc__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
}
.blk-toc__toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--c-border);
  border-radius: 6px;
  color: var(--c-text-muted);
  transition: color .15s, border-color .15s;
}
.blk-toc__details[open] .blk-toc__toggle {
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.blk-toc__body {
  padding: 4px 20px 20px;
}
.blk-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blk-toc__item {
  position: relative;
  padding: 6px 0;
}
.blk-toc__item a {
  color: var(--c-text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.blk-toc__item a:hover {
  color: var(--c-accent);
  text-decoration: underline;
}

/* Indentation by level */
.blk-toc__item--l1 { padding-left: 0; }
.blk-toc__item--l1 > a { font-weight: 700; }
.blk-toc__item--l2 { padding-left: 20px; }
.blk-toc__item--l3 { padding-left: 40px; }

@media (max-width: 720px) {
  .blk-toc__header { padding: 12px 16px; }
  .blk-toc__body { padding: 4px 16px 16px; }
  .blk-toc__item a { font-size: 13px; }
}

/* Fix: TOC bullet characters */
.blk-toc__item::before {
  content: "\2022";
  color: var(--c-text-muted);
  margin-right: 8px;
}
.blk-toc__item--l3::before {
  content: "\2013";
}


/* ?????? TOC grid variant ?????? */
.blk-toc--grid__details {
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.blk-toc--grid__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--c-bg-alt);
  cursor: pointer;
  list-style: none;
  user-select: none;
  border-bottom: 1px solid var(--c-border);
}
.blk-toc--grid__header::-webkit-details-marker { display: none; }
.blk-toc--grid__title {
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--c-text);
}
.blk-toc--grid__toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: transform .2s;
}
.blk-toc--grid__details:not([open]) .blk-toc--grid__toggle {
  transform: rotate(180deg);
}
.blk-toc--grid__body {
  padding: 20px 24px;
  background: var(--c-bg-alt);
}
.blk-toc--grid__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px 24px;
}
.blk-toc--grid__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blk-toc--grid__item::before {
  content: "°5";
  color: var(--c-accent);
  font-size: 14px;
  flex-shrink: 0;
}
.blk-toc--grid__item a {
  color: var(--c-accent);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.blk-toc--grid__item a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .blk-toc--grid__list {
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
  }
  .blk-toc--grid__body { padding: 16px; }
  .blk-toc--grid__item a { font-size: 13px; }
}


/* Fix: toc grid icon ??? SVG instead of CSS content */
.blk-toc--grid__item::before {
  content: none;
}
.blk-toc--grid__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  flex-shrink: 0;
}


/* ?????? TOC sticky variant ?????? */
.blk-toc--sticky {
  margin: 0 0 24px;
}
.blk-toc--sticky__bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
}
.blk-toc--sticky__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.blk-toc--sticky__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  min-width: 0;
}
.blk-toc--sticky__scroll::-webkit-scrollbar {
  display: none;
}
.blk-toc--sticky__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.blk-toc--sticky__item a {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .15s, color .15s, background .15s;
}
.blk-toc--sticky__item a:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  text-decoration: none;
}
.blk-toc--sticky__item.is-active a {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-accent-text);
}

@media (max-width: 720px) {
  .blk-toc--sticky__bar {
    padding: 8px 14px;
    gap: 10px;
  }
  .blk-toc--sticky__label {
    font-size: 12px;
  }
  .blk-toc--sticky__item a {
    padding: 5px 12px;
    font-size: 12px;
  }
}


/* TOC sticky ??? fixed mode when scrolled past */
.blk-toc--sticky__bar.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 45;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.blk-toc--sticky__bar.is-fixed .blk-toc--sticky__list {
  max-width: var(--container);
  margin: 0 auto;
}

/* Fix: TOC sticky bar — constrain to container width */
.blk-toc--sticky__bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 20px;
}


/* Fix: TOC sticky ??? full-width bg, container-width content */
.blk-toc--sticky__bar {
  max-width: none;
  padding: 0;
}
.blk-toc--sticky__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Fix: TOC sticky bar — static by default, JS handles fixed */
.blk-toc--sticky__bar {
  position: static;
}

/* Fix: TOC sticky — spacing above to not overlap H1 */
.blk-toc--sticky {
  margin-top: 8px;
  margin-bottom: 28px;
}


/* ?????? Steps illustrated variant ?????? */
.blk-steps--illust {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.blk-steps--illust__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
}
.blk-steps--illust__body {
  padding: 28px 28px 28px 32px;
}
.blk-steps--illust__num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 14px;
}
/* Alternating colors */
.blk-steps--illust__step--odd .blk-steps--illust__num {
  background: var(--c-accent);
  color: var(--c-accent-text);
}
.blk-steps--illust__step--even .blk-steps--illust__num {
  background: var(--c-accent-2);
  color: var(--c-accent-2-text);
}
.blk-steps--illust__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--c-text);
}
.blk-steps--illust__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin: 0;
}
.blk-steps--illust__media {
  height: 100%;
  overflow: hidden;
}
.blk-steps--illust__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 720px) {
  .blk-steps--illust__step {
    grid-template-columns: 1fr;
  }
  .blk-steps--illust__body {
    padding: 20px 20px 16px;
  }
  .blk-steps--illust__media {
    max-height: 240px;
  }
}


/* Steps illustrated ??? title + intro */
.blk-steps--illust__heading {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  font-style: italic;
  margin: 0 0 12px;
  color: var(--c-text);
}
.blk-steps--illust__intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin: 0 0 24px;
  max-width: 720px;
}
.blk-steps--illust__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Connector line between steps */
.blk-steps--illust__step {
  position: relative;
  margin-bottom: 0;
}
.blk-steps--illust__step:not(.blk-steps--illust__step--last)::after {
  content: "";
  position: absolute;
  left: 51px;
  bottom: -20px;
  width: 2px;
  height: 20px;
  z-index: 1;
}
.blk-steps--illust__step--odd:not(.blk-steps--illust__step--last)::after {
  background: linear-gradient(to bottom, var(--c-accent), var(--c-accent-2));
}
.blk-steps--illust__step--even:not(.blk-steps--illust__step--last)::after {
  background: linear-gradient(to bottom, var(--c-accent-2), var(--c-accent));
}
/* Add gap for the connector */
.blk-steps--illust__list .blk-steps--illust__step {
  margin-bottom: 20px;
}
.blk-steps--illust__list .blk-steps--illust__step--last {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .blk-steps--illust__step:not(.blk-steps--illust__step--last)::after {
    left: 39px;
  }
}

/* Fix: steps illustrated — allow connector to be visible */
.blk-steps--illust__step {
  overflow: visible;
}
.blk-steps--illust__media {
  border-radius: 0 var(--radius) var(--radius) 0;
  overflow: hidden;
}


/* ?????? Steps illustrated v2 ??? timeline layout ?????? */
.blk-steps--illust__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.blk-steps--illust__step {
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  gap: 0 20px;
  background: none;
  border-radius: 0;
  overflow: visible;
  margin-bottom: 0;
}

/* Rail: number badge + vertical line */
.blk-steps--illust__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blk-steps--illust__num {
  width: 42px;
  height: 42px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.blk-steps--illust__line {
  width: 2px;
  flex: 1;
  min-height: 20px;
}
.blk-steps--illust__step--odd .blk-steps--illust__line {
  background: linear-gradient(to bottom, var(--c-accent), var(--c-accent-2));
}
.blk-steps--illust__step--even .blk-steps--illust__line {
  background: linear-gradient(to bottom, var(--c-accent-2), var(--c-accent));
}

/* Content column */
.blk-steps--illust__content {
  padding: 8px 0 28px;
}
.blk-steps--illust__step--last .blk-steps--illust__content {
  padding-bottom: 0;
}
.blk-steps--illust__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--c-text);
}
.blk-steps--illust__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin: 0;
}

/* Image column */
.blk-steps--illust__media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-bg-alt);
  height: auto;
  align-self: start;
}
.blk-steps--illust__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

/* Remove old ::after connector */
.blk-steps--illust__step::after {
  content: none;
}

@media (max-width: 720px) {
  .blk-steps--illust__step {
    grid-template-columns: 48px 1fr;
    gap: 0 14px;
  }
  .blk-steps--illust__num {
    width: 36px;
    height: 36px;
    min-height: 36px;
    font-size: 16px;
  }
  .blk-steps--illust__media {
    grid-column: 2;
    max-height: 200px;
    margin-bottom: 16px;
  }
  .blk-steps--illust__content {
    padding: 4px 0 12px;
  }
}

/* Fix: steps illustrated — kill old connector, seamless line */
.blk-steps--illust__step::after,
.blk-steps--illust__step--odd::after,
.blk-steps--illust__step--even::after {
  content: none !important;
  display: none !important;
}
.blk-steps--illust__rail {
  gap: 0;
}
.blk-steps--illust__num {
  margin: 0;
}
.blk-steps--illust__line {
  margin: 0;
}

/* Fix: steps illustrated — full-height line + gap between steps */
.blk-steps--illust__step {
  align-items: stretch;
  margin-bottom: 12px;
}
.blk-steps--illust__step--last {
  margin-bottom: 0;
}
.blk-steps--illust__rail {
  align-self: stretch;
}
.blk-steps--illust__media {
  margin: 0 0 8px;
}

/* Fix: steps illustrated — center content vertically + mobile line fix */
.blk-steps--illust__content {
  align-self: center;
  padding: 0;
}
.blk-steps--illust__media {
  align-self: center;
}
@media (max-width: 720px) {
  .blk-steps--illust__rail {
    align-self: stretch;
  }
  .blk-steps--illust__step {
    align-items: stretch;
  }
  .blk-steps--illust__content {
    align-self: start;
    padding: 4px 0 12px;
  }
  .blk-steps--illust__media {
    align-self: start;
  }
}

/* Fix: steps illustrated — mobile rail spans all rows + line on last step */
@media (max-width: 720px) {
  .blk-steps--illust__rail {
    grid-row: 1 / 99;
  }
}
/* Show line on last step too */
.blk-steps--illust__step--last .blk-steps--illust__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* ?????? Reviews block ?????? */
.blk-reviews__heading {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--c-text);
}
.blk-reviews__intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin: 0 0 24px;
}
.blk-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.blk-reviews__card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
}
.blk-reviews__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.blk-reviews__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.blk-reviews__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--c-text);
}
.blk-reviews__country {
  font-size: 13px;
  color: var(--c-text-muted);
}
.blk-reviews__rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.blk-reviews__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.blk-reviews__star--filled {
  color: #FACC15;
}
.blk-reviews__star--empty {
  color: var(--c-border);
}
.blk-reviews__score {
  font-weight: 700;
  font-size: 14px;
  color: var(--c-text);
  margin-left: 6px;
}
.blk-reviews__date {
  font-size: 13px;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.blk-reviews__divider {
  border: 0;
  border-top: 1px solid var(--c-border);
  margin: 0 0 14px;
}
.blk-reviews__text {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  font-style: italic;
}

@media (max-width: 720px) {
  .blk-reviews__grid {
    grid-template-columns: 1fr;
  }
  .blk-reviews__card {
    padding: 20px;
  }
}


/* ?????? Reviews list variant ?????? */
.blk-reviews--list__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blk-reviews--list__card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  align-items: center;
}
.blk-reviews--list__side {
  display: flex;
  align-items: center;
  gap: 14px;
}
.blk-reviews--list__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.blk-reviews--list__stars {
  display: flex;
  gap: 1px;
  margin-top: 4px;
}
.blk-reviews--list__text {
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 2px solid var(--c-accent);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  font-style: italic;
}

@media (max-width: 720px) {
  .blk-reviews--list__card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .blk-reviews--list__text {
    border-left: 0;
    padding: 0;
    border-top: 1px solid var(--c-border);
    padding-top: 16px;
  }
}

/* ?????? Reviews quote variant ?????? */
.blk-reviews--quote__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blk-reviews--quote__card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  position: relative;
}
.blk-reviews--quote__mark {
  font-size: 64px;
  line-height: 1;
  color: var(--c-accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: -12px;
}
.blk-reviews--quote__text {
  margin: 0 auto 20px;
  padding: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-text);
  max-width: 640px;
  font-style: italic;
}
.blk-reviews--quote__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.blk-reviews--quote__info {
  text-align: left;
}
.blk-reviews--quote__bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}
.blk-reviews--quote__stars {
  display: flex;
  gap: 1px;
}

@media (max-width: 720px) {
  .blk-reviews--quote__card {
    padding: 24px 20px;
  }
  .blk-reviews--quote__text {
    font-size: 14px;
  }
}


/* ?????? Steps tiles variant ?????? */
.blk-steps--tiles__heading {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--c-text);
}
.blk-steps--tiles__intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin: 0 0 24px;
  max-width: 720px;
}
.blk-steps--tiles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.blk-steps--tiles__card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.blk-steps--tiles__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.blk-steps--tiles__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blk-steps--tiles__body {
  padding: 18px 20px 22px;
}
.blk-steps--tiles__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--c-accent);
}
.blk-steps--tiles__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin: 0;
}

@media (max-width: 720px) {
  .blk-steps--tiles__grid {
    grid-template-columns: 1fr;
  }
  .blk-steps--tiles__body {
    padding: 16px;
  }
}


/* ?????? Paragraph tiles variant (content tile grid) ?????? */
.blk-paragraph--tiles__heading {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--c-text);
}
.blk-paragraph--tiles__intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin: 0 0 24px;
  max-width: 720px;
}
.blk-paragraph--tiles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.blk-paragraph--tiles__card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.blk-paragraph--tiles__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.blk-paragraph--tiles__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blk-paragraph--tiles__body {
  padding: 18px 20px 22px;
}
.blk-paragraph--tiles__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--c-accent);
}
.blk-paragraph--tiles__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin: 0;
}
@media (max-width: 720px) {
  .blk-paragraph--tiles__grid {
    grid-template-columns: 1fr;
  }
  .blk-paragraph--tiles__body {
    padding: 16px;
  }
}

/* Fix: paragraph tiles — horizontal card layout (image left, text right) */
.blk-paragraph--tiles__card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
}
.blk-paragraph--tiles__media {
  aspect-ratio: auto;
  height: 100%;
}
.blk-paragraph--tiles__media img {
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius) 0 0 var(--radius);
}
@media (max-width: 720px) {
  .blk-paragraph--tiles__card {
    grid-template-columns: 100px 1fr;
  }
}

/* Fix: paragraph tiles — 220px image desktop, stack on mobile */
.blk-paragraph--tiles__card {
  grid-template-columns: 220px 1fr;
}
@media (max-width: 720px) {
  .blk-paragraph--tiles__card {
    grid-template-columns: 1fr;
  }
  .blk-paragraph--tiles__media {
    order: 2;
    aspect-ratio: 1 / 1;
    max-height: none;
  }
  .blk-paragraph--tiles__body {
    order: 1;
  }
  .blk-paragraph--tiles__media img {
    border-radius: 0 0 var(--radius) var(--radius);
  }
}

/* Fix: TOC sticky — contain horizontal overflow on mobile */
.blk-toc--sticky {
  overflow: hidden;
}
.blk-toc--sticky__bar {
  overflow: hidden;
  max-width: 100vw;
}
.blk-toc--sticky__inner {
  min-width: 0;
}
.blk-toc--sticky__scroll {
  min-width: 0;
  max-width: 100%;
}

/* Internal-link styling — body anchors inside content blocks.
   Headers/nav/footer use <a class="..."> with their own rules; CTA buttons
   are <button data-go>. So a generic `.blk a[href]` cleanly targets body
   text anchors (paragraph, list items, faq answers) without touching nav. */
.blk a[href] {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: opacity .15s ease;
}
.blk a[href]:hover {
  text-decoration-thickness: 2px;
  opacity: .85;
}

/* Header E variant — two-row: top bar (logo + centered lang + CTAs), bottom pill-nav with icons */
.hdr--e { position:sticky; top:0; z-index:50; }
.hdr--e .hdr__row--top .hdr__row-inner { max-width:var(--container); margin:0 auto; padding:14px 20px; display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.hdr--e .hdr__lang-switch { margin-left:auto; position:relative; }
.hdr--e .hdr__lang-switch > a { display:inline-flex; align-items:center; gap:8px; padding:8px 16px; border:1px solid var(--c-border-chrome); border-radius:999px; color:var(--c-header-text); cursor:pointer; font-size:13px; font-weight:600; }
.hdr--e .hdr__lang-switch:hover > a, .hdr--e .hdr__lang-switch:focus-within > a { border-color:var(--c-accent); color:var(--c-accent); }
.hdr--e .hdr__lang-code { letter-spacing:.04em; }
.hdr--e .hdr__caret { font-size:10px; opacity:.8; }
.hdr--e .hdr__has-sub:hover .hdr__sub, .hdr--e .hdr__has-sub:focus-within .hdr__sub { display:block; }
.hdr--e .hdr__sub { position:absolute; top:100%; left:50%; transform:translateX(-50%); min-width:160px; list-style:none; margin:6px 0 0; padding:6px 0; background:var(--c-header-bg); border:1px solid var(--c-border-chrome); border-radius:12px; box-shadow:var(--shadow); display:none; z-index:60; }
.hdr--e .hdr__sub a { display:flex; align-items:center; gap:8px; padding:10px 16px; font-size:14px; color:var(--c-header-text); font-weight:500; }
.hdr--e .hdr__sub a:hover { color:var(--c-accent); background:rgba(255,255,255,.04); text-decoration:none; }
.hdr--e .hdr__cta { display:flex; gap:10px; margin-left:auto; }
.hdr--e .hdr__row--nav { max-width:var(--container); margin:0 auto 10px; padding:0 20px; }
.hdr--e .hdr__row--nav .hdr__nav { background:rgba(255,255,255,.05); border-radius:999px; padding:4px 14px; }
.hdr--e .hdr__nav-list { list-style:none; margin:0; padding:0; display:flex; gap:2px; align-items:center; flex-wrap:wrap; }
.hdr--e .hdr__nav-list > li > a { display:inline-flex; align-items:center; gap:6px; padding:10px 14px; font-weight:600; font-size:13px; color:var(--c-header-text); border-radius:999px; white-space:nowrap; }
.hdr--e .hdr__nav-list > li > a.is-active, .hdr--e .hdr__nav-list > li > a:hover { background:rgba(255,255,255,.06); color:var(--c-accent); text-decoration:none; }
.hdr--e .hdr__nav-icon { display:inline-flex; align-items:center; color:var(--c-accent); }
.hdr--e .hdr__nav-icon svg { width:16px; height:16px; }
.hdr--e .hdr__nav-list > li > a:hover .hdr__nav-icon { color:var(--c-header-text); }
.hdr--e .hdr__mobile-list .hdr__nav-icon svg { width:20px; height:20px; }
.hdr--e .hdr__mobile-cta { display:flex; gap:10px; padding-top:12px; border-top:1px solid var(--c-border-chrome); margin-top:12px; }
.hdr--e .hdr__mobile-cta .btn { flex:1; }
.hdr--e .hdr__mobile-list a { display:inline-flex; align-items:center; gap:10px; }

/* Header E mobile */
@media (max-width: 720px) {
  .hdr--e .hdr__row--nav { display:none; }
  .hdr--e .hdr__cta { display:none; }
  .hdr--e .hdr__burger { display:flex; margin-left:auto; width:44px; height:44px; background:var(--c-primary); border-radius:10px; }
  .hdr--e .hdr__burger span { background:#fff; }
  .hdr--e .hdr__lang-switch { margin:0 0 0 auto; }
  .hdr--e .hdr__lang-switch > a { padding:6px 12px; }
}

/* Footer F — Logo + accent line, 3-col (desc/info/menu),
   social-left + payments-right row, responsible row,
   centered legal block, mobile sticky download bar */

/* ── Top: logo + accent underline ── */
.ftr--f .ftr__top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 20px 0;
}
.ftr--f .ftr__brand img {
  max-width: 140px;
  height: auto;
}
.ftr--f .ftr__accent-line {
  height: 3px;
  background: var(--c-accent);
  margin-top: 16px;
  border-radius: 2px;
}

/* ── 3-column body ── */
.ftr--f .ftr__cols {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 20px 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.ftr--f .ftr__heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-footer-text);
  margin: 0 0 14px;
  letter-spacing: .02em;
}
.ftr--f .ftr__desc {
  color: var(--c-footer-text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.ftr--f .ftr__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.ftr--f .ftr__links a {
  font-size: 14px;
  color: var(--c-footer-text);
}
.ftr--f .ftr__links a:hover {
  color: var(--c-accent);
  text-decoration: none;
}

/* ── Social left + payments right ── */
.ftr--f .ftr__row--social-pay {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.ftr--f .ftr__social {
  display: flex;
  gap: 16px;
}
.ftr--f .ftr__soc {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  color: var(--c-footer-text);
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.ftr--f .ftr__soc:hover {
  color: var(--c-accent);
}
.ftr--f .ftr__payments {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.ftr--f .ftr__payments img {
  height: 28px;
  width: auto;
  opacity: .85;
}
.ftr--f .ftr__payments img:hover {
  opacity: 1;
}

/* ── Responsible badges row (centered) ── */
.ftr--f .ftr__responsible-row {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 20px;
  border-top: 1px solid var(--c-border-chrome);
}
.ftr--f .ftr__responsible {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.ftr--f .ftr__responsible img {
  height: 36px;
  width: auto;
  opacity: .8;
}
.ftr--f .ftr__responsible img:hover {
  opacity: 1;
}

/* ── Legal block (centered, multi-line) ── */
.ftr--f .ftr__legal-block {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 20px 32px;
  border-top: 1px solid var(--c-border-chrome);
  text-align: center;
}
.ftr--f .ftr__legal-text {
  color: var(--c-footer-text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 auto 16px;
  max-width: 900px;
}
.ftr--f .ftr__legal-sub {
  color: var(--c-footer-text-muted);
  font-size: 13px;
  margin: 0 0 8px;
  opacity: .7;
}
.ftr--f .ftr__copy {
  color: var(--c-footer-text-muted);
  font-size: 13px;
  margin: 0;
}


/* ── Responsive: tablet ── */
@media (max-width: 900px) {
  .ftr--f .ftr__cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .ftr--f .ftr__col--desc {
    grid-column: 1 / -1;
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 720px) {
  .ftr--f .ftr__cols {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .ftr--f .ftr__links {
    align-items: center;
  }
  .ftr--f .ftr__heading {
    font-size: 18px;
    opacity: .6;
    font-weight: 400;
  }
  .ftr--f .ftr__row--social-pay {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .ftr--f .ftr__payments {
    justify-content: center;
  }
}

/* ============================================================
   Mobile sticky CTA — 8 full-width variants.
   ALL are full-width bars at the bottom for maximum tap area.
   Only visible below 720px.
   ============================================================ */

.mcta { display:none; }

@media (max-width: 720px) {

  /* ---- Shared base: always full-width, fixed to bottom ---- */
  .mcta { display:block; position:fixed; left:0; right:0; bottom:0; z-index:90; }
  .mcta__btn {
    display:flex; width:100%; align-items:center; justify-content:center; gap:10px;
    padding:16px 20px calc(16px + env(safe-area-inset-bottom));
    border:0; cursor:pointer; font-family:inherit; font-weight:700; font-size:16px;
    text-transform:uppercase; letter-spacing:.03em; text-decoration:none;
  }
  .mcta__btn:hover { filter:brightness(1.05); }
  .mcta__icon { flex-shrink:0; width:20px; height:20px; }
  body { padding-bottom:72px; }

  /* ---- 1. bar-solid: solid accent, sharp edges ---- */
  .mcta--bar-solid .mcta__btn {
    background:var(--c-accent); color:var(--c-accent-text);
    box-shadow:0 -4px 16px rgba(0,0,0,.24);
  }

  /* ---- 2. bar-rounded: rounded top corners ---- */
  .mcta--bar-rounded .mcta__btn {
    background:var(--c-accent); color:var(--c-accent-text);
    border-radius:16px 16px 0 0;
    box-shadow:0 -4px 20px rgba(0,0,0,.28);
  }

  /* ---- 3. bar-gradient: gradient primary → accent ---- */
  .mcta--bar-gradient .mcta__btn {
    background:linear-gradient(135deg, var(--c-primary), var(--c-accent));
    color:#fff;
    box-shadow:0 -4px 16px rgba(0,0,0,.24);
  }

  /* ---- 4. bar-glass: dark glass blur, accent-colored text ---- */
  .mcta--bar-glass .mcta__btn {
    background:rgba(0,0,0,.7); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
    color:var(--c-accent); font-size:15px;
    box-shadow:0 -2px 12px rgba(0,0,0,.3);
  }

  /* ---- 5. bar-accent2: second accent color ---- */
  .mcta--bar-accent2 .mcta__btn {
    background:var(--c-accent-2); color:var(--c-accent-2-text);
    box-shadow:0 -4px 16px rgba(0,0,0,.24);
  }

  /* ---- 6. bar-split: icon circle on left + solid bar ---- */
  .mcta--bar-split .mcta__btn {
    background:var(--c-accent); color:var(--c-accent-text);
    box-shadow:0 -4px 16px rgba(0,0,0,.24);
    position:relative; padding-left:56px;
  }
  .mcta--bar-split .mcta__icon {
    position:absolute; left:14px; top:50%; transform:translateY(-50%);
    width:36px; height:36px; padding:8px;
    background:rgba(0,0,0,.15); border-radius:50%;
  }

  /* ---- 7. bar-bold: extra tall, large text ---- */
  .mcta--bar-bold .mcta__btn {
    background:var(--c-accent); color:var(--c-accent-text);
    padding:20px 20px calc(20px + env(safe-area-inset-bottom));
    font-size:18px; letter-spacing:.04em;
    box-shadow:0 -6px 20px rgba(0,0,0,.3);
  }
  body:has(.mcta--bar-bold) { padding-bottom:84px; }

}

/* ============================================================
   Scroll-to-top button — 6 visual variants.
   Hidden by default, shown via JS after scrolling 400px.
   ============================================================ */

.stt {
  position:fixed; bottom:24px; right:24px; z-index:80;
  display:flex; align-items:center; justify-content:center;
  border:0; cursor:pointer; font-family:inherit;
  transition:opacity .2s ease, transform .2s ease;
  opacity:0; pointer-events:none;
}
.stt[hidden] { display:flex; } /* keep in DOM but invisible via opacity */
.stt.is-visible { opacity:1; pointer-events:auto; }
.stt:hover { transform:translateY(-2px); }
.stt__icon { flex-shrink:0; }

/* 1. circle — solid accent */
.stt--circle {
  width:48px; height:48px; border-radius:50%;
  background:var(--c-accent); color:var(--c-accent-text);
  box-shadow:0 4px 14px rgba(0,0,0,.25);
}

/* 2. circle-ghost — border only */
.stt--circle-ghost {
  width:48px; height:48px; border-radius:50%;
  background:var(--c-bg-alt); border:2px solid var(--c-accent);
  box-shadow:0 4px 14px rgba(0,0,0,.15);
}

/* 3. square — rounded square, accent */
.stt--square {
  width:46px; height:46px; border-radius:12px;
  background:var(--c-accent); color:var(--c-accent-text);
  box-shadow:0 4px 14px rgba(0,0,0,.25);
}

/* 4. square-glass — glass blur */
.stt--square-glass {
  width:46px; height:46px; border-radius:12px;
  background:rgba(0,0,0,.5); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  border:1px solid var(--c-border-chrome);
  box-shadow:0 4px 14px rgba(0,0,0,.2);
}
.stt--square-glass .stt__icon { transform:rotate(90deg); }

/* 5. pill — wide with text */
.stt--pill {
  gap:6px; padding:10px 18px; border-radius:999px;
  background:var(--c-accent); color:var(--c-accent-text);
  font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em;
  box-shadow:0 4px 14px rgba(0,0,0,.25);
}

/* 6. circle-shadow — accent circle with glow */
.stt--circle-shadow {
  width:48px; height:48px; border-radius:50%;
  background:var(--c-accent); color:var(--c-accent-text);
  box-shadow:0 0 24px var(--c-accent), 0 4px 14px rgba(0,0,0,.25);
}

/* Mobile: move above mobile CTA bar if present */
@media (max-width: 720px) {
  .stt { bottom:84px; right:16px; }
  .stt--circle, .stt--circle-ghost, .stt--circle-shadow { width:42px; height:42px; }
  .stt--square, .stt--square-glass { width:40px; height:40px; }
  .stt--pill { padding:8px 14px; font-size:11px; }
}
