/*
Theme Name: royce
Description: Starter theme for business sites
Version: 6.3
*/

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('fonts/space-grotesk-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('fonts/space-grotesk-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --color-primary: hsl(184, 72%, 42%);
    --color-primary-dark: hsl(184, 72%, 27%);
    --color-primary-light: hsl(184, 52%, 85%);
    --color-accent: hsl(214, 72%, 52%);
    --color-accent-hover: hsl(214, 72%, 47%);
    --color-bg: #ffffff;
    --color-bg-alt: #f7f8fa;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-border: #e2e2e2;
    --color-card: #ffffff;
    --font-main: 'Space Grotesk', 'Arial Black', sans-serif;
    --font-head: 'Space Grotesk', 'Arial Black', sans-serif;
    --radius: 0;
    --shadow: 0 1px 0 rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.05);
    --shadow-hover: 0 2px 6px rgba(0,0,0,0.10);
    --border-w: 3px;
    --container: 1200px;
    --gutter: 20px;
    --transition: 0.25s ease;
    /* Cross-set CSS variable aliases */
    --clr-main: var(--color-primary);
    --clr-main-dark: var(--color-primary-dark);
    --clr-main-light: var(--color-primary-light);
    --clr-accent: var(--color-accent);
    --clr-accent-hover: var(--color-accent-hover);
    --clr-surface: var(--color-bg);
    --clr-surface-alt: var(--color-bg-alt);
    --clr-body: var(--color-text);
    --clr-body-light: var(--color-text-light);
    --clr-border: var(--color-border);
    --clr-card: var(--color-card);
    --type-body: var(--font-main);
    --type-heading: var(--font-head);
    --brand-color: var(--color-primary);
    --brand-dark: var(--color-primary-dark);
    --brand-light: var(--color-primary-light);
    --accent-color: var(--color-accent);
    --accent-hover: var(--color-accent-hover);
    --bg-main: var(--color-bg);
    --bg-alt: var(--color-bg-alt);
    --text-main: var(--color-text);
    --text-muted: var(--color-text-light);
    --border-color: var(--color-border);
    --card-bg: var(--color-card);
    --ff-body: var(--font-main);
    --ff-heading: var(--font-head);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p, li, td, th, a, span, div { overflow-wrap: break-word; word-break: break-word; }
/* Guard: off-screen decorative/animation content (marquee tracks, hero glows, wide nav)
   must never create page-level horizontal scroll on narrow screens. clip (not hidden)
   keeps position:sticky working and doesn't create a scroll container. */
html { overflow-x: clip; }

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    text-wrap: balance;
}
h1 { font-size: clamp(2.18rem, 4.4vw + 0.87rem, 4.09rem); }
h2 { font-size: clamp(1.53rem, 3.1vw + 0.61rem, 2.81rem); }
h3 { font-size: clamp(1.23rem, 1.6vw + 0.49rem, 1.61rem); }
h4 { font-size: clamp(1.01rem, 1.2vw + 0.40rem, 1.26rem); }
h5 { font-size: clamp(0.93rem, 1.0vw + 0.37rem, 1.08rem); }
h6 { font-size: clamp(0.84rem, 0.8vw + 0.34rem, 0.99rem); }

p { margin-bottom: 1rem; }

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }

/* === Layout === */
.bl-4457e1f {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* === Section wrapper === */
.lay-form-1697462 {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.lay-form-1697462 > .bl-4457e1f > h2 { text-align: center; margin-bottom: 0.5rem; }
.lay-form-1697462 > .bl-4457e1f > .sec-intro { margin-bottom: 2rem; }

/* === Background alternation for dense feel === */
/* Specificity intentionally low — :where() resets to 0 so section classes always win */
:where(main) > :where(section):nth-child(even) { background: var(--color-bg-alt); }
:where(main) > :where(section):nth-child(odd) { background: var(--color-bg); }

/* === Section subtitle helper === */
.sec-intro {
    text-align: center;
    color: var(--color-text-light);
    max-width: 640px;
    margin: -0.25rem auto 1.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* === Section padding (base for content sections) === */
main > section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }

/* === Top Bar === */
.mn-c095e {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 6px 0;
}
.mn-c095e .bl-4457e1f { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.mn-c095e a { color: rgba(255,255,255,0.85); }
.mn-c095e a:hover { color: #fff; }

/* === Header === */
.mod-hub-df60 {
    background: var(--color-primary-dark);
    color: #fff;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.mod-hub-df60 .bl-4457e1f { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.mod-hub-df60__brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; min-width: 0; }
.mod-hub-df60__logo { max-height: 44px; width: auto; }
.mod-hub-df60__brand img { max-height: 44px; width: auto; height: auto; } /* cap any opt-in raster logo (no oversized custom-logo) */
.mod-hub-df60__brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #fff; overflow-wrap: break-word; word-break: break-word; }
.mod-hub-df60__row-brand .mod-hub-df60__brand-name { color: var(--color-text); }
/* === Brand monogram (CSS mark — no raster, header-foreground-aware) === */
.mod-hub-df60__mono { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex: 0 0 auto; font-family: var(--font-head); font-weight: 800; font-size: calc(44px * 0.46); line-height: 1; letter-spacing: -0.02em; color: #fff; }
/* solid shapes — accent chip + inherited white glyph (mirrors the proven __cta colours, legible on every header) */
.mod-hub-df60__mono--rounded { background: var(--color-accent); border-radius: 9px; }
.mod-hub-df60__mono--circle { background: var(--color-accent); border-radius: 50%; }
.mod-hub-df60__mono--squircle { background: var(--color-accent); border-radius: 32% / 42%; }
.mod-hub-df60__mono--square { background: var(--color-accent); border-radius: 3px; }
.mod-hub-df60__mono--hex { background: var(--color-accent); clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%); }
/* outline shapes — currentColor, transparent (flip with the header text colour) */
.mod-hub-df60__mono--ring { border: 2px solid currentColor; border-radius: 50%; }
.mod-hub-df60__mono--outline { border: 2px solid currentColor; border-radius: 9px; }
.mod-hub-df60--white .mod-hub-df60__mono--ring, .mod-hub-df60--white .mod-hub-df60__mono--outline,
.mod-hub-df60__row-brand .mod-hub-df60__mono--ring, .mod-hub-df60__row-brand .mod-hub-df60__mono--outline { color: var(--color-text); }
/* wordmark accent treatments — small brand-colour pops */
.mod-hub-df60__brand-name--dot::after { content: '.'; color: var(--color-accent); }
.mod-hub-df60__brand-name--underline { border-bottom: 2px solid var(--color-accent); padding-bottom: 1px; }
.mod-hub-df60__brand-name--accent-first::first-letter { color: var(--color-accent); }
.mod-hub-df60__brand-name--bracket::before { content: '['; color: var(--color-accent); margin-right: 2px; }
.mod-hub-df60__brand-name--bracket::after { content: ']'; color: var(--color-accent); margin-left: 2px; }
.mod-hub-df60__nav { display: flex; gap: 0; list-style: none; align-items: center; }
.mod-hub-df60__nav li { display: flex; align-items: center; list-style: none; }
.mod-hub-df60__nav a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.95rem; white-space: nowrap; }
.mod-hub-df60__nav a:hover { color: #fff; }
.mod-hub-df60__nav a.current-menu-item { opacity: 1; color: #fff; }

.mod-hub-df60__nav li + li::before { content: '|'; margin: 0 0.6rem; opacity: 0.4; }

.mod-hub-df60__nav > a + a { margin-left: calc(0.6rem * 2); }

.mod-hub-df60__actions { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
.mod-hub-df60__phone a { color: #fff; font-weight: 600; font-size: 1.05rem; white-space: nowrap; }
.mod-hub-df60__phone a:hover { color: var(--color-accent); }
.mod-hub-df60__cta {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
}
.mod-hub-df60__cta:hover { background: var(--color-accent-hover); color: #fff; transform: translateY(-1px); }
.mod-hub-df60__burger { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 4px 8px; }

/* === Header white variant (portal / hh.ru style) === */
.mod-hub-df60--white { background: var(--color-bg); color: var(--color-text); border-bottom: 1px solid var(--color-border); box-shadow: none; }
.mod-hub-df60--white .mod-hub-df60__brand-name { color: var(--color-text); }
.mod-hub-df60--white .mod-hub-df60__nav a { color: var(--color-text); opacity: 0.75; }
.mod-hub-df60--white .mod-hub-df60__nav a:hover { color: var(--color-primary); opacity: 1; }
.mod-hub-df60--white .mod-hub-df60__phone a { color: var(--color-text); }
.mod-hub-df60--white .mod-hub-df60__burger { color: var(--color-text); }

/* === Primary nav submenu (dropdown navMode) === */
.mod-hub-df60__nav li { position: relative; }
.mod-hub-df60__nav .sub-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 200px; background: var(--color-bg, #fff); border: 1px solid var(--color-border, #e5e5e5); box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-radius: 4px; padding: 0.5rem 0; z-index: 100; list-style: none; }
/* reveal on hover AND keyboard focus (WCAG); caret affordance only on items that have children */
.mod-hub-df60__nav li:hover > .sub-menu, .mod-hub-df60__nav li:focus-within > .sub-menu { display: block; }
.mod-hub-df60__nav .menu-item-has-children > a::after { content: '\00a0\25be'; font-size: 0.7em; opacity: 0.65; }
.mod-hub-df60__nav .sub-menu li { max-width: none; }
.mod-hub-df60__nav .sub-menu a { display: block; padding: 0.4rem 1rem; color: var(--color-text, #333); font-size: 0.88rem; white-space: nowrap; }
.mod-hub-df60__nav .sub-menu a:hover { background: var(--color-bg-alt, #f5f5f5); color: var(--color-primary); }

/* === Secondary Nav === */
.mod-hub-df60__sec-nav {
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    padding: 0.4rem 0;
    font-size: 0.9rem;
}
.mod-hub-df60__sec-links { display: flex; gap: 1.25rem; list-style: none; flex-wrap: wrap; justify-content: center; }
.mod-hub-df60__sec-links li { list-style: none; max-width: 220px; }
.mod-hub-df60__sec-links a { color: var(--color-text); font-weight: 500; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.3; }
.mod-hub-df60__sec-links a:hover { color: var(--color-primary); }
.mod-hub-df60__sec-nav--inline-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 0.3rem 0; scrollbar-width: none; -ms-overflow-style: none; }
.mod-hub-df60__sec-nav--inline-scroll::-webkit-scrollbar { display: none; }
.mod-hub-df60__sec-nav--inline-scroll .mod-hub-df60__sec-links { flex-wrap: nowrap; gap: 0; justify-content: flex-start; font-size: 0.78rem; }
.mod-hub-df60__sec-nav--inline-scroll .mod-hub-df60__sec-links li { max-width: none; white-space: nowrap; }
.mod-hub-df60__sec-nav--inline-scroll .mod-hub-df60__sec-links li + li::before { content: '|'; color: var(--color-border); margin: 0 0.6rem; font-weight: 300; }
.mod-hub-df60__sec-nav--inline-scroll .mod-hub-df60__sec-links a { display: inline; -webkit-line-clamp: unset; font-weight: 400; font-size: 0.78rem; }

/* === Header: agency-dark (ingest wpnew.ru — 2-tier dark, accent = --color-primary) === */
.mod-hub-df60--agency-dark { background: #181818; color: #fff; }
.mod-hub-df60--agency-dark .mod-hub-df60__row-brand > .bl-4457e1f { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1rem 0; }
.mod-hub-df60--agency-dark .mod-hub-df60__brand-group { display: flex; align-items: center; gap: 1rem; min-width: 0; }
.mod-hub-df60--agency-dark .mod-hub-df60__brand, .mod-hub-df60--agency-dark .mod-hub-df60__brand * { color: #fff; }
.mod-hub-df60--agency-dark .mod-hub-df60__tagline { font-size: 0.78rem; color: #9a9a9a; max-width: 230px; line-height: 1.35; border-left: 1px solid rgba(255,255,255,0.16); padding-left: 1rem; }
.mod-hub-df60--agency-dark .mod-hub-df60__actions { display: flex; align-items: center; gap: 1.4rem; flex-shrink: 0; }
.mod-hub-df60--agency-dark .mod-hub-df60__phone a { color: #fff; font-weight: 600; font-size: 1.05rem; }
.mod-hub-df60--agency-dark .mod-hub-df60__cta { color: #fff; font-weight: 700; background: none; padding: 0; border: 0; }
.mod-hub-df60--agency-dark .mod-hub-df60__cta::before { content: '+ '; color: var(--color-primary); }
.mod-hub-df60--agency-dark .mod-hub-df60__row-nav { border-top: 1px solid rgba(255,255,255,0.08); }
.mod-hub-df60--agency-dark .mod-hub-df60__row-nav > .bl-4457e1f { padding: 0; }
.mod-hub-df60--agency-dark .mod-hub-df60__nav, .mod-hub-df60--agency-dark .mod-hub-df60__nav ul { display: flex; align-items: center; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.mod-hub-df60--agency-dark .mod-hub-df60__nav a { color: #e6e6e6; display: block; padding: 0.85rem 0; font-size: 0.9rem; }
.mod-hub-df60--agency-dark .mod-hub-df60__nav a:hover { color: var(--color-primary); }
.mod-hub-df60--agency-dark .mod-hub-df60__burger { color: #fff; }

/* === Footer: agency-dark (ingest wpnew.ru — dark 4-col + newsletter band) === */
.lay-content-37adbe.lay-content-37adbe--agency-dark { background: #181818; color: #cfcfcf; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__main { background: #181818; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__news { background: #1f1f1f; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__news > .bl-4457e1f { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding: 2.5rem 0; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__news-head h2 { color: #fff; font-size: 1.6rem; margin: 0 0 0.4rem; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__news-head p { color: #9a9a9a; margin: 0; max-width: 460px; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__news-form { display: flex; gap: 0.75rem; flex: 1; min-width: 280px; max-width: 460px; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__news-form input { flex: 1; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 0.6rem 0.2rem; font-size: 1rem; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__news-form input::placeholder { color: #8a8a8a; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__news-form button { background: var(--color-primary); color: #fff; border: 0; border-radius: var(--radius); padding: 0.7rem 1.6rem; font-weight: 700; cursor: pointer; white-space: nowrap; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__main { padding: 3rem 0; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__grid { display: grid; gap: 2rem; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__col h3 { color: #fff; font-size: 1rem; margin: 0 0 1rem; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__nav { display: flex; flex-direction: column; gap: 0.6rem; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__col a, .lay-content-37adbe--agency-dark .lay-content-37adbe__fphone, .lay-content-37adbe--agency-dark .lay-content-37adbe__femail { color: #b7b7b7; display: block; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__col a:hover { color: var(--color-primary); }
.lay-content-37adbe--agency-dark .lay-content-37adbe__fphone { color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.4rem; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__femail { margin-bottom: 1rem; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__social { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__social a { color: #b7b7b7; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__social a:hover { color: var(--color-primary); }
.lay-content-37adbe--agency-dark .lay-content-37adbe__bottom { border-top: 1px solid rgba(255,255,255,0.08); background: #141414; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__bottom > .bl-4457e1f { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding: 1.5rem 0; font-size: 0.85rem; color: #8a8a8a; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__blogo, .lay-content-37adbe--agency-dark .lay-content-37adbe__blogo * { color: #fff; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__legal { display: flex; gap: 1rem; flex-wrap: wrap; margin-left: auto; }
.lay-content-37adbe--agency-dark .lay-content-37adbe__legal a { color: #8a8a8a; }
@media (max-width: 860px) { .lay-content-37adbe--agency-dark .lay-content-37adbe__grid { grid-template-columns: 1fr 1fr !important; } .mod-hub-df60--agency-dark .mod-hub-df60__tagline { display: none; } }
@media (max-width: 520px) { .lay-content-37adbe--agency-dark .lay-content-37adbe__grid { grid-template-columns: 1fr !important; } }

/* === Header: accent-bar (ingest fl.ru — solid accent bar, white nav, light CTA) === */
.mod-hub-df60--accent-bar { background: var(--color-primary); color: #fff; }
.mod-hub-df60--accent-bar > .bl-4457e1f { display: flex; align-items: center; gap: 2rem; }
.mod-hub-df60--accent-bar .mod-hub-df60__brand, .mod-hub-df60--accent-bar .mod-hub-df60__brand * { color: #fff; }
.mod-hub-df60--accent-bar .mod-hub-df60__nav { display: flex; align-items: center; gap: 1.5rem; flex: 1 1 auto; flex-wrap: wrap; }
.mod-hub-df60--accent-bar .mod-hub-df60__nav a { color: rgba(255,255,255,0.92); font-weight: 500; }
.mod-hub-df60--accent-bar .mod-hub-df60__nav a:hover { color: #fff; }
.mod-hub-df60--accent-bar .mod-hub-df60__actions { display: flex; align-items: center; gap: 1.25rem; margin-left: auto; }
.mod-hub-df60--accent-bar .mod-hub-df60__phone a { color: #fff; font-weight: 600; }
.mod-hub-df60--accent-bar .mod-hub-df60__cta { background: #fff; color: var(--color-primary); border-radius: var(--radius); padding: 0.5rem 1.25rem; font-weight: 700; }
.mod-hub-df60--accent-bar .mod-hub-df60__cta:hover { background: rgba(255,255,255,0.88); }
@media (max-width: 860px) {
    .mod-hub-df60--accent-bar .mod-hub-df60__nav { display: none; }
    .mod-hub-df60--accent-bar .mod-hub-df60__burger { display: inline-flex; color: #fff; }
}

/* === Footer: light-inline (ingest fl.ru — hairline + one inline row + fine legal) === */
.lay-content-37adbe--light-inline { background: transparent; color: var(--color-text); padding: 2rem 0; }
.lay-content-37adbe--light-inline > .bl-4457e1f { border-top: 1px solid var(--color-border); padding-top: 1.5rem; }
.lay-content-37adbe--light-inline .lay-content-37adbe__inline-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.lay-content-37adbe--light-inline .lay-content-37adbe__inline-left { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; font-size: 0.9rem; }
.lay-content-37adbe--light-inline .lay-content-37adbe__inline-left a { color: var(--color-primary); }
.lay-content-37adbe.lay-content-37adbe--light-inline .lay-content-37adbe__legal { border: 0; margin: 0; padding: 0; }
.lay-content-37adbe--light-inline .lay-content-37adbe__legal a { color: var(--color-primary); }
.lay-content-37adbe--light-inline .lay-content-37adbe__social { display: flex; gap: 0.75rem; }
.lay-content-37adbe--light-inline .lay-content-37adbe__social a { color: var(--color-text); }
.lay-content-37adbe--light-inline .lay-content-37adbe__inline-right { font-weight: 700; color: var(--color-text); }
.lay-content-37adbe--light-inline .lay-content-37adbe__finelegal { margin: 1.25rem 0 0; font-size: 0.75rem; color: var(--color-text-light); line-height: 1.5; }
@media (max-width: 640px) { .lay-content-37adbe--light-inline .lay-content-37adbe__inline-row { flex-direction: column; align-items: flex-start; } }

/* === Header: saas-topline (ingest intellectdialog — white bar, accent top-line, pill CTA) === */
.mod-hub-df60--saas-topline { background: #fff; border-top: 3px solid var(--color-primary); }
.mod-hub-df60--saas-topline > .bl-4457e1f { display: flex; align-items: center; gap: 2.5rem; padding: 0.85rem 0; }
.mod-hub-df60--saas-topline .mod-hub-df60__brand, .mod-hub-df60--saas-topline .mod-hub-df60__brand * { color: var(--color-text); }
.mod-hub-df60--saas-topline .mod-hub-df60__nav { display: flex; align-items: center; gap: 1.75rem; flex: 1 1 auto; flex-wrap: wrap; }
.mod-hub-df60--saas-topline .mod-hub-df60__nav a { color: var(--color-text); font-weight: 500; }
.mod-hub-df60--saas-topline .mod-hub-df60__nav a:hover { color: var(--color-primary); }
.mod-hub-df60--saas-topline .mod-hub-df60__actions { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.mod-hub-df60--saas-topline .mod-hub-df60__phone a { color: var(--color-primary); font-weight: 600; }
.mod-hub-df60--saas-topline .mod-hub-df60__cta { background: var(--color-primary); color: #fff; border-radius: 999px; padding: 0.6rem 1.6rem; font-weight: 700; }
.mod-hub-df60--saas-topline .mod-hub-df60__cta:hover { filter: brightness(1.08); }
@media (max-width: 860px) { .mod-hub-df60--saas-topline .mod-hub-df60__nav { display: none; } .mod-hub-df60--saas-topline .mod-hub-df60__burger { display: inline-flex; color: var(--color-text); } }

/* === Footer: mega-columns (ingest intellectdialog — light multi-column mega, uppercase heads) === */
.lay-content-37adbe--mega-columns { background: var(--color-bg-alt); color: var(--color-text); padding: 3.5rem 0 1.5rem; }
.lay-content-37adbe--mega-columns .lay-content-37adbe__mega-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 2rem 2.5rem; }
.lay-content-37adbe--mega-columns .lay-content-37adbe__col h3 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 1rem; color: var(--color-text); }
.lay-content-37adbe--mega-columns .lay-content-37adbe__nav { display: flex; flex-direction: column; gap: 0.6rem; }
.lay-content-37adbe--mega-columns .lay-content-37adbe__col a { color: var(--color-text-light); }
.lay-content-37adbe--mega-columns .lay-content-37adbe__col a:hover { color: var(--color-primary); }
.lay-content-37adbe--mega-columns .lay-content-37adbe__mega-phone { display: inline-block; font-size: 1.15rem; font-weight: 700; color: var(--color-text) !important; margin-bottom: 0.5rem; }
.lay-content-37adbe--mega-columns .lay-content-37adbe__mega-company { font-size: 0.8rem; color: var(--color-text-light); line-height: 1.5; margin: 0.5rem 0; }
.lay-content-37adbe--mega-columns .lay-content-37adbe__mega-email { display: inline-block; color: var(--color-primary) !important; margin-top: 0.25rem; }
.lay-content-37adbe--mega-columns .lay-content-37adbe__social { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.lay-content-37adbe--mega-columns .lay-content-37adbe__mega-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--color-border); font-size: 0.85rem; }
.lay-content-37adbe.lay-content-37adbe--mega-columns .lay-content-37adbe__legal { border: 0; margin: 0; padding: 0; }
.lay-content-37adbe--mega-columns .lay-content-37adbe__legal a { color: var(--color-text-light); }
.lay-content-37adbe--mega-columns .lay-content-37adbe__finelegal { margin: 1rem 0 0; font-size: 0.72rem; color: var(--color-text-light); line-height: 1.5; }
@media (max-width: 640px) { .lay-content-37adbe--mega-columns .lay-content-37adbe__mega-grid { grid-template-columns: 1fr 1fr; } }

/* === Header: tri-bar (ingest hightime.agency — 3-tier: dark promo / utility / main) === */
.mod-hub-df60--tri-bar .mod-hub-df60__promo { background: #16161a; color: #fff; }
.mod-hub-df60--tri-bar .mod-hub-df60__promo > .bl-4457e1f { display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding: 0.55rem 0; font-size: 0.85rem; flex-wrap: wrap; }
.mod-hub-df60--tri-bar .mod-hub-df60__promo-cta { color: #fff; border: 1px solid rgba(255,255,255,0.4); border-radius: 999px; padding: 0.2rem 0.9rem; font-weight: 600; white-space: nowrap; }
.mod-hub-df60--tri-bar .mod-hub-df60__promo-cta:hover { background: rgba(255,255,255,0.12); }
.mod-hub-df60--tri-bar .mod-hub-df60__utility { background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); }
.mod-hub-df60--tri-bar .mod-hub-df60__utility > .bl-4457e1f { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 0.4rem 0; font-size: 0.85rem; flex-wrap: wrap; }
.mod-hub-df60--tri-bar .mod-hub-df60__util-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.mod-hub-df60--tri-bar .mod-hub-df60__util-nav a { color: var(--color-text-light); }
.mod-hub-df60--tri-bar .mod-hub-df60__util-nav a:hover { color: var(--color-primary); }
.mod-hub-df60--tri-bar .mod-hub-df60__util-phone { color: var(--color-text); font-weight: 600; white-space: nowrap; }
.mod-hub-df60--tri-bar .mod-hub-df60__row-main { background: var(--color-bg); }
.mod-hub-df60--tri-bar .mod-hub-df60__row-main > .bl-4457e1f { display: flex; align-items: center; gap: 2rem; padding: 1rem 0; }
.mod-hub-df60--tri-bar .mod-hub-df60__brand-group { display: flex; flex-direction: column; }
.mod-hub-df60--tri-bar .mod-hub-df60__brand, .mod-hub-df60--tri-bar .mod-hub-df60__brand * { color: var(--color-text); }
.mod-hub-df60--tri-bar .mod-hub-df60__tagline { font-size: 0.75rem; color: var(--color-text-light); }
.mod-hub-df60--tri-bar .mod-hub-df60__nav { display: flex; flex: 1; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.mod-hub-df60--tri-bar .mod-hub-df60__row-main .mod-hub-df60__nav a { color: var(--color-text); }
.mod-hub-df60--tri-bar .mod-hub-df60__row-main .mod-hub-df60__nav a:hover { color: var(--color-primary); }
.mod-hub-df60--tri-bar .mod-hub-df60__actions { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
@media (max-width: 860px) { .mod-hub-df60--tri-bar .mod-hub-df60__nav, .mod-hub-df60--tri-bar .mod-hub-df60__util-nav { display: none; } .mod-hub-df60--tri-bar .mod-hub-df60__burger { display: inline-flex; color: var(--color-text); } }

/* === Footer: brand-columns (ingest hightime.agency — two-tone: light body + dark bottom bar) === */
.lay-content-37adbe--brand-columns .lay-content-37adbe__bc-body { background: var(--color-bg-alt); color: var(--color-text); padding: 3.5rem 0; }
.lay-content-37adbe--brand-columns .lay-content-37adbe__bc-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; }
.lay-content-37adbe--brand-columns .lay-content-37adbe__col h3 { font-size: 0.9rem; font-weight: 700; margin: 0 0 1rem; color: var(--color-text); }
.lay-content-37adbe--brand-columns .lay-content-37adbe__nav { display: flex; flex-direction: column; gap: 0.55rem; }
.lay-content-37adbe--brand-columns .lay-content-37adbe__col a { color: var(--color-text-light); }
.lay-content-37adbe--brand-columns .lay-content-37adbe__col a:hover { color: var(--color-primary); }
.lay-content-37adbe--brand-columns .lay-content-37adbe__bc-logo { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.75rem; color: var(--color-text); }
.lay-content-37adbe--brand-columns .lay-content-37adbe__bc-logo * { color: var(--color-text); }
.lay-content-37adbe--brand-columns .lay-content-37adbe__bc-tagline { font-size: 0.85rem; color: var(--color-text-light); line-height: 1.5; margin: 0 0 1.25rem; max-width: 260px; }
.lay-content-37adbe--brand-columns .lay-content-37adbe__bc-phone { display: block; font-size: 1.2rem; font-weight: 700; color: var(--color-text) !important; margin-bottom: 0.4rem; }
.lay-content-37adbe--brand-columns .lay-content-37adbe__bc-email { display: block; color: var(--color-primary) !important; margin-bottom: 0.6rem; }
.lay-content-37adbe--brand-columns .lay-content-37adbe__bc-company { font-size: 0.78rem; color: var(--color-text-light); line-height: 1.5; margin: 0.4rem 0; }
.lay-content-37adbe--brand-columns .lay-content-37adbe__social { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.lay-content-37adbe--brand-columns .lay-content-37adbe__bc-darkbar { background: #16161a; color: rgba(255,255,255,0.6); }
.lay-content-37adbe--brand-columns .lay-content-37adbe__bc-darkbar > .bl-4457e1f { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding: 1.25rem 0; font-size: 0.82rem; }
.lay-content-37adbe.lay-content-37adbe--brand-columns .lay-content-37adbe__legal { border: 0; margin: 0; padding: 0; }
.lay-content-37adbe--brand-columns .lay-content-37adbe__bc-darkbar a { color: rgba(255,255,255,0.6); }
.lay-content-37adbe--brand-columns .lay-content-37adbe__bc-darkbar a:hover { color: #fff; }
@media (max-width: 860px) { .lay-content-37adbe--brand-columns .lay-content-37adbe__bc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .lay-content-37adbe--brand-columns .lay-content-37adbe__bc-grid { grid-template-columns: 1fr; } }

/* === Inner: single-with-sidebar layout (article + aside: recent posts / categories) === */
.tg-single-side { display: grid; grid-template-columns: minmax(0, 1fr) clamp(240px, 26%, 320px); gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.tg-single-side .tg-single-aside { position: sticky; top: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.tg-single-side .tg-aside-box { background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.25rem 1.4rem; }
.tg-single-side .tg-aside-box h3 { font-size: 0.95rem; margin: 0 0 0.85rem; }
.tg-single-side .tg-aside-box ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.tg-single-side .tg-aside-box a { color: var(--color-text); font-size: 0.9rem; line-height: 1.4; }
.tg-single-side .tg-aside-box a:hover { color: var(--color-primary); }
@media (max-width: 860px) { .tg-single-side { grid-template-columns: 1fr; } .tg-single-side .tg-single-aside { position: static; } }

/* === Hero === */
.bl-wrap-f21c0 {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    padding: 1.5rem 0;
    background-size: cover;
    background-position: center;
}

.bl-wrap-f21c0::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 0;
}
.bl-wrap-f21c0 { position: relative; }
.bl-wrap-f21c0 > .bl-4457e1f { position: relative; z-index: 1; }

.bl-wrap-f21c0--split > .bl-4457e1f { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.bl-wrap-f21c0--split .bl-wrap-f21c0__buttons { justify-content: flex-start; }

/* === Hero: left-aligned variant (2-column with image/decor) === */
.bl-wrap-f21c0--left-aligned > .bl-4457e1f { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; text-align: left; }
.bl-wrap-f21c0--left-aligned .bl-wrap-f21c0__buttons { justify-content: flex-start; }
.bl-wrap-f21c0--left-aligned .bl-wrap-f21c0__subtitle { max-width: 100%; }
.bl-wrap-f21c0__decor { position: relative; min-height: 280px; display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; justify-content: center; }
.bl-wrap-f21c0__decor-card { background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 1rem 1.5rem; display: flex; align-items: center; gap: 0.75rem; max-width: 280px; width: 100%; transition: transform 0.3s ease; }
.bl-wrap-f21c0__decor-card:hover { transform: translateY(-3px); }
.bl-wrap-f21c0__decor-card--1 { align-self: flex-start; margin-left: 10%; }
.bl-wrap-f21c0__decor-card--2 { align-self: flex-end; margin-right: 5%; }
.bl-wrap-f21c0__decor-card--3 { align-self: center; }
.bl-wrap-f21c0__decor-icon { font-size: 1.5rem; }
.bl-wrap-f21c0__decor-text { font-size: 0.95rem; font-weight: 600; color: #fff; }
.bl-wrap-f21c0__decor-num { font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.bl-wrap-f21c0__decor-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); }
/* Light variant decor adjustments */
.bl-wrap-f21c0--light .bl-wrap-f21c0__decor-card { background: var(--color-card, #fff); border-color: var(--color-border); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__decor-text { color: var(--color-text); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__decor-num { color: var(--color-primary); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__decor-label { color: var(--color-text-light); }
.bl-wrap-f21c0__eyebrow { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; margin-bottom: 0.5rem; font-weight: 600; }
.bl-wrap-f21c0__title { color: #fff; font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 0.75rem; }
.bl-wrap-f21c0__subtitle { font-size: 1.1rem; line-height: 1.65; max-width: 640px; opacity: 0.9; margin-bottom: 1rem; }
.bl-wrap-f21c0__subtitle p { color: rgba(255,255,255,0.9); }
.bl-wrap-f21c0__buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; justify-content: center; }
.bl-wrap-f21c0__btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.bl-wrap-f21c0__btn:hover { background: var(--color-accent-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.bl-wrap-f21c0__btn--secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}
.bl-wrap-f21c0__btn--secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; transform: translateY(-2px); }
.bl-wrap-f21c0__image img { border-radius: var(--radius); }

/* === Hero light variant (portal / hh.ru style) === */
.bl-wrap-f21c0--light { background: var(--color-bg); color: var(--color-text); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__title { color: var(--color-text); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__eyebrow { color: var(--color-primary); opacity: 1; }
.bl-wrap-f21c0--light .bl-wrap-f21c0__subtitle { opacity: 1; }
.bl-wrap-f21c0--light .bl-wrap-f21c0__subtitle p { color: var(--color-text-light); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__btn--secondary { border-color: var(--color-border); color: var(--color-text); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__btn--secondary:hover { border-color: var(--color-primary); color: var(--color-primary); background: transparent; }

/* === Hero: lab-light variant (clean-teal pack) — light, left, teal glow, chips, preview card === */
.bl-wrap-f21c0--lab { background: var(--color-bg); overflow: hidden; }
.bl-wrap-f21c0--lab::before { content: ''; position: absolute; top: -30%; right: -8%; width: 48%; height: 150%; background: radial-gradient(circle at 60% 40%, color-mix(in srgb, var(--color-primary) 16%, transparent), transparent 68%); pointer-events: none; z-index: 0; }
.bl-wrap-f21c0--lab > .bl-4457e1f { position: relative; z-index: 1; }
.bl-wrap-f21c0__title-accent { color: var(--color-primary); }
.bl-wrap-f21c0__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.bl-wrap-f21c0__chip { font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.85rem; border-radius: 999px; background: color-mix(in srgb, var(--color-primary) 9%, var(--color-card, #fff)); color: var(--color-primary); border: 1px solid color-mix(in srgb, var(--color-primary) 22%, transparent); }
.bl-wrap-f21c0__preview { display: flex; justify-content: center; align-items: center; }
.bl-wrap-f21c0__pcard { background: var(--color-card, #fff); border: 1px solid var(--color-border); border-radius: calc(var(--radius) + 4px); box-shadow: var(--shadow); padding: 1.25rem 1.4rem; width: 100%; max-width: 340px; }
.bl-wrap-f21c0__pcard-head { display: flex; gap: 0.4rem; margin-bottom: 1rem; }
.bl-wrap-f21c0__pcard-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--color-border); }
.bl-wrap-f21c0__pcard-dot:first-child { background: color-mix(in srgb, var(--color-primary) 75%, #fff); }
.bl-wrap-f21c0__prow { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.7rem 0; border-bottom: 1px solid var(--color-border); }
.bl-wrap-f21c0__prow:last-child { border-bottom: 0; }
.bl-wrap-f21c0__plabel { font-size: 0.9rem; color: var(--color-text); font-weight: 500; }
.bl-wrap-f21c0__pval { font-size: 1.05rem; color: var(--color-primary); font-weight: 800; white-space: nowrap; }
.bl-wrap-f21c0__pbar { height: 9px; border-radius: 5px; background: var(--color-bg-alt); flex: 1; }
.bl-wrap-f21c0__pdot { width: 11px; height: 11px; border-radius: 50%; background: var(--color-primary); flex-shrink: 0; }

/* === Spec-cards section (clean-teal pack — signature data/result cards) === */
.st-67c5f29 { padding: 3.5rem 0; }
.st-67c5f29 h2 { text-align: center; }
.st-67c5f29__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 1.25rem; margin-top: 2rem; }
.st-67c5f29__card { background: var(--color-card, #fff); border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; transition: transform var(--transition), box-shadow var(--transition); }
.st-67c5f29__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.st-67c5f29__row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.4rem; }
.st-67c5f29__title { font-size: 1.05rem; margin: 0; color: var(--color-text); }
.st-67c5f29__value { font-size: 1.6rem; font-weight: 800; color: var(--color-primary); line-height: 1.1; margin-bottom: 0.5rem; }
.st-67c5f29__desc { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.55; margin: 0; }
.st-67c5f29__status { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; padding: 0.2rem 0.6rem; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
.st-67c5f29__status--good { background: #ecfdf5; color: #047857; }
.st-67c5f29__status--warn { background: #fffbeb; color: #b45309; }
.st-67c5f29__status--bad  { background: #fef2f2; color: #b91c1c; }
.st-67c5f29__status--info { background: color-mix(in srgb, var(--color-primary) 12%, #fff); color: var(--color-primary); }

/* === Chip-strip section (clean-teal — "what we cover" pill row) === */
.pnl-card-d72f9e { padding: 2rem 0; }
.pnl-card-d72f9e h2 { text-align: center; }
.pnl-card-d72f9e__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 1rem; }
.pnl-card-d72f9e__chip { font-size: 0.85rem; font-weight: 600; padding: 0.35rem 0.9rem; border-radius: 999px; background: color-mix(in srgb, var(--color-primary) 8%, var(--color-card, #fff)); color: var(--color-primary); border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); }

/* === Advantages: feature-rows variant (clean-teal — teal-circle "why choose us") === */
.wp-body-46d3e1--feature-rows .wp-body-46d3e1__frows { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 1.75rem; margin-top: 2rem; }
.wp-body-46d3e1__frow { display: flex; gap: 1rem; align-items: flex-start; }
.wp-body-46d3e1__fcircle { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--color-primary) 12%, #fff); color: var(--color-primary); font-size: 1.4rem; font-weight: 700; }
.wp-body-46d3e1__fcircle img { width: 24px; height: 24px; object-fit: contain; }
.wp-body-46d3e1__ftext h3 { font-size: 1.05rem; margin: 0 0 0.35rem; color: var(--color-text); }
.wp-body-46d3e1__ftext p { font-size: 0.92rem; color: var(--color-text-light); line-height: 1.55; margin: 0; }

/* === Stats: stat-band variant (clean-teal — teal-circle icon + number + label) === */
.mod-core-18fd5--band .mod-core-18fd5__band { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.mod-core-18fd5__bandcard { background: var(--color-card, #fff); border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem 1.25rem; text-align: center; }
.mod-core-18fd5__bandicon { width: 52px; height: 52px; margin: 0 auto 0.75rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--color-primary) 12%, #fff); color: var(--color-primary); font-size: 1.5rem; line-height: 1; }
.mod-core-18fd5--band .mod-core-18fd5__number { font-size: 2rem; font-weight: 800; color: var(--color-primary); line-height: 1.1; }
.mod-core-18fd5--band .mod-core-18fd5__label { font-size: 0.9rem; color: var(--color-text-light); margin-top: 0.25rem; }

/* === fresh-green: market-hero (centred light hero, green accent phrase, rating) === */
.bl-wrap-f21c0--market { background: var(--color-bg-alt, #f6f6f6); color: var(--color-text); text-align: center; overflow: hidden; }
.bl-wrap-f21c0--market > .bl-4457e1f { position: relative; z-index: 1; max-width: 780px; }
.bl-wrap-f21c0--market .bl-wrap-f21c0__title { color: var(--color-text); }
.bl-wrap-f21c0--market .bl-wrap-f21c0__subtitle { max-width: 620px; margin: 0.5rem auto 0; opacity: 1; color: var(--color-text-light); }
.bl-wrap-f21c0--market .bl-wrap-f21c0__buttons { justify-content: center; }
.bl-wrap-f21c0--market::before, .bl-wrap-f21c0--market::after { content: ''; position: absolute; width: 110px; height: 110px; pointer-events: none; opacity: 0.5; background-image: radial-gradient(color-mix(in srgb, var(--color-primary) 55%, transparent) 1.5px, transparent 1.7px); background-size: 18px 18px; }
.bl-wrap-f21c0--market::before { top: 1.5rem; left: 1.5rem; }
.bl-wrap-f21c0--market::after { bottom: 1.5rem; right: 1.5rem; }
.bl-wrap-f21c0__rating { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.25rem; font-size: 0.95rem; color: var(--color-text-light); }
.bl-wrap-f21c0__rating-stars { color: #ffb63c; letter-spacing: 1px; }
.bl-wrap-f21c0__rating strong { color: var(--color-text); }

/* === fresh-green: offer cards (products --offer) === */
.hd-panel-16b3481--offer .hd-panel-16b3481__offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 1.25rem; margin-top: 2rem; }
.hd-panel-16b3481__offer { background: var(--color-card, #fff); border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.hd-panel-16b3481__offer:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.hd-panel-16b3481__offer-media { position: relative; aspect-ratio: 16 / 10; background: var(--color-bg-alt); overflow: hidden; }
.hd-panel-16b3481__offer-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hd-panel-16b3481__offer-ph { width: 100%; height: 100%; background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 14%, #fff), color-mix(in srgb, var(--color-primary) 4%, #fff)); }
.hd-panel-16b3481__offer-badge { position: absolute; top: 0.6rem; left: 0.6rem; background: var(--color-primary); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 4px; }
.hd-panel-16b3481__offer-body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.hd-panel-16b3481__offer-title { font-size: 1rem; margin: 0; color: var(--color-text); line-height: 1.35; }
.hd-panel-16b3481__offer-rating { font-size: 0.85rem; color: var(--color-text-light); display: flex; align-items: center; gap: 0.3rem; }
.hd-panel-16b3481__offer-rating span { color: #ffb63c; }
.hd-panel-16b3481__offer-rating strong { color: var(--color-text); }
.hd-panel-16b3481__offer-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding-top: 0.4rem; }
.hd-panel-16b3481__offer-price { font-size: 1.15rem; font-weight: 800; color: var(--color-text); }
.hd-panel-16b3481__offer-cta { font-size: 0.85rem; padding: 0.45rem 0.9rem; white-space: nowrap; }

/* === fresh-green: versus (us vs them comparison) === */
.el-view-3fca { padding: 3.5rem 0; }
.el-view-3fca h2 { text-align: center; }
.el-view-3fca__table { max-width: 720px; margin: 2rem auto 0; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.el-view-3fca__row { display: grid; grid-template-columns: 1.7fr 1fr 1fr; align-items: center; gap: 0.5rem; padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--color-border); }
.el-view-3fca__row:last-child { border-bottom: 0; }
.el-view-3fca__row:nth-child(even) { background: var(--color-bg-alt); }
.el-view-3fca__row--head { background: var(--color-primary); }
.el-view-3fca__row--head .el-view-3fca__them, .el-view-3fca__row--head .el-view-3fca__us { color: #fff; font-weight: 700; justify-content: center; }
.el-view-3fca__feat { font-weight: 500; color: var(--color-text); }
.el-view-3fca__them, .el-view-3fca__us { font-size: 0.9rem; color: var(--color-text-light); display: flex; align-items: center; gap: 0.4rem; }
.el-view-3fca__us { color: var(--color-text); font-weight: 500; }
.el-view-3fca__x { color: #f24c4c; font-weight: 800; }
.el-view-3fca__check { color: var(--color-primary); font-weight: 800; }
@media (max-width: 600px) { .el-view-3fca__row { grid-template-columns: 1fr; gap: 0.2rem; } .el-view-3fca__row--head { display: none; } .el-view-3fca__feat { font-weight: 700; } }

/* === fresh-green: arc steps (dashed connectors between numbered circles) === */
.cmp-383b--arc .cmp-383b__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 2rem; margin-top: 2.5rem; }
.cmp-383b--arc .cmp-383b__item { text-align: center; position: relative; background: none; border: 0; box-shadow: none; padding: 0; }
.cmp-383b--arc .cmp-383b__num { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; color: var(--color-primary); background: color-mix(in srgb, var(--color-primary) 12%, #fff); border: 2px solid color-mix(in srgb, var(--color-primary) 35%, transparent); }
.cmp-383b--arc .cmp-383b__item:not(:last-child)::after { content: ''; position: absolute; top: 31px; left: calc(50% + 42px); right: calc(-50% + 42px); border-top: 2px dashed color-mix(in srgb, var(--color-primary) 38%, transparent); }
@media (max-width: 700px) { .cmp-383b--arc .cmp-383b__item:not(:last-child)::after { display: none; } }

/* === Hero: stats-row variant === */
.bl-wrap-f21c0__stats-row { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); }
.bl-wrap-f21c0__stat { text-align: center; }
.bl-wrap-f21c0__stat-value { display: block; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.2; }
.bl-wrap-f21c0__stat-label { font-size: 0.85rem; opacity: 0.75; display: block; margin-top: 0.25rem; }
.bl-wrap-f21c0--light .bl-wrap-f21c0__stats-row { border-top-color: var(--color-border); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__stat-value { color: var(--color-primary); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__stat-label { color: var(--color-text-light); opacity: 1; }

/* === Hero: feature-cards variant === */
.bl-wrap-f21c0__features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; text-align: center; }
.bl-wrap-f21c0__feature-card { background: rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.5rem 1rem; transition: transform var(--transition), box-shadow var(--transition); }
.bl-wrap-f21c0__feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.bl-wrap-f21c0__feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.bl-wrap-f21c0__feature-card h3 { font-size: 1rem; margin: 0 0 0.5rem; color: #fff; }
.bl-wrap-f21c0__feature-card p { font-size: 0.85rem; opacity: 0.8; margin: 0; line-height: 1.5; }
.bl-wrap-f21c0--light .bl-wrap-f21c0__feature-card { background: var(--color-card); border: 1px solid var(--color-border); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__feature-card h3 { color: var(--color-text); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__feature-card p { color: var(--color-text-light); opacity: 1; }

/* === Hero: search-bar variant === */
.bl-wrap-f21c0--search { padding-bottom: 3rem; }
.bl-wrap-f21c0__search-form { display: flex; gap: 0; max-width: 600px; margin: 1.5rem auto 0; border-radius: 0; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.bl-wrap-f21c0__search-input { flex: 1; padding: 14px 20px; border: none; font-size: 1rem; outline: none; background: #fff; color: #333; }
.bl-wrap-f21c0__search-form .bl-wrap-f21c0__btn { border-radius: 0; padding: 14px 28px; }
.bl-wrap-f21c0__search-tags { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.bl-wrap-f21c0__search-tag { display: inline-block; padding: 6px 14px; background: rgba(255,255,255,0.15); color: #fff; border-radius: 20px; font-size: 0.8rem; text-decoration: none; transition: background var(--transition); }
.bl-wrap-f21c0__search-tag:hover { background: rgba(255,255,255,0.3); color: #fff; }
.bl-wrap-f21c0--light .bl-wrap-f21c0__search-input { border: 1px solid var(--color-border); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__search-tag { background: var(--color-card); color: var(--color-text); border: 1px solid var(--color-border); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__search-tag:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* === Hero: two-col-plates variant === */
.bl-wrap-f21c0--plates { background: var(--color-bg-alt); color: var(--color-text); padding: 2.5rem 0; }
.bl-wrap-f21c0__plates-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
.bl-wrap-f21c0__plate {
    background: #fff; border-radius: var(--radius); padding: 2rem;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08); border: 1px solid var(--color-border);
}
.bl-wrap-f21c0__plate h1 { color: var(--color-text); font-size: clamp(1.3rem, 2.5vw, 2rem); }
.bl-wrap-f21c0__plate .bl-wrap-f21c0__subtitle { color: var(--color-text-light); }
.bl-wrap-f21c0__plate--info { display: flex; flex-direction: column; justify-content: center; }
.bl-wrap-f21c0__plate-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.bl-wrap-f21c0__plate-stat { text-align: center; flex: 1; min-width: 80px; }
.bl-wrap-f21c0__plate-stat-val { display: block; font-size: 1.75rem; font-weight: 700; color: var(--color-primary); line-height: 1.2; }
.bl-wrap-f21c0__plate-stat-lbl { display: block; font-size: 0.8rem; color: var(--color-text-light); margin-top: 0.25rem; }
@media (max-width: 768px) {
    .bl-wrap-f21c0__plates-grid { grid-template-columns: 1fr; }
}

/* === Hero: trust-logos variant === */
.bl-wrap-f21c0__trust { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); }
.bl-wrap-f21c0__trust-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.6; margin-bottom: 1rem; }
.bl-wrap-f21c0__trust-logos { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.bl-wrap-f21c0__trust-logos img { max-height: 36px; width: auto; opacity: 0.7; filter: grayscale(1) brightness(2); transition: opacity var(--transition); }
.bl-wrap-f21c0__trust-logos img:hover { opacity: 1; }
.bl-wrap-f21c0--light .bl-wrap-f21c0__trust { border-top-color: var(--color-border); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__trust-logos img { filter: grayscale(1); opacity: 0.5; }
.bl-wrap-f21c0--light .bl-wrap-f21c0__trust-logos img:hover { filter: none; opacity: 1; }

/* === Hero: checklist variant === */
.bl-wrap-f21c0--checklist .bl-wrap-f21c0__check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.bl-wrap-f21c0__check-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.bl-wrap-f21c0__check-list li { padding: 0.5rem 0; font-size: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.bl-wrap-f21c0__check-icon { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: var(--color-accent); color: #fff; border-radius: 50%; font-size: 0.75rem; flex-shrink: 0; }
.bl-wrap-f21c0__check-image img { width: 100%; height: auto; border-radius: var(--radius); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__check-list li { color: var(--color-text); }

/* === Hero: badges-row variant === */
.bl-wrap-f21c0__badges-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.bl-wrap-f21c0__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 10px 18px; background: rgba(255,255,255,0.12); border-radius: 40px; font-size: 0.9rem; font-weight: 500; transition: background var(--transition); }
.bl-wrap-f21c0__badge:hover { background: rgba(255,255,255,0.2); }
.bl-wrap-f21c0__badge-icon { font-size: 1.2rem; }
.bl-wrap-f21c0--light .bl-wrap-f21c0__badge { background: var(--color-card); border: 1px solid var(--color-border); color: var(--color-text); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__badge:hover { border-color: var(--color-primary); }

/* === Hero: saas-metrics variant === */
.bl-wrap-f21c0--saas-metrics > .bl-4457e1f { text-align: left; }
.bl-wrap-f21c0__metrics-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.bl-wrap-f21c0__metrics-text .bl-wrap-f21c0__buttons { justify-content: flex-start; }
.bl-wrap-f21c0__metrics-grid { display: grid; gap: 1rem; }
.bl-wrap-f21c0__metric-card {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius); padding: 1.25rem;
}
.bl-wrap-f21c0__metric-card h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.bl-wrap-f21c0__metric-card p { margin: 0; font-size: 0.9rem; opacity: 0.85; }
.bl-wrap-f21c0__metric-icon {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 0.75rem;
}
.bl-wrap-f21c0__metric-icon--0 { background: hsla(184,72%,42%,0.12); }
.bl-wrap-f21c0__metric-icon--1 { background: hsla(214,72%,50%,0.12); }
.bl-wrap-f21c0__metric-icon--2 { background: hsla(184,72%,85%,0.15); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__metric-card { background: var(--color-card); border-color: var(--color-border); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__metric-card h3 { color: var(--color-text); }
.bl-wrap-f21c0--light .bl-wrap-f21c0__metric-card p { color: var(--color-text-light); }

/* === Stats === */
.mod-core-18fd5 { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.mod-core-18fd5 > .bl-4457e1f > h2 { text-align: center; margin-bottom: 1.5rem; }
.mod-core-18fd5__grid { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; text-align: center; }
.mod-core-18fd5__item { min-width: 120px; }
.mod-core-18fd5__number { font-size: 2.25rem; font-weight: 700; font-family: var(--font-head); color: var(--color-primary); line-height: 1.2; }
.mod-core-18fd5__label { font-size: 0.9rem; color: var(--color-text-light); margin-top: 0.2rem; }

/* Stats variant: cards */
.mod-core-18fd5--cards .mod-core-18fd5__grid { gap: 1.25rem; }
.mod-core-18fd5--cards .mod-core-18fd5__item {
    padding: 1.25rem;
    background: var(--color-card);
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 160px;
    flex: 1;
}

/* Stats variant: bar */
.mod-core-18fd5--bar { padding: 0; }
.mod-core-18fd5__bar {
    display: flex;
    background: var(--color-primary-dark);
    color: #fff;
    padding: 1.25rem 0;
}
.mod-core-18fd5--bar .mod-core-18fd5__item { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 1rem; }
.mod-core-18fd5--bar .mod-core-18fd5__item:last-child { border-right: none; }
.mod-core-18fd5--bar .mod-core-18fd5__number { color: #fff; font-size: 2rem; }
.mod-core-18fd5--bar .mod-core-18fd5__label { color: rgba(255,255,255,0.8); }

/* === Body / Block === */
.box-strip-e12bb { padding: clamp(2rem, 4vw, 3.5rem) 0; }

.lay-outer-c44a97 {
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-card);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.lay-outer-c44a97:hover { box-shadow: var(--shadow-hover); border-color: var(--color-primary-light); transform: translateY(-2px); }
.lay-outer-c44a97__icon { margin-bottom: 0.75rem; }
.lay-outer-c44a97__icon img { width: 48px; height: 48px; }

/* === Advantages === */
.wp-body-46d3e1 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.wp-body-46d3e1 h2 { text-align: center; margin-bottom: 1.5rem; }
.wp-body-46d3e1__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.wp-body-46d3e1__item {
    padding: 1.5rem;
    background: var(--color-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
    text-align: center;
    border: var(--border-w) solid transparent;
}
.wp-body-46d3e1__item:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); border-color: var(--color-primary-light); }
.wp-body-46d3e1__item h3 { margin-top: 0.5rem; }
.wp-body-46d3e1__icon img { width: 48px; height: 48px; margin: 0 auto; }

/* Adv variant: list */
.wp-body-46d3e1--list .wp-body-46d3e1__grid { grid-template-columns: 1fr; gap: 1rem; }
.wp-body-46d3e1--list .wp-body-46d3e1__item { display: flex; gap: 1.25rem; text-align: left; align-items: flex-start; }
.wp-body-46d3e1--list .wp-body-46d3e1__icon { flex-shrink: 0; }
.wp-body-46d3e1--list .wp-body-46d3e1__text p { margin-bottom: 0; }

/* Adv variant: numbered */
.wp-body-46d3e1--numbered .wp-body-46d3e1__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.wp-body-46d3e1--numbered .wp-body-46d3e1__item { display: flex; gap: 1rem; text-align: left; padding: 1.25rem; }
.wp-body-46d3e1__num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: var(--radius);
    font-family: var(--font-head);
}
.wp-body-46d3e1--numbered .wp-body-46d3e1__text p { margin-bottom: 0; }

/* Adv variant: bordered */
.wp-body-46d3e1--bordered .wp-body-46d3e1__item {
    border: var(--border-w) solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    text-align: left;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.wp-body-46d3e1--bordered .wp-body-46d3e1__item:hover { border-left-color: var(--color-accent); }

/* === Tariffs === */
.crd-card-512e10b { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.crd-card-512e10b > .bl-4457e1f > h2 { text-align: center; margin-bottom: 1.5rem; }
.crd-card-512e10b__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.crd-card-512e10b__card {
    padding: 1.75rem;
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
    background: var(--color-card);
}
.crd-card-512e10b__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.crd-card-512e10b__card--highlighted { border-color: var(--color-primary); box-shadow: 0 0 0 2px var(--color-primary-light); position: relative; }
.crd-card-512e10b__badge {
    position: absolute; top: -12px; right: 16px;
    background: #dcfce7; color: #166534;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    padding: 4px 10px; border-radius: 6px; letter-spacing: 0.5px;
}
.crd-card-512e10b__price { font-size: 1.75rem; font-weight: 700; color: var(--color-primary); margin: 0.5rem 0; }
.crd-card-512e10b__features { list-style: none; padding: 0; margin: 0.75rem 0; text-align: left; }
.crd-card-512e10b__features li { padding: 0.35rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.9rem; }

/* Tariff variant: horizontal */
.crd-card-512e10b--horizontal .crd-card-512e10b__grid { display: none; }
.crd-card-512e10b__row {
    display: grid;
    grid-template-columns: 1fr 1.5fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem;
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    background: var(--color-card);
}
.crd-card-512e10b__row--hl { border-color: var(--color-primary); background: var(--color-primary-light); }
.crd-card-512e10b__row-head .crd-card-512e10b__price { font-size: 1.4rem; margin: 0.25rem 0; }
.crd-card-512e10b__row-body .crd-card-512e10b__features { margin: 0; }
.crd-card-512e10b__row-body .crd-card-512e10b__features li { display: inline; }
.crd-card-512e10b__row-body .crd-card-512e10b__features li::after { content: ' \00B7  '; }
.crd-card-512e10b__row-body .crd-card-512e10b__features li:last-child::after { content: ''; }

/* Tariff variant: minimal */
.crd-card-512e10b--minimal .crd-card-512e10b__grid { display: none; }
.crd-card-512e10b__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
}
.crd-card-512e10b--minimal .crd-card-512e10b__price { font-size: 1.25rem; white-space: nowrap; margin: 0; }

/* === Benefits === */
.lay-hub-8665 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.lay-hub-8665 > .bl-4457e1f > h2 { text-align: center; margin-bottom: 1.5rem; }
.lay-hub-8665__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.lay-hub-8665__item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.lay-hub-8665__item h3 { margin-bottom: 0.2rem; }

/* Benefits variant: checklist */
.lay-hub-8665--checklist .lay-hub-8665__grid { display: none; }
.lay-hub-8665__list { max-width: 700px; margin: 0 auto; }
.lay-hub-8665__check-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: flex-start;
}
.lay-hub-8665__check-mark {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    margin-top: 0.1rem;
}
.lay-hub-8665__check-item p { margin: 0.25rem 0 0; color: var(--color-text-light); font-size: 0.9rem; }

/* Benefits variant: icons */
.lay-hub-8665--icons .lay-hub-8665__item { flex-direction: column; text-align: center; align-items: center; }
.lay-hub-8665__icon-big { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }
.lay-hub-8665__icon-big img { width: 56px; height: 56px; }

/* === FAQ === */
.box-strip-e12bb#faq { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.box-strip-e12bb#faq h2, .box-strip-e12bb > .bl-4457e1f > h2 { text-align: center; margin-bottom: 1.5rem; }

/* FAQ variant: grid. min(480px, 100%) so a column never forces a width wider than
   the viewport — a bare minmax(480px,...) overflows horizontally below 480px wide. */
.box-strip-e12bb__faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(480px, 100%), 1fr)); gap: 1rem; }

/* FAQ details/accordion */
details.lay-outer-c44a97 { cursor: pointer; }
details.lay-outer-c44a97 summary { font-weight: 600; }
details.lay-outer-c44a97[open] summary { color: var(--color-primary); }

/* === CTA === */
.pg-be3b8f9 {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: var(--color-primary) !important;
    color: #fff;
    text-align: center;
}
.pg-be3b8f9 h2 { color: #fff; margin-bottom: 0.75rem; }
.pg-be3b8f9 p { color: rgba(255,255,255,0.9); max-width: 600px; margin-left: auto; margin-right: auto; }
.pg-be3b8f9 .btn { background: #fff; color: var(--color-primary-dark); border-color: #fff; margin-top: 0.75rem; }
.pg-be3b8f9 .btn:hover { background: rgba(255,255,255,0.9); }

/* CTA variant: card */
.pg-be3b8f9--card-wrap { background: var(--color-bg-alt) !important; }
.pg-be3b8f9__card {
    max-width: 640px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--color-primary);
    border-radius: var(--radius);
    text-align: center;
}
.pg-be3b8f9__card h2 { color: #fff; }
.pg-be3b8f9__card p { color: rgba(255,255,255,0.9); }
.pg-be3b8f9__card .btn { background: #fff; color: var(--color-primary-dark); border-color: #fff; }

/* CTA variant: split */
.pg-be3b8f9--split { text-align: left; }
.pg-be3b8f9__split-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: center; }
.pg-be3b8f9__split-action { text-align: center; }

/* === Products === */
.hd-panel-16b3481 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.hd-panel-16b3481 > .bl-4457e1f > h2 { text-align: center; margin-bottom: 1.5rem; }
.hd-panel-16b3481__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.hd-panel-16b3481__card {
    border-radius: var(--radius);
    overflow: hidden;
    border: var(--border-w) solid var(--color-border);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
    background: var(--color-card);
}
.hd-panel-16b3481__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.hd-panel-16b3481__card-body { padding: 1.25rem; }

/* Products variant: list */
.hd-panel-16b3481--list .hd-panel-16b3481__grid { display: none; }
.hd-panel-16b3481__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}
.hd-panel-16b3481__list-item:last-child { border-bottom: none; }
.hd-panel-16b3481__list-item p { margin: 0; }

/* Products variant: inline */
.hd-panel-16b3481--inline .hd-panel-16b3481__grid { display: none; }
.hd-panel-16b3481__inline-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hd-panel-16b3481__inline-item {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-card);
    transition: border-color var(--transition);
    color: var(--color-text);
    flex: 1 1 auto;
    min-width: 200px;
}
.hd-panel-16b3481__inline-item:hover { border-color: var(--color-primary); }
.hd-panel-16b3481__inline-item span { font-size: 0.85rem; color: var(--color-text-light); margin-top: 0.25rem; }

/* === Steps === */
.cmp-383b { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.cmp-383b > .bl-4457e1f > h2 { text-align: center; margin-bottom: 1.5rem; }
.cmp-383b__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; counter-reset: step; position: relative; }
.cmp-383b__item { text-align: center; position: relative; }
.cmp-383b__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    font-family: var(--font-head);
}
.cmp-383b__item h3 { font-size: 1.1rem; }
.cmp-383b__item p { font-size: 0.9rem; color: var(--color-text-light); margin: 0; }
/* Connector line between steps */
.cmp-383b__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(50% + 28px);
    width: calc(100% + 1.25rem - 56px);
    height: 2px;
    background: var(--color-border);
    z-index: 1;
}

/* Transparent header: push hero content below header */
.mod-hub-df60--transparent ~ main > .bl-wrap-f21c0 { padding-top: calc(80px + 2rem); }
/* Transparent header on non-hero pages (single, subpages): push first child down */
.mod-hub-df60--transparent ~ main > .bl-4457e1f:first-child { padding-top: calc(80px + 2rem); }
.mod-hub-df60--transparent ~ main > .box-strip-e12bb:first-child { padding-top: calc(80px + 2rem); }

/* === Testimonials === */
.mod-rail-0008 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.mod-rail-0008 > .bl-4457e1f > h2 { text-align: center; margin-bottom: 1.5rem; }
.mod-rail-0008__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.mod-rail-0008__card {
    padding: 1.5rem;
    background: var(--color-card);
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.mod-rail-0008__quote {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    padding: 0;
    border: none;
    color: var(--color-text);
    position: relative;
    padding-left: 1.5rem;
}
.mod-rail-0008__quote::before { content: '\201C'; font-size: 2.5rem; color: var(--color-primary-light); position: absolute; top: -0.5rem; left: 0; font-family: serif; line-height: 1; }
.mod-rail-0008__author { display: flex; gap: 0.75rem; align-items: center; }
.mod-rail-0008__avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.mod-rail-0008__avatar img { width: 100%; height: 100%; object-fit: cover; }
.mod-rail-0008__position { display: block; color: var(--color-text-light); font-size: 0.9rem; }
.mod-rail-0008__cite { display: block; font-style: normal; margin-top: 0.75rem; color: var(--color-text-light); }
.mod-rail-0008__cite strong { color: var(--color-text); }
.mod-rail-0008__meta { color: var(--color-text-light); font-size: 0.9rem; }
.mod-rail-0008__meta strong { color: var(--color-text); }

/* -- test-bubble -- */
.mod-rail-0008--bubble .mod-rail-0008__bubble {
    background: var(--color-card);
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    position: relative;
    margin-bottom: 1rem;
}
.mod-rail-0008--bubble .mod-rail-0008__bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 24px;
    width: 0; height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--color-card);
}
.mod-rail-0008--bubble .mod-rail-0008__bubble::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 23px;
    width: 0; height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid var(--color-border);
}
.mod-rail-0008--bubble .mod-rail-0008__card { background: none; border: none; box-shadow: none; padding: 0; }
.mod-rail-0008--bubble .mod-rail-0008__quote { padding-left: 0; margin: 0; }
.mod-rail-0008--bubble .mod-rail-0008__quote::before { display: none; }
.mod-rail-0008--bubble .mod-rail-0008__author { padding-left: 0.5rem; }

/* -- test-minimal -- */
.mod-rail-0008--minimal { text-align: center; }
.mod-rail-0008--minimal .bl-4457e1f > h2 { margin-bottom: 2rem; }
.mod-rail-0008--minimal .mod-rail-0008__list { max-width: 700px; margin: 0 auto; }
.mod-rail-0008--minimal .mod-rail-0008__item { padding: 2rem 0; border-bottom: 1px solid var(--color-border); }
.mod-rail-0008--minimal .mod-rail-0008__item:last-child { border-bottom: none; }
.mod-rail-0008--minimal .mod-rail-0008__quote { font-size: 1.1rem; padding-left: 0; }
.mod-rail-0008--minimal .mod-rail-0008__quote::before { display: none; }

/* -- test-featured -- */
.mod-rail-0008--featured .mod-rail-0008__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.mod-rail-0008--featured .mod-rail-0008__card--feat {
    grid-column: 1 / -1;
    border-left: 4px solid var(--color-primary);
    background: color-mix(in srgb, var(--color-primary) 5%, var(--color-card));
}
.mod-rail-0008--featured .mod-rail-0008__card--feat .mod-rail-0008__avatar { width: 72px; height: 72px; }

/* -- test-horizontal -- */
.mod-rail-0008--horizontal .mod-rail-0008__row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--color-card);
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.mod-rail-0008--horizontal .mod-rail-0008__row:last-child { margin-bottom: 0; }
.mod-rail-0008--horizontal .mod-rail-0008__avatar { width: 64px; height: 64px; border-radius: 8px; flex-shrink: 0; overflow: hidden; }
.mod-rail-0008--horizontal .mod-rail-0008__avatar img { border-radius: 8px; }
.mod-rail-0008--horizontal .mod-rail-0008__content { flex: 1; }
.mod-rail-0008--horizontal .mod-rail-0008__quote { padding-left: 0; margin-bottom: 0.75rem; }
.mod-rail-0008--horizontal .mod-rail-0008__quote::before { display: none; }

/* -- test-accent -- */
.mod-rail-0008--accent .mod-rail-0008__card {
    border-left: 3px solid var(--color-primary);
    background: color-mix(in srgb, var(--color-primary) 4%, var(--color-card));
    position: relative;
    overflow: hidden;
}
.mod-rail-0008--accent .mod-rail-0008__card::after {
    content: '\201D';
    position: absolute;
    top: -0.5rem;
    right: 0.5rem;
    font-size: 6rem;
    font-family: serif;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.07;
    pointer-events: none;
}
.mod-rail-0008--accent .mod-rail-0008__quote::before { display: none; }
.mod-rail-0008--accent .mod-rail-0008__quote { padding-left: 0; }

/* -- test-large-avatar -- */
.mod-rail-0008--lg-avatar .mod-rail-0008__card { text-align: center; }
.mod-rail-0008--lg-avatar .mod-rail-0008__avatar { width: 80px; height: 80px; margin: 0 auto 1rem; }
.mod-rail-0008--lg-avatar .mod-rail-0008__quote { padding-left: 0; text-align: center; }
.mod-rail-0008--lg-avatar .mod-rail-0008__quote::before { position: static; display: block; text-align: center; margin-bottom: -0.5rem; }
.mod-rail-0008--lg-avatar .mod-rail-0008__meta { margin-top: 0.75rem; }

/* -- test-masonry -- */
.mod-rail-0008--masonry .mod-rail-0008__grid { display: block; column-count: 2; column-gap: 1.25rem; }
.mod-rail-0008--masonry .mod-rail-0008__card { break-inside: avoid; margin-bottom: 1.25rem; border-top: 3px solid var(--color-primary); box-shadow: none; }
.mod-rail-0008--masonry .mod-rail-0008__quote::before { display: none; }
.mod-rail-0008--masonry .mod-rail-0008__quote { padding-left: 0; }

/* -- test-sidebar -- */
.mod-rail-0008--sidebar .mod-rail-0008__layout { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; align-items: start; }
.mod-rail-0008--sidebar .mod-rail-0008__side { position: sticky; top: 2rem; }
.mod-rail-0008--sidebar .mod-rail-0008__side h2 { text-align: left; margin-bottom: 1rem; }
.mod-rail-0008--sidebar .mod-rail-0008__side::after { content: ''; display: block; width: 48px; height: 3px; background: var(--color-primary); margin-top: 1rem; border-radius: 2px; }
.mod-rail-0008--sidebar .mod-rail-0008__card { margin-bottom: 1rem; }
.mod-rail-0008--sidebar .mod-rail-0008__card:last-child { margin-bottom: 0; }

/* -- test-stack -- */
.mod-rail-0008--stack .mod-rail-0008__grid { display: flex; flex-direction: column; gap: 0; }
.mod-rail-0008--stack .mod-rail-0008__card { display: flex; gap: 1.5rem; align-items: center; padding: 2rem; border: none; border-radius: 0; box-shadow: none; }
.mod-rail-0008--stack .mod-rail-0008__card:nth-child(even) { background: var(--color-bg-alt); }
.mod-rail-0008--stack .mod-rail-0008__card:nth-child(odd) { background: var(--color-card); }
.mod-rail-0008--stack .mod-rail-0008__quote { flex: 1; padding-left: 0; margin-bottom: 0; }
.mod-rail-0008--stack .mod-rail-0008__quote::before { display: none; }
.mod-rail-0008--stack .mod-rail-0008__author { flex-shrink: 0; text-align: right; }
.mod-rail-0008--stack .mod-rail-0008__avatar { width: 56px; height: 56px; }

/* === Partners === */
.lay-area-0b44f { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.lay-area-0b44f > .bl-4457e1f > h2 { text-align: center; margin-bottom: 1.5rem; }
.lay-area-0b44f__logos { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: center; }
.lay-area-0b44f__logo-item { display: flex; align-items: center; justify-content: center; min-width: 120px; }
.lay-area-0b44f__logo-item img { max-height: 48px; width: auto; filter: grayscale(100%); opacity: 0.6; transition: all var(--transition); }
.lay-area-0b44f__logo-item:hover img { filter: grayscale(0%); opacity: 1; }
.lay-area-0b44f__logo-text {
    padding: 0.5rem 1.5rem;
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    font-weight: 500;
    color: var(--color-text-light);
    font-size: 0.9rem;
    transition: color var(--transition), border-color var(--transition);
}
.lay-area-0b44f__logo-item:hover .lay-area-0b44f__logo-text { color: var(--color-primary); border-color: var(--color-primary); }

/* === Gallery === */
.blk-4994a95 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.blk-4994a95 > .bl-4457e1f > h2 { text-align: center; margin-bottom: 1.5rem; }
.blk-4994a95__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0.75rem; }
.blk-4994a95__item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.blk-4994a95__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.blk-4994a95__item:hover img { transform: scale(1.05); }
.blk-4994a95__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 0.85rem;
    text-align: center;
}

/* === Blog === */
.mod-part-0a763 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.mod-part-0a763 > .bl-4457e1f > h2 { text-align: center; margin-bottom: 1.5rem; }
.mod-part-0a763__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.mod-part-0a763__thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 0.75rem; }
.mod-part-0a763__thumb img { width: 100%; height: 180px; object-fit: cover; display: block; }
.mod-part-0a763__date { font-size: 0.8rem; color: var(--color-text-light); display: block; margin-bottom: 0.25rem; }
.mod-part-0a763__excerpt { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; }
.mod-part-0a763__more { font-size: 0.85rem; color: var(--color-primary); text-decoration: none; font-weight: 500; }
.mod-part-0a763__more:hover { text-decoration: underline; }
/* Blog: list variant */
.mod-part-0a763--list .mod-part-0a763__item { display: flex; gap: 1.25rem; padding: 1rem 0; border-bottom: 1px solid var(--color-border); }
.mod-part-0a763--list .mod-part-0a763__thumb { flex-shrink: 0; width: 200px; margin: 0; }
.mod-part-0a763--list .mod-part-0a763__thumb img { height: 130px; }
.mod-part-0a763--list .mod-part-0a763__item-body h3 { margin: 0 0 0.25rem; font-size: 1.1rem; }
.mod-part-0a763--list .mod-part-0a763__item-body h3 a { color: var(--color-text); text-decoration: none; }
.mod-part-0a763--list .mod-part-0a763__item-body h3 a:hover { color: var(--color-primary); }
/* Blog: cards variant */
.mod-part-0a763--cards .mod-part-0a763__card { display: flex; flex-direction: column; }
.mod-part-0a763--cards .mod-part-0a763__card-body { flex: 1; display: flex; flex-direction: column; padding: 1rem 0; }
.mod-part-0a763--cards .mod-part-0a763__card-body h3 { margin: 0.25rem 0 0.5rem; font-size: 1.05rem; }
.mod-part-0a763--cards .mod-part-0a763__card-body h3 a { color: var(--color-text); text-decoration: none; }
.mod-part-0a763--cards .mod-part-0a763__card-body h3 a:hover { color: var(--color-primary); }
.mod-part-0a763--cards .mod-part-0a763__more { margin-top: auto; }
/* Blog: minimal variant */
.mod-part-0a763--minimal .mod-part-0a763__list { list-style: none; padding: 0; }
.mod-part-0a763--minimal .mod-part-0a763__list li { padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); display: flex; justify-content: space-between; align-items: center; }
.mod-part-0a763--minimal .mod-part-0a763__list a { color: var(--color-text); text-decoration: none; font-weight: 500; }
.mod-part-0a763--minimal .mod-part-0a763__list a:hover { color: var(--color-primary); }

/* === Comments/Reviews === */
.box-strip-e12bb--cm-cards, .box-strip-e12bb--cm-list, .box-strip-e12bb--cm-bubbles { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.box-strip-e12bb--cm-cards > .bl-4457e1f > h2, .box-strip-e12bb--cm-list > .bl-4457e1f > h2, .box-strip-e12bb--cm-bubbles > .bl-4457e1f > h2 { text-align: center; margin-bottom: 1.5rem; }
/* Comments: cards */
.box-strip-e12bb__cm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.box-strip-e12bb__cm-card { padding: 1.25rem; }
.box-strip-e12bb__cm-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.box-strip-e12bb__cm-header img { border-radius: 50%; }
.box-strip-e12bb__cm-header strong { font-size: 0.95rem; }
.box-strip-e12bb__cm-header small { color: var(--color-text-light); }
.box-strip-e12bb__cm-card p { font-size: 0.9rem; line-height: 1.6; color: var(--color-text-light); margin: 0; }
/* Comments: list */
.box-strip-e12bb--cm-list .box-strip-e12bb__cm-item { padding: 1rem 0; border-bottom: 1px solid var(--color-border); }
.box-strip-e12bb--cm-list .box-strip-e12bb__cm-item strong { margin-right: 0.75rem; }
.box-strip-e12bb--cm-list .box-strip-e12bb__cm-item time { font-size: 0.8rem; color: var(--color-text-light); }
.box-strip-e12bb--cm-list .box-strip-e12bb__cm-item p { margin: 0.5rem 0 0; font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; }
/* Comments: bubbles */
.box-strip-e12bb--cm-bubbles .box-strip-e12bb__cm-bubble { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.box-strip-e12bb__cm-avatar img { border-radius: 50%; flex-shrink: 0; }
.box-strip-e12bb__cm-content { background: var(--color-card); border-radius: var(--radius); padding: 1rem 1.25rem; position: relative; }
.box-strip-e12bb__cm-content p { margin: 0 0 0.5rem; font-size: 0.95rem; font-style: italic; line-height: 1.6; }
.box-strip-e12bb__cm-content cite { font-size: 0.8rem; color: var(--color-text-light); font-style: normal; font-weight: 600; }

/* === Team === */
.wrp-0231 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.wrp-0231 > .bl-4457e1f > h2 { text-align: center; margin-bottom: 0.5rem; }
.wrp-0231__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.wrp-0231__card { text-align: center; background: var(--color-card); border: var(--border-w) solid var(--color-border); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.wrp-0231__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.wrp-0231__photo { aspect-ratio: 1/1; overflow: hidden; }
.wrp-0231__photo img { width: 100%; height: 100%; object-fit: cover; }
.wrp-0231__card h3 { margin: 0.75rem 0 0.25rem; font-size: 1rem; }
.wrp-0231__card p { font-size: 0.85rem; color: var(--color-text-light); margin: 0 0 0.75rem; padding: 0 1rem; }
.wrp-0231--list .wrp-0231__grid { grid-template-columns: 1fr; }
.wrp-0231--list .wrp-0231__card { display: flex; text-align: left; }
.wrp-0231--list .wrp-0231__photo { width: 120px; flex-shrink: 0; aspect-ratio: 1/1; }
.wrp-0231--compact .wrp-0231__grid { gap: 1rem; }
.wrp-0231--compact .wrp-0231__photo { width: 80px; height: 80px; border-radius: 50%; margin: 1rem auto 0.5rem; }

/* === Code Showcase (CSS-only tabs) === */.bl-wrap-2f9c894 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.bl-wrap-2f9c894 > .bl-4457e1f > h2 { text-align: center; margin-bottom: 0.5rem; }
.bl-wrap-2f9c894__panel { position: relative; max-width: 720px; margin: 2rem auto 0; }
.bl-wrap-2f9c894__radio { display: none; }
.bl-wrap-2f9c894__tabs { display: flex; gap: 5px; }
.bl-wrap-2f9c894__tab-btn { padding: 10px 25px; font-size: 0.9rem; font-weight: 600; color: var(--color-text-light); background: var(--color-bg-alt); border-radius: 8px 8px 0 0; cursor: pointer; transition: background var(--transition), color var(--transition); }
.bl-wrap-2f9c894__code-block { display: none; background: #1e293b; border-radius: 0 8px 8px 8px; overflow-x: auto; }
.bl-wrap-2f9c894__code-block pre { color: #f1f5f9; padding: 25px; font-size: 0.85rem; line-height: 1.6; margin: 0; font-family: 'SFMono-Regular',Consolas,'Liberation Mono',Menlo,monospace; }
.bl-wrap-2f9c894__code-block code { white-space: pre; }
.bl-wrap-2f9c894__radio:nth-of-type(1):checked ~ .bl-wrap-2f9c894__code-block--curl { display: block; }
.bl-wrap-2f9c894__radio:nth-of-type(2):checked ~ .bl-wrap-2f9c894__code-block--python { display: block; }
.bl-wrap-2f9c894__radio:nth-of-type(3):checked ~ .bl-wrap-2f9c894__code-block--php { display: block; }
.bl-wrap-2f9c894__radio:nth-of-type(1):checked ~ .bl-wrap-2f9c894__tabs .bl-wrap-2f9c894__tab-btn:nth-of-type(1),
.bl-wrap-2f9c894__radio:nth-of-type(2):checked ~ .bl-wrap-2f9c894__tabs .bl-wrap-2f9c894__tab-btn:nth-of-type(2),
.bl-wrap-2f9c894__radio:nth-of-type(3):checked ~ .bl-wrap-2f9c894__tabs .bl-wrap-2f9c894__tab-btn:nth-of-type(3) {
    background: #1e293b; color: #fff;
}
/* === Categories === */
.pg-cta-b7654b { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.pg-cta-b7654b > .bl-4457e1f > h2 { text-align: center; margin-bottom: 0.5rem; }
.pg-cta-b7654b__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.pg-cta-b7654b__card { padding: 1.5rem; background: var(--color-card); border: var(--border-w) solid var(--color-border); border-radius: var(--radius); text-decoration: none; color: var(--color-text); transition: all var(--transition); display: block; }
.pg-cta-b7654b__card:hover { border-color: var(--color-primary); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.pg-cta-b7654b__item { text-decoration: none; color: var(--color-text); transition: background var(--transition); }
.pg-cta-b7654b__item:hover { background: var(--color-bg-alt); }
.pg-cta-b7654b--icons .pg-cta-b7654b__item { text-decoration: none; color: var(--color-text); transition: color var(--transition); }
.pg-cta-b7654b--icons .pg-cta-b7654b__item:hover { color: var(--color-primary); }

/* === Comparison === */
.mod-cta-36c5 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.mod-cta-36c5 > .bl-4457e1f > h2 { text-align: center; margin-bottom: 0.5rem; }
.mod-cta-36c5__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.mod-cta-36c5__card { padding: 1.5rem; background: var(--color-card); border: var(--border-w) solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.mod-cta-36c5__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.mod-cta-36c5__card h3 { margin: 0 0 0.75rem; font-size: 1.1rem; }
.mod-cta-36c5__rating { color: var(--color-accent); font-size: 1.1rem; margin-bottom: 0.75rem; }
.mod-cta-36c5__pros, .mod-cta-36c5__cons { font-size: 0.9rem; margin-bottom: 0.5rem; }
.mod-cta-36c5__table { width: 100%; border-spacing: 0; border-collapse: collapse; }
.mod-cta-36c5__table th { font-weight: 600; color: var(--color-text); background: var(--color-bg-alt); }
.mod-cta-36c5__table td, .mod-cta-36c5__table th { padding: 0.75rem; border-bottom: 1px solid var(--color-border); text-align: left; }
.mod-cta-36c5__table tr:hover td { background: var(--color-bg-alt); }
.mod-cta-36c5__wrapper { overflow-x: auto; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid var(--color-border); }
.mod-cta-36c5__th-feature, .mod-cta-36c5__td-feature { position: sticky; left: 0; z-index: 1; background: var(--color-bg); box-shadow: 2px 0 5px rgba(0,0,0,0.05); }
.mod-cta-36c5__th-feature { z-index: 2; background: var(--color-bg-alt); }
.mod-cta-36c5__th-hl { background: var(--color-primary-light); border-top: 3px solid var(--color-primary); color: var(--color-primary-dark); }
.mod-cta-36c5__td-hl { background: var(--color-primary-light); }
.mod-cta-36c5--list .mod-cta-36c5__item { padding: 1.25rem 0; border-bottom: 1px solid var(--color-border); }

/* === Projects === */
.hd-promo-df204 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.hd-promo-df204 > .bl-4457e1f > h2 { text-align: center; margin-bottom: 0.5rem; }
.hd-promo-df204__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.hd-promo-df204__card { background: var(--color-card); border: var(--border-w) solid var(--color-border); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.hd-promo-df204__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.hd-promo-df204__card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.hd-promo-df204__card-body { padding: 1.25rem; }
.hd-promo-df204__card-body h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.hd-promo-df204__card-body p { font-size: 0.9rem; color: var(--color-text-light); margin: 0; }
.hd-promo-df204__tag { display: inline-block; font-size: 0.75rem; background: var(--color-bg-alt); color: var(--color-text-light); padding: 0.2rem 0.6rem; border-radius: 1rem; margin-bottom: 0.5rem; }
.hd-promo-df204--case .hd-promo-df204__grid { grid-template-columns: 1fr; gap: 2rem; }
.hd-promo-df204--case .hd-promo-df204__item { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; }
.hd-promo-df204--case .hd-promo-df204__item img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.hd-promo-df204--minimal .hd-promo-df204__grid { grid-template-columns: 1fr; }
.hd-promo-df204--minimal .hd-promo-df204__item { padding: 1rem 0; border-bottom: 1px solid var(--color-border); }

/* === Entry content === */
.box-9d3cff { line-height: 1.8; }
.box-9d3cff p { margin-bottom: 1rem; }
.box-9d3cff h2, .box-9d3cff h3, .box-9d3cff h4 { margin: 1.5rem 0 0.75rem; }
.box-9d3cff img { max-width: 100%; height: auto; border-radius: var(--radius); }
.box-9d3cff ul, .box-9d3cff ol { margin: 0 0 1rem 1.5rem; }
.box-9d3cff blockquote { border-left: 3px solid var(--color-primary); padding: 0.75rem 1.25rem; margin: 1rem 0; background: var(--color-bg-alt); border-radius: var(--radius); }

/* === Promo images === */
.blk-stack-dce7 { padding: clamp(1.5rem, 3vw, 2.5rem) 0; }
.blk-stack-dce7__strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1rem, 3vw, 2.5rem); }
.blk-stack-dce7__item { display: inline-flex; align-items: center; }
.blk-stack-dce7__item img { max-height: 40px; width: auto; filter: grayscale(1); opacity: 0.6; transition: all var(--transition); }
.blk-stack-dce7__item:hover img { filter: grayscale(0); opacity: 1; }
.blk-stack-dce7__item a { text-decoration: none; }

/* === Marquee banner === */
@keyframes tg7b1e7 { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.wrp-row-11523 { background: var(--color-primary-dark); overflow: hidden; padding: 0.6rem 0; white-space: nowrap; }
.wrp-row-11523__track { display: inline-flex; animation: tg7b1e7 24s linear infinite; }
.wrp-row-11523__text { display: inline-block; padding: 0 2rem; font-size: 0.95rem; font-weight: 500; color: #fff; letter-spacing: 0.02em; }
/* === Custom blocks === */
.tg-custom-block { padding: 2rem 0; }
.tg-custom-block > div { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.tg-custom-block h2 { text-align: center; margin-bottom: 1.5rem; }
.tg-custom-block p { max-width: 48rem; margin: 0.75rem auto; line-height: 1.7; color: var(--color-text); }

/* === Footer === */
.lay-content-37adbe {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 2rem 0 1.25rem;
    margin-top: 0;
}
.lay-content-37adbe__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 1.25rem; }
.lay-content-37adbe__col h3 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.lay-content-37adbe__col p { font-size: 0.9rem; margin-bottom: 0.4rem; }
.lay-content-37adbe__col a { color: rgba(255,255,255,0.7); }
.lay-content-37adbe__col a:hover { color: #fff; }
.lay-content-37adbe__col ul { list-style: none; padding: 0; }
.lay-content-37adbe__col ul li { margin-bottom: 0.35rem; }
.lay-content-37adbe__col nav ul { list-style: none; padding: 0; column-width: 11rem; column-count: 1; column-gap: 1.5rem; } /* column-width caps columns: collapse to 1 on narrow footer cols so long RU labels don't break (QA: footer font-wrap) */
.lay-content-37adbe__col nav ul li { margin-bottom: 0.35rem; break-inside: avoid; }
.lay-content-37adbe__col nav a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.lay-content-37adbe__col nav a:hover { color: #fff; }
/* minimal-rg quick-links: one centered horizontal row (parity with the other footers) */
.lay-content-37adbe__links, .lay-content-37adbe__links ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; margin: 0 0 1.25rem; padding: 0; list-style: none; }
.lay-content-37adbe__links ul { margin: 0; }
.lay-content-37adbe__links li { margin: 0; list-style: none; }
.lay-content-37adbe__links a { color: rgba(255,255,255,0.82); font-size: 0.9rem; }
.lay-content-37adbe__links a:hover { color: #fff; }
.lay-content-37adbe__bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 0.75rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; flex-wrap: wrap; gap: 0.5rem; }
.lay-content-37adbe__social { display: flex; gap: 0.75rem; }
.lay-content-37adbe__social a { color: rgba(255,255,255,0.7); }
.lay-content-37adbe__social a:hover { color: #fff; }

/* Footer: legal bar */
.lay-content-37adbe__legal {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.5rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0.75rem;
    list-style: none;
}
.lay-content-37adbe__legal li { list-style: none; }
.lay-content-37adbe__legal a { color: rgba(255,255,255,0.55); }
.lay-content-37adbe__legal a:hover { color: rgba(255,255,255,0.9); }

/* Footer legal bar — randomized presentation (anti-fingerprint).
   Double-class beats any base `__legal` rule regardless of cascade order.
   Separators/pills use currentColor+opacity so they adapt to light or dark footers.
   Covers both children shapes: <a> (fallback div) and <li> (menu / iGaming <ul>). */
.lay-content-37adbe__legal.lay-content-37adbe__legal--sep-pipe,
.lay-content-37adbe__legal.lay-content-37adbe__legal--sep-dot,
.lay-content-37adbe__legal.lay-content-37adbe__legal--sep-bullet,
.lay-content-37adbe__legal.lay-content-37adbe__legal--sep-slash,
.lay-content-37adbe__legal.lay-content-37adbe__legal--sep-dash { flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }
.lay-content-37adbe__legal--sep-pipe > a + a::before, .lay-content-37adbe__legal--sep-pipe > li + li::before { content: '\2502'; margin-right: 0.5rem; opacity: 0.4; }
.lay-content-37adbe__legal--sep-dot > a + a::before, .lay-content-37adbe__legal--sep-dot > li + li::before { content: '\00B7'; margin-right: 0.5rem; opacity: 0.55; }
.lay-content-37adbe__legal--sep-bullet > a + a::before, .lay-content-37adbe__legal--sep-bullet > li + li::before { content: '\2022'; margin-right: 0.5rem; opacity: 0.45; }
.lay-content-37adbe__legal--sep-slash > a + a::before, .lay-content-37adbe__legal--sep-slash > li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.4; }
.lay-content-37adbe__legal--sep-dash > a + a::before, .lay-content-37adbe__legal--sep-dash > li + li::before { content: '\2013'; margin-right: 0.5rem; opacity: 0.4; }
.lay-content-37adbe__legal.lay-content-37adbe__legal--stacked { flex-direction: column; gap: 0.4rem; }
.lay-content-37adbe__legal.lay-content-37adbe__legal--pills { flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }
.lay-content-37adbe__legal--pills > a, .lay-content-37adbe__legal--pills > li > a { padding: 0.2rem 0.7rem; border: 1px solid currentColor; border-radius: 999px; opacity: 0.7; line-height: 1.9; }

/* Footer bottom-strip arrangement (per-theme): copyright alignment + legal-divider on/off,
   so the legal-links / copyright bars are not laid out identically on every theme. */
.lay-content-37adbe--fb-a .lay-content-37adbe__bottom, .lay-content-37adbe--fb-b .lay-content-37adbe__bottom { justify-content: center; text-align: center; }
.lay-content-37adbe--fb-c .lay-content-37adbe__bottom, .lay-content-37adbe--fb-e .lay-content-37adbe__bottom { justify-content: flex-start; text-align: left; }
.lay-content-37adbe--fb-d .lay-content-37adbe__bottom { justify-content: flex-end; text-align: right; }
.lay-content-37adbe.lay-content-37adbe--fb-b .lay-content-37adbe__legal, .lay-content-37adbe.lay-content-37adbe--fb-d .lay-content-37adbe__legal, .lay-content-37adbe.lay-content-37adbe--fb-e .lay-content-37adbe__legal { border-bottom: 0; margin-bottom: 0.5rem; padding-bottom: 0; }

/* Footer: custom HTML */
.lay-content-37adbe__custom { padding: 0.75rem 0; }

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: var(--border-w) solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
}
.btn:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.btn-primary:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

.cta-link {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--color-primary);
    color: #fff;
    border: var(--border-w) solid var(--color-primary);
    border-radius: 0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    cursor: pointer;
    transition: all var(--transition);
}
.cta-link:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

/* === Section modifier utility classes === */
.bg--muted { background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%) !important; }
.layer--blur {
    background: var(--color-primary-light) !important;
    /* Override ALL text vars to dark — accent-bg is always light */
    --color-text: #1e293b; --color-text-light: #475569; --color-card: #fff;
    --color-bg-alt: rgba(0,0,0,0.03); --color-border: rgba(0,0,0,0.12);
    --clr-body: #1e293b; --clr-body-light: #475569; --clr-card: #fff;
    --clr-surface-alt: rgba(0,0,0,0.03); --clr-border: rgba(0,0,0,0.12);
    --text-main: #1e293b; --text-muted: #475569; --card-bg: #fff;
    --bg-alt: rgba(0,0,0,0.03); --border-color: rgba(0,0,0,0.12);
}
.layer--blur, .layer--blur p, .layer--blur li, .layer--blur span, .layer--blur h2, .layer--blur h3 { color: #1e293b !important; }
.layer--blur .mod-core-18fd5__number { color: var(--color-primary-dark) !important; }
.layer--blur .mod-core-18fd5__label { color: #475569 !important; }
.layer--blur .mod-core-18fd5__bar { background: var(--color-primary-dark) !important; color: #fff !important; }
.layer--blur .mod-core-18fd5__bar .mod-core-18fd5__number, .layer--blur .mod-core-18fd5__bar .mod-core-18fd5__label { color: #fff !important; }
.layer--accent {
    background: rgba(255,255,255,0.7) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    /* Override ALL text vars to dark — glass bg is always light */
    --color-text: #1e293b; --color-text-light: #475569; --color-card: rgba(255,255,255,0.5);
    --color-bg-alt: rgba(0,0,0,0.03); --color-border: rgba(0,0,0,0.1);
    --clr-body: #1e293b; --clr-body-light: #475569; --clr-card: rgba(255,255,255,0.5);
    --clr-surface-alt: rgba(0,0,0,0.03); --clr-border: rgba(0,0,0,0.1);
    --text-main: #1e293b; --text-muted: #475569; --card-bg: rgba(255,255,255,0.5);
    --bg-alt: rgba(0,0,0,0.03); --border-color: rgba(0,0,0,0.1);
}
.layer--accent h2, .layer--accent h3, .layer--accent p, .layer--accent span { color: #1e293b; }
.layer--accent .mod-core-18fd5__number { color: var(--color-primary-dark); }
.layer--tint {
    background: var(--color-primary-dark) !important;
    color: #fff;
    /* Override ALL CSS var sets so child elements auto-adapt on dark bg */
    /* Set A canonical */
    --color-card: rgba(255,255,255,0.08);
    --color-bg: transparent;
    --color-bg-alt: rgba(255,255,255,0.04);
    --color-text: #fff;
    --color-text-light: rgba(255,255,255,0.75);
    --color-border: rgba(255,255,255,0.15);
    --color-primary: var(--color-accent);
    --color-primary-dark: var(--color-accent);
    --color-primary-light: rgba(255,255,255,0.12);
    /* Set B canonical */
    --clr-card: rgba(255,255,255,0.08);
    --clr-surface: transparent;
    --clr-surface-alt: rgba(255,255,255,0.04);
    --clr-body: #fff;
    --clr-body-light: rgba(255,255,255,0.75);
    --clr-border: rgba(255,255,255,0.15);
    --clr-main: var(--clr-accent);
    --clr-main-dark: var(--clr-accent);
    --clr-main-light: rgba(255,255,255,0.12);
    /* Set C canonical */
    --card-bg: rgba(255,255,255,0.08);
    --bg-main: transparent;
    --bg-alt: rgba(255,255,255,0.04);
    --text-main: #fff;
    --text-muted: rgba(255,255,255,0.75);
    --border-color: rgba(255,255,255,0.15);
    --brand-color: var(--accent-color);
    --brand-dark: var(--accent-color);
    --brand-light: rgba(255,255,255,0.12);
}
.layer--tint h2, .layer--tint h3 { color: #fff; }
.layer--tint p, .layer--tint li, .layer--tint span { color: rgba(255,255,255,0.9); }
.layer--tint a:not(.btn) { color: var(--color-accent); }
/* button-styled links keep their own colours — the accent link colour above would
   otherwise paint .btn-primary text the same accent as its (remapped) bg → invisible */
.layer--tint .btn-primary { color: #fff !important; }
.layer--tint .crd-card-512e10b__price { color: #fff; }
.layer--tint .block-subtitle { color: rgba(255,255,255,0.7); }

/* === Card modifier utility classes === */
.item--shadow { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.box--raised { border: var(--border-w) solid var(--color-border); box-shadow: none; }
.tile--outline { background: rgba(255,255,255,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); }
.box--minimal { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.box--minimal:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.box--chevron { box-shadow: none; border: none; background: var(--color-bg-alt); }
.tile--shadow { position: relative; padding-right: 2.5rem; cursor: pointer; transition: border-color 0.2s; }
.tile--shadow::after { content: '\2192'; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--color-text-light); font-size: 1.1rem; transition: right 0.2s, color 0.2s; }
.tile--shadow:hover { border-color: var(--color-primary); }
.tile--shadow:hover::after { right: 0.75rem; color: var(--color-primary); }

/* === Forms === */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    width: 100%;
    padding: 10px 14px;
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-card);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    margin-bottom: 0.75rem;
}
input:focus, textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-light); }

/* === Utilities === */
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* === Responsive === */
@media (max-width: 768px) {
    :root { --gutter: 16px; }

    .mn-c095e .bl-4457e1f { font-size: 0.8rem; flex-wrap: wrap; justify-content: center; text-align: center; }

    .mod-hub-df60 .bl-4457e1f { flex-wrap: wrap; }
    .mod-hub-df60__nav { display: none; }
    .mod-hub-df60__burger { display: block; }
    .mod-hub-df60__nav--open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-primary-dark);
        padding: 1rem var(--gutter);
        gap: 0.5rem;
        z-index: 99;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .mod-hub-df60__nav--open a { padding: 8px 0; display: block; font-size: 1rem; }
    .mod-hub-df60__nav--open li::before { display: none; }
    .mod-hub-df60__nav .sub-menu { display: block; position: static; box-shadow: none; border: none; padding: 0 0 0 1rem; min-width: auto; background: transparent; }
    .mod-hub-df60__nav .sub-menu a { color: inherit; font-size: 0.9rem; padding: 6px 0; opacity: 0.85; }
    .mod-hub-df60--white .mod-hub-df60__nav--open { background: var(--color-bg); border-bottom: 1px solid var(--color-border); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .mod-hub-df60--white .mod-hub-df60__nav--open a { color: var(--color-text); }
    .mod-hub-df60__actions { width: 100%; justify-content: space-between; margin-top: 0.5rem; }
    .mod-hub-df60__sec-links { justify-content: flex-start; font-size: 0.85rem; }
    .mod-hub-df60__sec-nav--dropdown .mod-hub-df60__sec-links { display: flex; position: static; box-shadow: none; border: none; flex-wrap: wrap; gap: 0.5rem; background: transparent; padding: 0; }
    .mod-hub-df60__sec-nav--dropdown .mod-hub-df60__sec-toggle { display: none; }
    .mod-hub-df60__sec-nav--pills .mod-hub-df60__sec-links { gap: 0.35rem; }
    .mod-hub-df60__sec-nav--pills .mod-hub-df60__sec-links a { font-size: 0.75rem; padding: 0.2rem 0.6rem; }

    .bl-wrap-f21c0--split > .bl-4457e1f { grid-template-columns: 1fr !important; }
    .bl-wrap-f21c0--left-aligned > .bl-4457e1f { grid-template-columns: 1fr !important; }
    .bl-wrap-f21c0__decor { min-height: auto; align-items: center; }
    .bl-wrap-f21c0__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    .bl-wrap-f21c0__buttons { flex-direction: column; }
    .bl-wrap-f21c0__buttons .bl-wrap-f21c0__btn { text-align: center; }
    .bl-wrap-f21c0__stats-row { gap: 1.5rem; }
    .bl-wrap-f21c0__features-grid { grid-template-columns: 1fr 1fr !important; }
    .bl-wrap-f21c0--checklist .bl-wrap-f21c0__check-grid { grid-template-columns: 1fr !important; }
    .bl-wrap-f21c0__badges-row { gap: 0.5rem; }
    .bl-wrap-f21c0__badge { padding: 8px 12px; font-size: 0.8rem; }
    .bl-wrap-f21c0__metrics-layout { grid-template-columns: 1fr; }

    .mod-core-18fd5--bar .mod-core-18fd5__bar { flex-wrap: wrap; }
    .mod-core-18fd5__grid { gap: 1.25rem; }
    .mod-core-18fd5__number { font-size: 1.75rem; }

    .wp-body-46d3e1__grid { grid-template-columns: 1fr !important; }
    .wp-body-46d3e1--numbered .wp-body-46d3e1__grid { grid-template-columns: 1fr !important; }

    .crd-card-512e10b__grid { grid-template-columns: 1fr !important; }
    .crd-card-512e10b__row { grid-template-columns: 1fr !important; gap: 0.75rem; }
    .crd-card-512e10b__list-item { flex-direction: column; text-align: center; }

    .lay-hub-8665__grid { grid-template-columns: 1fr !important; }

    .pg-be3b8f9__split-grid { grid-template-columns: 1fr !important; }

    .hd-panel-16b3481__grid { grid-template-columns: 1fr !important; }
    .hd-panel-16b3481__list-item { flex-direction: column; gap: 0.5rem; }
    .hd-panel-16b3481__inline-grid { flex-direction: column; }

    .cmp-383b__grid { grid-template-columns: 1fr 1fr !important; }
    .cmp-383b__item:not(:last-child)::after { display: none; }

    .mod-rail-0008__grid { grid-template-columns: 1fr !important; }
    .mod-rail-0008--featured .mod-rail-0008__grid { grid-template-columns: 1fr !important; }
    .mod-rail-0008--horizontal .mod-rail-0008__row { flex-direction: column; align-items: center; text-align: center; }
    .mod-rail-0008--horizontal .mod-rail-0008__avatar { margin: 0 auto; }
    .mod-rail-0008--masonry .mod-rail-0008__grid { column-count: 1; }
    .mod-rail-0008--sidebar .mod-rail-0008__layout { grid-template-columns: 1fr !important; }
    .mod-rail-0008--sidebar .mod-rail-0008__side { position: static; }
    .mod-rail-0008--sidebar .mod-rail-0008__side h2 { text-align: center; }
    .mod-rail-0008--sidebar .mod-rail-0008__side::after { margin: 1rem auto; }
    .mod-rail-0008--stack .mod-rail-0008__card { flex-direction: column; text-align: center; }
    .mod-rail-0008--stack .mod-rail-0008__author { text-align: center; }

    .blk-4994a95__grid { grid-template-columns: 1fr 1fr !important; }

    .mod-part-0a763__grid { grid-template-columns: 1fr !important; }

    .box-strip-e12bb__faq-grid { grid-template-columns: 1fr !important; }

    .wrp-0231__grid { grid-template-columns: 1fr 1fr !important; }
    .wrp-0231--list .wrp-0231__card { flex-direction: column; text-align: center; }
    .wrp-0231--list .wrp-0231__photo { width: 100%; }
    .pg-cta-b7654b__grid { grid-template-columns: 1fr 1fr !important; }
    .mod-cta-36c5__grid { grid-template-columns: 1fr !important; }
    .mod-cta-36c5__table { font-size: 0.85rem; overflow-x: auto; display: block; }
    .hd-promo-df204__grid { grid-template-columns: 1fr !important; }
    .hd-promo-df204--case .hd-promo-df204__item { grid-template-columns: 1fr !important; }
    .blk-stack-dce7__item img { max-height: 30px; }

    .lay-content-37adbe__grid { grid-template-columns: 1fr !important; }
    .lay-content-37adbe__col nav ul { column-count: 1; }
    .lay-content-37adbe__bottom { flex-direction: column; text-align: center; }

    main > section { padding: clamp(1.5rem, 4vw, 2.5rem) 0; }
}

@media (max-width: 480px) {
    :root { --gutter: 12px; }

    .cmp-383b__grid { grid-template-columns: 1fr !important; }
    .blk-4994a95__grid { grid-template-columns: 1fr !important; }

    .mod-core-18fd5__grid { flex-direction: column; align-items: center; }
    .mod-core-18fd5--bar .mod-core-18fd5__bar { flex-direction: column; }
    .mod-core-18fd5--bar .mod-core-18fd5__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .mod-core-18fd5--bar .mod-core-18fd5__item:last-child { border-bottom: none; }

    .bl-wrap-f21c0__title { font-size: clamp(1.5rem, 7vw, 2rem); }

    .btn { width: 100%; text-align: center; }
    .btn-primary { width: 100%; text-align: center; }
    .btn-outline { width: 100%; text-align: center; }
}
/* Content utility: grid */
.ft-b6675d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}
@media (max-width: 600px) {
    .ft-b6675d { grid-template-columns: 1fr !important; }
}

/* Content utility: card */
.lay-main-34a31 {
    padding: 1.25rem;
    border-radius: 1rem;
    background: var(--color-card);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    
    transition: all 0.25s ease;
}
.lay-main-34a31 h3,
.lay-main-34a31 h4 { margin: 0 0 0.5rem; }
.lay-main-34a31 p:last-child { margin-bottom: 0; }
.lay-main-34a31:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

/* Content utility: list */
.el-part-25de183 {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.el-part-25de183 li {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.6;
}
.el-part-25de183 li::before {
    content: '\203A'; color: var(--color-accent); font-weight: 700;
    position: absolute; left: 0;
    font-size: 1em;
}

/* Content utility: highlight */
.mn-list-72f0 {
    padding: 1.25rem;
    background: var(--color-primary-light);
    border-top: 3px solid var(--color-primary);
    border-radius: 0 0 1rem 1rem;
    margin: 1.5rem 0;
    color: #1e293b;
}
.mn-list-72f0 p, .mn-list-72f0 b, .mn-list-72f0 strong, .mn-list-72f0 span { color: #1e293b; }
.mn-list-72f0 p:last-child { margin-bottom: 0; }
/* ============================================================
   iGaming sections (emitted only for site_type=igaming)
   ============================================================ */

/* --- Casino / sportsbook ranked list (shared layout) --- */
.sec-area-93a9__list, .blk-be26b__list, .pg-08f099__list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.sec-area-93a9__item, .blk-be26b__item, .pg-08f099__item {
    display: grid; align-items: center; gap: 0.75rem 1.25rem;
    background: var(--color-card); border: 1px solid var(--color-border);
    border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
}
.sec-area-93a9__item { grid-template-columns: auto auto minmax(0,1fr) auto auto; }
.blk-be26b__item, .pg-08f099__item { grid-template-columns: auto auto minmax(0,1fr) auto; }
.sec-area-93a9__item:hover, .blk-be26b__item:hover, .pg-08f099__item:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.sec-area-93a9__rank, .blk-be26b__rank, .pg-08f099__rank { font-size: 1.4rem; font-weight: 800; color: var(--color-primary); min-width: 2rem; text-align: center; }
.sec-area-93a9__logo img, .blk-be26b__logo img, .pg-08f099__logo img { max-width: 92px; height: auto; border-radius: 8px; display: block; }
.sec-area-93a9__meta h3, .blk-be26b__meta h3, .pg-08f099__meta h3 { margin: 0 0 0.35rem; font-size: 1.1rem; }
.sec-area-93a9__rating { display: flex; align-items: center; gap: 0.5rem; }
.sec-area-93a9__stars { position: relative; display: inline-block; width: 92px; height: 10px; border-radius: 5px; background: var(--color-border); overflow: hidden; }
.sec-area-93a9__stars::before { content: ''; position: absolute; inset: 0; width: var(--ig-stars, 0%); background: linear-gradient(90deg, #f5a623, #f7c948); }
.sec-area-93a9__score, .pg-08f099__rating { font-weight: 700; color: color-mix(in srgb, var(--color-primary) 55%, var(--color-text)); font-size: 0.9rem; }
.sec-area-93a9__license, .blk-be26b__meta small, .pg-08f099__meta small { font-size: 0.78rem; color: var(--color-text-light); }
.sec-area-93a9__bonus { text-align: center; }
.sec-area-93a9__bonus strong { display: block; color: var(--color-text); font-weight: 800; }
.sec-area-93a9__bonus small, .pg-08f099__offer { display: block; font-size: 0.78rem; color: var(--color-text-light); }
.sec-area-93a9__actions, .pg-08f099__actions { display: flex; flex-direction: column; gap: 0.5rem; }
.sec-area-93a9__cta-primary, .pg-08f099__cta-primary, .blk-be26b__cta {
    display: inline-block; text-align: center; padding: 0.6rem 1.1rem; border-radius: var(--radius);
    background: var(--color-accent); color: #fff; font-weight: 700; text-decoration: none; white-space: nowrap;
    transition: filter var(--transition), transform var(--transition);
}
.sec-area-93a9__cta-primary:hover, .pg-08f099__cta-primary:hover, .blk-be26b__cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
.sec-area-93a9__cta-secondary, .pg-08f099__cta-secondary { display: inline-block; text-align: center; font-size: 0.82rem; color: var(--color-primary); text-decoration: none; }
.sec-area-93a9__cta-secondary:hover, .pg-08f099__cta-secondary:hover { text-decoration: underline; }
.blk-be26b__specs, .pg-08f099__specs { list-style: none; padding: 0; margin: 0.35rem 0 0; display: flex; flex-wrap: wrap; gap: 0.35rem 1rem; font-size: 0.82rem; color: var(--color-text-light); }

/* --- Bonuses grid --- */
.wp-aside-83d0c__grid, .wp-base-4d46dd__grid, .mn-form-71acd__grid, .st-stack-4c239b4__grid, .cp-item-276a1f__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.wp-aside-83d0c__card, .mn-form-71acd__card {
    display: flex; flex-direction: column; gap: 0.5rem; background: var(--color-card);
    border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow);
}
.wp-aside-83d0c__type { display: inline-block; align-self: flex-start; background: var(--color-primary-light); color: var(--color-primary-dark); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.15rem 0.6rem; border-radius: 999px; }
.wp-aside-83d0c__casino { font-weight: 700; font-size: 1.05rem; }
.wp-aside-83d0c__amount, .mn-form-71acd__jackpot { font-size: 1.5rem; font-weight: 800; color: var(--color-primary); }
.wp-aside-83d0c__terms, .mn-form-71acd__meta { list-style: none; padding: 0; margin: 0.25rem 0; display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.85rem; color: var(--color-text-light); }
.wp-aside-83d0c__code { font-size: 0.85rem; }
.wp-aside-83d0c__code code { background: var(--color-bg-alt); padding: 0.15rem 0.5rem; border-radius: 4px; font-weight: 700; }
.wp-aside-83d0c__tcs { margin-top: auto; opacity: 0.6; font-size: 0.72rem; }

/* --- Slots / providers / game categories cards --- */
.wp-base-4d46dd__card, .st-stack-4c239b4__card { display: flex; flex-direction: column; gap: 0.5rem; background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); text-decoration: none; color: inherit; transition: box-shadow var(--transition), transform var(--transition); }
.st-stack-4c239b4__card:hover, .wp-base-4d46dd__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.wp-base-4d46dd__thumb { aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden; background: var(--color-bg-alt); display: flex; align-items: center; justify-content: center; }
.wp-base-4d46dd__thumb img { width: 100%; height: 100%; object-fit: cover; }
.wp-base-4d46dd__card h3, .st-stack-4c239b4__card h3 { margin: 0; font-size: 1rem; }
.wp-base-4d46dd__prov { font-size: 0.78rem; color: var(--color-text-light); }
.wp-base-4d46dd__specs { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.3rem 0.75rem; font-size: 0.8rem; color: var(--color-text-light); }
.cp-item-276a1f__item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; padding: 1rem; background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius); text-align: center; }
.cp-item-276a1f__item img { max-height: 40px; width: auto; }
.cp-item-276a1f__name-only { font-weight: 700; }
.st-stack-4c239b4__card img { max-height: 48px; width: auto; }

/* --- Jackpot ticker --- */
.sec-outer-0235b__row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.25rem; }
.sec-outer-0235b__item { flex: 1 1 180px; max-width: 260px; text-align: center; background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); }
.sec-outer-0235b__game { font-size: 0.85rem; color: var(--color-text-light); }
.sec-outer-0235b__amount { font-size: 1.5rem; font-weight: 800; color: var(--color-primary); font-variant-numeric: tabular-nums; }
.sec-outer-0235b__item small { font-size: 0.72rem; color: var(--color-text-light); }

/* --- Payment methods --- */
.cmp-list-7238__row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }
.cmp-list-7238__item { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--color-card); border: 1px solid var(--color-border); border-radius: 999px; padding: 0.3rem 0.85rem 0.3rem 0.3rem; font-size: 0.85rem; }
.cmp-list-7238__mono { display: inline-flex; align-items: center; justify-content: center; min-width: 2rem; height: 1.6rem; padding: 0 0.4rem; border-radius: 999px; font-weight: 800; font-size: 0.7rem; }
.cmp-list-7238__name { font-weight: 600; }

/* --- License / RG badge rows (standalone trust sections: centered so a few
       badges read as an intentional strip rather than floating top-left) --- */
.box-core-2ce286a, .mod-card-c85cc { text-align: center; }
.mod-card-c85cc p { max-width: 720px; margin-left: auto; margin-right: auto; }
.box-core-2ce286a__row, .mod-card-c85cc__row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.25rem; justify-content: center; }
.box-core-2ce286a__badge, .mod-card-c85cc__badge { display: inline-flex; flex-direction: column; align-items: center; gap: 0.25rem; text-decoration: none; }
.box-core-2ce286a__chip, .mod-card-c85cc__chip { color: #fff; padding: 0.5rem 1.1rem; border-radius: 8px; font-weight: 700; font-size: 0.9rem; }
.box-core-2ce286a__badge small { font-size: 0.65rem; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 0.04em; }

/* --- Data tables (tournaments / rakeback / odds / results) --- */
.cp-grid-19843e__table, .ft-card-17c5b7__table, .pnl-col-6c44__table, .sec-695a__table { width: 100%; border-collapse: collapse; margin-top: 1.25rem; font-size: 0.9rem; }
.cp-grid-19843e__table th, .ft-card-17c5b7__table th, .pnl-col-6c44__table th, .sec-695a__table th { text-align: left; background: var(--color-primary); color: #fff; padding: 0.6rem 0.85rem; font-weight: 700; font-size: 0.82rem; }
.cp-grid-19843e__table td, .ft-card-17c5b7__table td, .pnl-col-6c44__table td, .sec-695a__table td { padding: 0.6rem 0.85rem; border-bottom: 1px solid var(--color-border); }
.cp-grid-19843e__table tr:nth-child(even) td, .ft-card-17c5b7__table tr:nth-child(even) td, .pnl-col-6c44__table tr:nth-child(even) td, .sec-695a__table tr:nth-child(even) td { background: var(--color-bg-alt); }
.sec-695a__numbers { font-weight: 700; letter-spacing: 0.04em; color: var(--color-primary); }

/* --- Events schedule --- */
.cmp-hero-0295__list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.cmp-hero-0295__row { display: grid; grid-template-columns: auto minmax(0,1fr) auto auto; align-items: center; gap: 0.75rem 1.25rem; background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 0.85rem 1.1rem; }
.cmp-hero-0295__sport { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-text-light); }
.cmp-hero-0295__when { font-size: 0.82rem; color: var(--color-text-light); }
.cmp-hero-0295__odds { display: flex; gap: 0.4rem; }
.cmp-hero-0295__odd { display: inline-flex; flex-direction: column; align-items: center; min-width: 2.6rem; background: var(--color-bg-alt); border-radius: 6px; padding: 0.25rem 0.4rem; }
.cmp-hero-0295__odd label { font-size: 0.65rem; color: var(--color-text-light); }
.cmp-hero-0295__odd b { font-size: 0.9rem; color: var(--color-primary); }

/* --- Lotteries extra --- */
.mn-form-71acd__country { font-size: 0.78rem; color: var(--color-text-light); }

/* --- Review methodology --- */
.blk-9f925e7__list { counter-reset: ig-step; list-style: none; padding: 0; margin: 1.25rem 0 0; display: flex; flex-direction: column; gap: 1rem; }
.blk-9f925e7__item { counter-increment: ig-step; position: relative; padding-left: 3rem; }
.blk-9f925e7__item::before { content: counter(ig-step); position: absolute; left: 0; top: 0; width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; background: var(--color-primary); color: #fff; border-radius: 50%; font-weight: 800; }
.blk-9f925e7__item h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }

/* --- Author spotlight --- */
.pg-block-eb5c__card { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.25rem; box-shadow: var(--shadow); }
.pg-block-eb5c__photo img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.pg-block-eb5c__photo span { display: flex; align-items: center; justify-content: center; width: 96px; height: 96px; border-radius: 50%; background: var(--color-primary-light); color: var(--color-primary-dark); font-weight: 800; font-size: 2rem; }
.pg-block-eb5c__body blockquote { margin: 0 0 0.75rem; font-size: 1.1rem; font-style: italic; }
.pg-block-eb5c__meta { font-size: 0.85rem; color: var(--color-text-light); margin: 0 0 0.5rem; }

/* --- iGaming hero sub-elements (hero base styles inherited) --- */
.bl-wrap-f21c0--ig-slots-bg { position: relative; overflow: hidden; }
.bl-wrap-f21c0__age { display: inline-block; margin-top: 1rem; font-size: 0.8rem; font-weight: 600; opacity: 0.85; }
.bl-wrap-f21c0__top3 { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin: 1.25rem 0; }
.bl-wrap-f21c0__top3-item { display: flex; flex-direction: column; min-width: 120px; background: rgba(255,255,255,0.12); border-radius: var(--radius); padding: 0.5rem 0.9rem; }
.bl-wrap-f21c0__top3-item span { font-size: 0.78rem; opacity: 0.85; }
.bl-wrap-f21c0__top3-item strong { font-size: 1rem; color: #f7c948; }
.bl-wrap-f21c0__counter, .bl-wrap-f21c0__promo { display: inline-flex; flex-direction: column; gap: 0.25rem; margin: 1.25rem auto; padding: 1rem 1.5rem; border-radius: var(--radius); background: rgba(0,0,0,0.22); }
.bl-wrap-f21c0__counter-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }
.bl-wrap-f21c0__counter-value, .bl-wrap-f21c0__promo strong { font-size: clamp(1.6rem, 5vw, 2.75rem); font-weight: 800; color: #f7c948; font-variant-numeric: tabular-nums; }
.bl-wrap-f21c0__mosaic { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; opacity: 0.16; pointer-events: none; }
.bl-wrap-f21c0__mosaic img { width: 100%; height: 100%; object-fit: cover; }
.bl-wrap-f21c0__trust-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; justify-content: center; margin: 1rem 0; font-size: 0.85rem; }
.bl-wrap-f21c0__chip { display: inline-block; background: rgba(255,255,255,0.15); border-radius: 999px; padding: 0.2rem 0.7rem; font-weight: 600; font-size: 0.8rem; }
.bl-wrap-f21c0__search { display: flex; gap: 0.5rem; max-width: 560px; margin: 1.5rem auto 0; }
.bl-wrap-f21c0__search input { flex: 1; margin: 0; }
.bl-wrap-f21c0__search button { padding: 0.65rem 1.25rem; border: 0; border-radius: var(--radius); background: var(--color-accent); color: #fff; font-weight: 700; cursor: pointer; }
.bl-wrap-f21c0__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1rem; }
.bl-wrap-f21c0__chips a { font-size: 0.85rem; background: rgba(255,255,255,0.12); border-radius: 999px; padding: 0.25rem 0.8rem; text-decoration: none; color: inherit; }

/* --- iGaming header badge / sticky --- */
.mod-hub-df60__age { display: inline-block; background: var(--color-primary); color: #fff; font-weight: 700; font-size: 0.78rem; padding: 0.1rem 0.5rem; border-radius: 4px; }
.mod-hub-df60--sticky { position: sticky; top: 0; z-index: 200; }

/* --- iGaming footer extras (footer base grid/col/bottom inherited) --- */
.lay-content-37adbe__licenses, .lay-content-37adbe__rg-orgs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin: 0.85rem 0; font-size: 0.85rem; }
.lay-content-37adbe__licenses strong, .lay-content-37adbe__rg-orgs strong { opacity: 0.85; margin-right: 0.25rem; }
.lay-content-37adbe__lic, .lay-content-37adbe__rg, .lay-content-37adbe__gpwa { display: inline-block; text-decoration: none; }
.lay-content-37adbe__disclaimer { margin: 1rem 0; opacity: 0.6; font-size: 0.78rem; line-height: 1.55; }
.lay-content-37adbe__disclaimer a { text-decoration: underline; }
.lay-content-37adbe__stats { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; text-align: center; padding: 0 0 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.15); margin-bottom: 1.5rem; }
.lay-content-37adbe__stats strong { display: block; font-size: 1.35rem; color: #fff; }
.lay-content-37adbe__stats small { opacity: 0.7; font-size: 0.78rem; }
.lay-content-37adbe__legal { list-style: none; margin: 0; padding: 0; border: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.lay-content-37adbe__legal li { margin: 0; list-style: none; }
.lay-content-37adbe__legal a { font-size: 0.85rem; }

@media (max-width: 768px) {
    .sec-area-93a9__item, .blk-be26b__item, .pg-08f099__item { grid-template-columns: auto 1fr; }
    .sec-area-93a9__bonus, .sec-area-93a9__actions, .pg-08f099__actions, .blk-be26b__specs { grid-column: 1 / -1; }
    .sec-area-93a9__actions, .pg-08f099__actions { flex-direction: row; flex-wrap: wrap; }
    .cmp-hero-0295__row { grid-template-columns: 1fr; }
    .pg-block-eb5c__card { flex-direction: column; align-items: center; text-align: center; }
}
/* ============================================================
   iGaming casino flair (flair=2, ns=g7a6946) — motion-safe
   ============================================================ */
@keyframes g7a6946-sheen { 0% { transform: translateX(-130%) skewX(-18deg); } 60%,100% { transform: translateX(230%) skewX(-18deg); } }
@keyframes g7a6946-glow { 0%,100% { box-shadow: 0 0 0 1px var(--color-primary), 0 0 12px -2px var(--color-primary); } 50% { box-shadow: 0 0 0 1px var(--color-primary), 0 0 26px 2px var(--color-primary); } }
@keyframes g7a6946-shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

/* Primary CTAs: gradient + animated light sweep */
.sec-area-93a9__cta-primary, .pg-08f099__cta-primary, .blk-be26b__cta, .mod-hub-df60__cta {
    position: relative; overflow: hidden; border: 0;
    background: linear-gradient(120deg, var(--color-primary), var(--color-accent)); background-size: 180% 100%;
    color: #fff; font-weight: 800; letter-spacing: 0.01em;
    box-shadow: 0 6px 18px -6px var(--color-primary);
}
.sec-area-93a9__cta-primary::after, .pg-08f099__cta-primary::after, .blk-be26b__cta::after, .mod-hub-df60__cta::after {
    content: ''; position: absolute; top: 0; left: 0; width: 45%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: translateX(-130%) skewX(-18deg); pointer-events: none;
}
.sec-area-93a9__cta-primary:hover, .pg-08f099__cta-primary:hover, .blk-be26b__cta:hover, .mod-hub-df60__cta:hover { filter: brightness(1.06); }

/* #1 ranked item: glowing gradient frame + crown rank */
.sec-area-93a9__list .sec-area-93a9__item:first-child, .pg-08f099__list .pg-08f099__item:first-child, .blk-be26b__list .blk-be26b__item:first-child {
    border-color: transparent;
    background:
        linear-gradient(var(--color-card), var(--color-card)) padding-box,
        linear-gradient(120deg, var(--color-primary), var(--color-accent)) border-box;
    border: 2px solid transparent;
}
.sec-area-93a9__list .sec-area-93a9__item:first-child .sec-area-93a9__rank::before,
.pg-08f099__list .pg-08f099__item:first-child .pg-08f099__rank::before,
.blk-be26b__list .blk-be26b__item:first-child .blk-be26b__rank::before { content: '\2605 '; color: #f7c948; }

/* Jackpot / bonus amounts: gold gradient text */
.bl-wrap-f21c0__counter-value, .bl-wrap-f21c0__promo strong, .sec-outer-0235b__amount, .wp-aside-83d0c__amount, .mn-form-71acd__jackpot, .sec-area-93a9__bonus strong {
    background: linear-gradient(92deg, #f7c948 0%, #ffe9a0 45%, #f0a500 100%); background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: #f0a500;
    text-shadow: 0 0 18px rgba(247,201,72,0.4);
}

/* Hero counter / promo plate: subtle glowing frame */
.bl-wrap-f21c0__counter, .bl-wrap-f21c0__promo { border: 1px solid rgba(247,201,72,0.35); box-shadow: 0 0 30px -10px rgba(247,201,72,0.5); }

/* Section heading accent underline (iGaming) */
.sec-area-93a9 > .sec-intro, .wp-aside-83d0c > .sec-intro { position: relative; }

/* License chips subtle sheen on hover */
.box-core-2ce286a__chip { position: relative; overflow: hidden; }

@media (prefers-reduced-motion: no-preference) {
    .sec-area-93a9__cta-primary:hover::after, .pg-08f099__cta-primary:hover::after,
    .blk-be26b__cta:hover::after, .mod-hub-df60__cta:hover::after { animation: g7a6946-sheen 0.9s ease; }
    .sec-area-93a9__list .sec-area-93a9__item:first-child, .pg-08f099__list .pg-08f099__item:first-child,
    .blk-be26b__list .blk-be26b__item:first-child { animation: g7a6946-glow 3.2s ease-in-out infinite; }
    .bl-wrap-f21c0__counter-value, .bl-wrap-f21c0__promo strong, .sec-outer-0235b__amount {
        animation: g7a6946-shimmer 4s linear infinite;
    }
}