/*
Theme Name: great-blog
Description: Custom theme
Version: 5.7
*/

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('fonts/inter-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: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('fonts/inter-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 {
    --brand-color: hsl(28, 48%, 34%);
    --brand-dark: hsl(28, 48%, 19%);
    --brand-light: hsl(28, 28%, 85%);
    --accent-color: hsl(58, 48%, 44%);
    --accent-hover: hsl(58, 48%, 39%);
    --bg-main: #ffffff;
    --bg-alt: #f7f8fa;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --border-color: #e2e2e2;
    --card-bg: #ffffff;
    --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ff-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-hover: 0 4px 12px rgba(0,0,0,0.08);
    --border-w: 1px;
    --container: 1200px;
    --gutter: 20px;
    --transition: 0.25s ease;
    /* Cross-set CSS variable aliases */
    --color-primary: var(--brand-color);
    --color-primary-dark: var(--brand-dark);
    --color-primary-light: var(--brand-light);
    --color-accent: var(--accent-color);
    --color-accent-hover: var(--accent-hover);
    --color-bg: var(--bg-main);
    --color-bg-alt: var(--bg-alt);
    --color-text: var(--text-main);
    --color-text-light: var(--text-muted);
    --color-border: var(--border-color);
    --color-card: var(--card-bg);
    --font-main: var(--ff-body);
    --font-head: var(--ff-heading);
    --clr-main: var(--brand-color);
    --clr-main-dark: var(--brand-dark);
    --clr-main-light: var(--brand-light);
    --clr-accent: var(--accent-color);
    --clr-accent-hover: var(--accent-hover);
    --clr-surface: var(--bg-main);
    --clr-surface-alt: var(--bg-alt);
    --clr-body: var(--text-main);
    --clr-body-light: var(--text-muted);
    --clr-border: var(--border-color);
    --clr-card: var(--card-bg);
    --type-body: var(--ff-body);
    --type-heading: var(--ff-heading);
}

*, *::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; }

body {
    background: var(--bg-main);
    color: var(--text-main);
    font-family: var(--ff-body);
    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(--ff-heading);
    font-weight: 500;
    color: var(--brand-dark);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    text-wrap: balance;
}
h1 { font-size: clamp(1.82rem, 3.6vw + 0.73rem, 3.41rem); }
h2 { font-size: clamp(1.37rem, 2.7vw + 0.55rem, 2.50rem); }
h3 { font-size: clamp(1.05rem, 1.4vw + 0.42rem, 1.37rem); }
h4 { font-size: clamp(1.04rem, 1.2vw + 0.42rem, 1.30rem); }
h5 { font-size: clamp(1.00rem, 1.1vw + 0.40rem, 1.16rem); }
h6 { font-size: clamp(0.86rem, 0.8vw + 0.34rem, 1.01rem); }

p { margin-bottom: 1rem; }

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

/* === Layout === */
.st-block-05a4f4 {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* === Section wrapper === */
.itm-c2cd8 {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.itm-c2cd8 > .st-block-05a4f4 > h2 { text-align: center; margin-bottom: 0.5rem; }
.itm-c2cd8 > .st-block-05a4f4 > .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(--bg-alt); }
:where(main) > :where(section):nth-child(odd) { background: var(--bg-main); }

/* === Section subtitle helper === */
.sec-intro {
    text-align: center;
    color: var(--text-muted);
    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 === */
.blk-0bd6e8 {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 6px 0;
}
.blk-0bd6e8 .st-block-05a4f4 { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.blk-0bd6e8 a { color: rgba(255,255,255,0.85); }
.blk-0bd6e8 a:hover { color: #fff; }

/* === Header === */
.bl-grid-ac8f {
    background: var(--brand-dark);
    color: #fff;
    padding: 0.4rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}
.bl-grid-ac8f .st-block-05a4f4 { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.bl-grid-ac8f__brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; min-width: 0; }
.bl-grid-ac8f__logo { max-height: 36px; width: auto; }
.bl-grid-ac8f__brand img { max-height: 36px; width: auto; height: auto; } /* cap any opt-in raster logo (no oversized custom-logo) */
.bl-grid-ac8f__brand-name { font-family: var(--ff-heading); font-weight: 500; font-size: 1.1rem; color: #fff; overflow-wrap: break-word; word-break: break-word; }
.bl-grid-ac8f__row-brand .bl-grid-ac8f__brand-name { color: var(--text-main); }
/* === Brand monogram (CSS mark — no raster, header-foreground-aware) === */
.bl-grid-ac8f__mono { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; flex: 0 0 auto; font-family: var(--ff-heading); font-weight: 800; font-size: calc(36px * 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) */
.bl-grid-ac8f__mono--rounded { background: var(--accent-color); border-radius: 9px; }
.bl-grid-ac8f__mono--circle { background: var(--accent-color); border-radius: 50%; }
.bl-grid-ac8f__mono--squircle { background: var(--accent-color); border-radius: 32% / 42%; }
.bl-grid-ac8f__mono--square { background: var(--accent-color); border-radius: 3px; }
.bl-grid-ac8f__mono--hex { background: var(--accent-color); 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) */
.bl-grid-ac8f__mono--ring { border: 2px solid currentColor; border-radius: 50%; }
.bl-grid-ac8f__mono--outline { border: 2px solid currentColor; border-radius: 9px; }
.bl-grid-ac8f--white .bl-grid-ac8f__mono--ring, .bl-grid-ac8f--white .bl-grid-ac8f__mono--outline,
.bl-grid-ac8f__row-brand .bl-grid-ac8f__mono--ring, .bl-grid-ac8f__row-brand .bl-grid-ac8f__mono--outline { color: var(--text-main); }
/* wordmark accent treatments — small brand-colour pops */
.bl-grid-ac8f__brand-name--dot::after { content: '.'; color: var(--accent-color); }
.bl-grid-ac8f__brand-name--underline { border-bottom: 2px solid var(--accent-color); padding-bottom: 1px; }
.bl-grid-ac8f__brand-name--accent-first::first-letter { color: var(--accent-color); }
.bl-grid-ac8f__brand-name--bracket::before { content: '['; color: var(--accent-color); margin-right: 2px; }
.bl-grid-ac8f__brand-name--bracket::after { content: ']'; color: var(--accent-color); margin-left: 2px; }
.bl-grid-ac8f__nav { display: flex; gap: 0; list-style: none; align-items: center; }
.bl-grid-ac8f__nav li { display: flex; align-items: center; list-style: none; }
.bl-grid-ac8f__nav a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.85rem; white-space: nowrap; }
.bl-grid-ac8f__nav a:hover { color: #fff; }
.bl-grid-ac8f__nav a {
    padding: 6px 14px;
    border-radius: 50px;
    transition: background 0.25s ease, color 0.25s ease;
}
.bl-grid-ac8f__nav a:hover { background: rgba(255,255,255,0.18); color: #fff; }
.bl-grid-ac8f__nav a.current-menu-item { background: rgba(255,255,255,0.22); color: #fff; }
.bl-grid-ac8f__nav li + li::before { content: '/'; margin: 0 0.55rem; opacity: 0.35; }

.bl-grid-ac8f__nav > a + a { margin-left: calc(0.55rem * 2); }

.bl-grid-ac8f__actions { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
.bl-grid-ac8f__phone a { color: #fff; font-weight: 600; font-size: 1.05rem; white-space: nowrap; }
.bl-grid-ac8f__phone a:hover { color: var(--accent-color); }
.bl-grid-ac8f__cta {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    text-transform: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
}
.bl-grid-ac8f__cta:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }
.bl-grid-ac8f__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) === */
.bl-grid-ac8f--white { background: var(--bg-main); color: var(--text-main); border-bottom: 1px solid var(--border-color); box-shadow: none; }
.bl-grid-ac8f--white .bl-grid-ac8f__brand-name { color: var(--text-main); }
.bl-grid-ac8f--white .bl-grid-ac8f__nav a { color: var(--text-main); opacity: 0.75; }
.bl-grid-ac8f--white .bl-grid-ac8f__nav a:hover { color: var(--brand-color); opacity: 1; }
.bl-grid-ac8f--white .bl-grid-ac8f__phone a { color: var(--text-main); }
.bl-grid-ac8f--white .bl-grid-ac8f__burger { color: var(--text-main); }

/* === Primary nav submenu (dropdown navMode) === */
.bl-grid-ac8f__nav li { position: relative; }
.bl-grid-ac8f__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 */
.bl-grid-ac8f__nav li:hover > .sub-menu, .bl-grid-ac8f__nav li:focus-within > .sub-menu { display: block; }
.bl-grid-ac8f__nav .menu-item-has-children > a::after { content: '\00a0\25be'; font-size: 0.7em; opacity: 0.65; }
.bl-grid-ac8f__nav .sub-menu li { max-width: none; }
.bl-grid-ac8f__nav .sub-menu a { display: block; padding: 0.4rem 1rem; color: var(--color-text, #333); font-size: 0.88rem; white-space: nowrap; }
.bl-grid-ac8f__nav .sub-menu a:hover { background: var(--color-bg-alt, #f5f5f5); color: var(--brand-color); }

/* === Secondary Nav === */
.bl-grid-ac8f__sec-nav {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-color);
    padding: 0.4rem 0;
    font-size: 0.9rem;
}
.bl-grid-ac8f__sec-links { display: flex; gap: 1.25rem; list-style: none; flex-wrap: wrap; justify-content: center; }
.bl-grid-ac8f__sec-links li { list-style: none; max-width: 220px; }
.bl-grid-ac8f__sec-links a { color: var(--text-main); font-weight: 500; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.3; }
.bl-grid-ac8f__sec-links a:hover { color: var(--brand-color); }


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

.blk-main-3307 {
    background: radial-gradient(ellipse at center, var(--brand-color) 0%, var(--brand-dark) 80%) !important;
}
@keyframes tg6da67d { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.blk-main-3307{background:linear-gradient(-45deg,hsl(28, 48%, 19%),hsl(28, 48%, 34%),hsl(58, 48%, 44%),hsl(28, 48%, 19%))!important;background-size:400% 400%;animation:tg6da67d 20s ease-in-out infinite;}

.blk-main-3307--split > .st-block-05a4f4 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.blk-main-3307--split .blk-main-3307__buttons { justify-content: flex-start; }

/* === Hero: left-aligned variant (2-column with image/decor) === */
.blk-main-3307--left-aligned > .st-block-05a4f4 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; text-align: left; }
.blk-main-3307--left-aligned .blk-main-3307__buttons { justify-content: flex-start; }
.blk-main-3307--left-aligned .blk-main-3307__subtitle { max-width: 100%; }
.blk-main-3307__decor { position: relative; min-height: 280px; display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; justify-content: center; }
.blk-main-3307__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; }
.blk-main-3307__decor-card:hover { transform: translateY(-3px); }
.blk-main-3307__decor-card--1 { align-self: flex-start; margin-left: 10%; }
.blk-main-3307__decor-card--2 { align-self: flex-end; margin-right: 5%; }
.blk-main-3307__decor-card--3 { align-self: center; }
.blk-main-3307__decor-icon { font-size: 1.5rem; }
.blk-main-3307__decor-text { font-size: 0.95rem; font-weight: 600; color: #fff; }
.blk-main-3307__decor-num { font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.blk-main-3307__decor-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); }
/* Light variant decor adjustments */
.blk-main-3307--light .blk-main-3307__decor-card { background: var(--color-card, #fff); border-color: var(--border-color); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.blk-main-3307--light .blk-main-3307__decor-text { color: var(--text-main); }
.blk-main-3307--light .blk-main-3307__decor-num { color: var(--brand-color); }
.blk-main-3307--light .blk-main-3307__decor-label { color: var(--text-muted); }
.blk-main-3307__eyebrow { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; margin-bottom: 0.5rem; font-weight: 600; }
.blk-main-3307__title { color: #fff; font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 0.75rem; }
.blk-main-3307__subtitle { font-size: 1.1rem; line-height: 1.65; max-width: 640px; opacity: 0.9; margin-bottom: 1rem; }
.blk-main-3307__subtitle p { color: rgba(255,255,255,0.9); }
.blk-main-3307__buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; justify-content: center; }
.blk-main-3307__btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-transform: none;
    letter-spacing: 0.01em;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.blk-main-3307__btn:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.blk-main-3307__btn--secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}
.blk-main-3307__btn--secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; transform: translateY(-2px); }
.blk-main-3307__image img { border-radius: var(--radius); }

/* === Hero light variant (portal / hh.ru style) === */
.blk-main-3307--light { background: var(--bg-main); color: var(--text-main); }
.blk-main-3307--light .blk-main-3307__title { color: var(--text-main); }
.blk-main-3307--light .blk-main-3307__eyebrow { color: var(--brand-color); opacity: 1; }
.blk-main-3307--light .blk-main-3307__subtitle { opacity: 1; }
.blk-main-3307--light .blk-main-3307__subtitle p { color: var(--text-muted); }
.blk-main-3307--light .blk-main-3307__btn--secondary { border-color: var(--border-color); color: var(--text-main); }
.blk-main-3307--light .blk-main-3307__btn--secondary:hover { border-color: var(--brand-color); color: var(--brand-color); background: transparent; }

/* === Hero: stats-row variant === */
.blk-main-3307__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); }
.blk-main-3307__stat { text-align: center; }
.blk-main-3307__stat-value { display: block; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.2; }
.blk-main-3307__stat-label { font-size: 0.85rem; opacity: 0.75; display: block; margin-top: 0.25rem; }
.blk-main-3307--light .blk-main-3307__stats-row { border-top-color: var(--border-color); }
.blk-main-3307--light .blk-main-3307__stat-value { color: var(--brand-color); }
.blk-main-3307--light .blk-main-3307__stat-label { color: var(--text-muted); opacity: 1; }

/* === Hero: feature-cards variant === */
.blk-main-3307__features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; text-align: center; }
.blk-main-3307__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); }
.blk-main-3307__feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.blk-main-3307__feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.blk-main-3307__feature-card h3 { font-size: 1rem; margin: 0 0 0.5rem; color: #fff; }
.blk-main-3307__feature-card p { font-size: 0.85rem; opacity: 0.8; margin: 0; line-height: 1.5; }
.blk-main-3307--light .blk-main-3307__feature-card { background: var(--card-bg); border: 1px solid var(--border-color); }
.blk-main-3307--light .blk-main-3307__feature-card h3 { color: var(--text-main); }
.blk-main-3307--light .blk-main-3307__feature-card p { color: var(--text-muted); opacity: 1; }

/* === Hero: search-bar variant === */
.blk-main-3307--search { padding-bottom: 3rem; }
.blk-main-3307__search-form { display: flex; gap: 0; max-width: 600px; margin: 1.5rem auto 0; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.blk-main-3307__search-input { flex: 1; padding: 14px 20px; border: none; font-size: 1rem; outline: none; background: #fff; color: #333; }
.blk-main-3307__search-form .blk-main-3307__btn { border-radius: 0; padding: 14px 28px; }
.blk-main-3307__search-tags { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.blk-main-3307__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); }
.blk-main-3307__search-tag:hover { background: rgba(255,255,255,0.3); color: #fff; }
.blk-main-3307--light .blk-main-3307__search-input { border: 1px solid var(--border-color); }
.blk-main-3307--light .blk-main-3307__search-tag { background: var(--card-bg); color: var(--text-main); border: 1px solid var(--border-color); }
.blk-main-3307--light .blk-main-3307__search-tag:hover { border-color: var(--brand-color); color: var(--brand-color); }

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

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

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

/* === Hero: badges-row variant === */
.blk-main-3307__badges-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.blk-main-3307__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); }
.blk-main-3307__badge:hover { background: rgba(255,255,255,0.2); }
.blk-main-3307__badge-icon { font-size: 1.2rem; }
.blk-main-3307--light .blk-main-3307__badge { background: var(--card-bg); border: 1px solid var(--border-color); color: var(--text-main); }
.blk-main-3307--light .blk-main-3307__badge:hover { border-color: var(--brand-color); }

/* === Hero: saas-metrics variant === */
.blk-main-3307--saas-metrics > .st-block-05a4f4 { text-align: left; }
.blk-main-3307__metrics-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.blk-main-3307__metrics-text .blk-main-3307__buttons { justify-content: flex-start; }
.blk-main-3307__metrics-grid { display: grid; gap: 1rem; }
.blk-main-3307__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;
}
.blk-main-3307__metric-card h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.blk-main-3307__metric-card p { margin: 0; font-size: 0.9rem; opacity: 0.85; }
.blk-main-3307__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;
}
.blk-main-3307__metric-icon--0 { background: hsla(28,48%,34%,0.12); }
.blk-main-3307__metric-icon--1 { background: hsla(58,48%,50%,0.12); }
.blk-main-3307__metric-icon--2 { background: hsla(28,48%,85%,0.15); }
.blk-main-3307--light .blk-main-3307__metric-card { background: var(--card-bg); border-color: var(--border-color); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.blk-main-3307--light .blk-main-3307__metric-card h3 { color: var(--text-main); }
.blk-main-3307--light .blk-main-3307__metric-card p { color: var(--text-muted); }

/* === Stats === */
.ui-stack-f2fe { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.ui-stack-f2fe > .st-block-05a4f4 > h2 { text-align: center; margin-bottom: 1.5rem; }
.ui-stack-f2fe__grid { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; text-align: center; }
.ui-stack-f2fe__item { min-width: 120px; }
.ui-stack-f2fe__number { font-size: 2.25rem; font-weight: 500; font-family: var(--ff-heading); color: var(--brand-color); line-height: 1.2; }
.ui-stack-f2fe__label { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.2rem; }

/* Stats variant: cards */
.ui-stack-f2fe--cards .ui-stack-f2fe__grid { gap: 1.25rem; }
.ui-stack-f2fe--cards .ui-stack-f2fe__item {
    padding: 1.25rem;
    background: var(--card-bg);
    border: var(--border-w) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 160px;
    flex: 1;
}

/* Stats variant: bar */
.ui-stack-f2fe--bar { padding: 0; }
.ui-stack-f2fe__bar {
    display: flex;
    background: var(--brand-dark);
    color: #fff;
    padding: 1.25rem 0;
}
.ui-stack-f2fe--bar .ui-stack-f2fe__item { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 1rem; }
.ui-stack-f2fe--bar .ui-stack-f2fe__item:last-child { border-right: none; }
.ui-stack-f2fe--bar .ui-stack-f2fe__number { color: #fff; font-size: 2rem; }
.ui-stack-f2fe--bar .ui-stack-f2fe__label { color: rgba(255,255,255,0.8); }

/* === Body / Block === */
.st-grid-d89610 { padding: clamp(2rem, 4vw, 3.5rem) 0; }

.hd-cta-a7bf {
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    border: var(--border-w) solid var(--border-color);
    border-radius: var(--radius);
    background: var(--card-bg);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.hd-cta-a7bf:hover { box-shadow: var(--shadow-hover); border-color: var(--brand-light); transform: translateY(-2px); }
.hd-cta-a7bf__icon { margin-bottom: 0.75rem; }
.hd-cta-a7bf__icon img { width: 48px; height: 48px; }

/* === Advantages === */
.hd-7266b { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.hd-7266b h2 { text-align: center; margin-bottom: 1.5rem; }
.hd-7266b__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.hd-7266b__item {
    padding: 1.5rem;
    background: var(--card-bg);
    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;
}
.hd-7266b__item:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); border-color: var(--brand-light); }
.hd-7266b__item h3 { margin-top: 0.5rem; }
.hd-7266b__icon img { width: 48px; height: 48px; margin: 0 auto; }

/* Adv variant: list */
.hd-7266b--list .hd-7266b__grid { grid-template-columns: 1fr; gap: 1rem; }
.hd-7266b--list .hd-7266b__item { display: flex; gap: 1.25rem; text-align: left; align-items: flex-start; }
.hd-7266b--list .hd-7266b__icon { flex-shrink: 0; }
.hd-7266b--list .hd-7266b__text p { margin-bottom: 0; }

/* Adv variant: numbered */
.hd-7266b--numbered .hd-7266b__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.hd-7266b--numbered .hd-7266b__item { display: flex; gap: 1rem; text-align: left; padding: 1.25rem; }
.hd-7266b__num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-weight: 500;
    font-size: 1.25rem;
    border-radius: var(--radius);
    font-family: var(--ff-heading);
}
.hd-7266b--numbered .hd-7266b__text p { margin-bottom: 0; }

/* Adv variant: bordered */
.hd-7266b--bordered .hd-7266b__item {
    border: var(--border-w) solid var(--border-color);
    border-left: 4px solid var(--brand-color);
    text-align: left;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.hd-7266b--bordered .hd-7266b__item:hover { border-left-color: var(--accent-color); }

/* === Tariffs === */
.bl-fa7f { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.bl-fa7f > .st-block-05a4f4 > h2 { text-align: center; margin-bottom: 1.5rem; }
.bl-fa7f__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.bl-fa7f__card {
    padding: 1.75rem;
    border: var(--border-w) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
    background: var(--card-bg);
}
.bl-fa7f__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.bl-fa7f__card--highlighted { border-color: var(--brand-color); box-shadow: 0 0 0 2px var(--brand-light); position: relative; }
.bl-fa7f__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;
}
.bl-fa7f__price { font-size: 1.75rem; font-weight: 500; color: var(--brand-color); margin: 0.5rem 0; }
.bl-fa7f__features { list-style: none; padding: 0; margin: 0.75rem 0; text-align: left; }
.bl-fa7f__features li { padding: 0.35rem 0; border-bottom: 1px solid var(--border-color); font-size: 0.9rem; }

/* Tariff variant: horizontal */
.bl-fa7f--horizontal .bl-fa7f__grid { display: none; }
.bl-fa7f__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(--border-color);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    background: var(--card-bg);
}
.bl-fa7f__row--hl { border-color: var(--brand-color); background: var(--brand-light); }
.bl-fa7f__row-head .bl-fa7f__price { font-size: 1.4rem; margin: 0.25rem 0; }
.bl-fa7f__row-body .bl-fa7f__features { margin: 0; }
.bl-fa7f__row-body .bl-fa7f__features li { display: inline; }
.bl-fa7f__row-body .bl-fa7f__features li::after { content: ' \00B7  '; }
.bl-fa7f__row-body .bl-fa7f__features li:last-child::after { content: ''; }

/* Tariff variant: minimal */
.bl-fa7f--minimal .bl-fa7f__grid { display: none; }
.bl-fa7f__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}
.bl-fa7f--minimal .bl-fa7f__price { font-size: 1.25rem; white-space: nowrap; margin: 0; }

/* === Benefits === */
.st-cell-1c3b22 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.st-cell-1c3b22 > .st-block-05a4f4 > h2 { text-align: center; margin-bottom: 1.5rem; }
.st-cell-1c3b22__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.st-cell-1c3b22__item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.st-cell-1c3b22__item h3 { margin-bottom: 0.2rem; }

/* Benefits variant: checklist */
.st-cell-1c3b22--checklist .st-cell-1c3b22__grid { display: none; }
.st-cell-1c3b22__list { max-width: 700px; margin: 0 auto; }
.st-cell-1c3b22__check-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-start;
}
.st-cell-1c3b22__check-mark {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-color);
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    margin-top: 0.1rem;
}
.st-cell-1c3b22__check-item p { margin: 0.25rem 0 0; color: var(--text-muted); font-size: 0.9rem; }

/* Benefits variant: icons */
.st-cell-1c3b22--icons .st-cell-1c3b22__item { flex-direction: column; text-align: center; align-items: center; }
.st-cell-1c3b22__icon-big { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }
.st-cell-1c3b22__icon-big img { width: 56px; height: 56px; }

/* === FAQ === */
.st-grid-d89610#faq { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.st-grid-d89610#faq h2, .st-grid-d89610 > .st-block-05a4f4 > h2 { text-align: center; margin-bottom: 1.5rem; }

/* FAQ variant: grid */
.st-grid-d89610__faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(480px, 1fr)); gap: 1rem; }

/* FAQ details/accordion */
details.hd-cta-a7bf { cursor: pointer; }
details.hd-cta-a7bf summary { font-weight: 600; }
details.hd-cta-a7bf[open] summary { color: var(--brand-color); }

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

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

/* CTA variant: split */
.mn-inner-45142b--split { text-align: left; }
.mn-inner-45142b__split-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: center; }
.mn-inner-45142b__split-action { text-align: center; }

/* === Products === */
.hd-hub-df1202 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.hd-hub-df1202 > .st-block-05a4f4 > h2 { text-align: center; margin-bottom: 1.5rem; }
.hd-hub-df1202__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.hd-hub-df1202__card {
    border-radius: var(--radius);
    overflow: hidden;
    border: var(--border-w) solid var(--border-color);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
    background: var(--card-bg);
}
.hd-hub-df1202__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.hd-hub-df1202__card-body { padding: 1.25rem; }

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

/* Products variant: inline */
.hd-hub-df1202--inline .hd-hub-df1202__grid { display: none; }
.hd-hub-df1202__inline-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hd-hub-df1202__inline-item {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    border: var(--border-w) solid var(--border-color);
    border-radius: var(--radius);
    background: var(--card-bg);
    transition: border-color var(--transition);
    color: var(--text-main);
    flex: 1 1 auto;
    min-width: 200px;
}
.hd-hub-df1202__inline-item:hover { border-color: var(--brand-color); }
.hd-hub-df1202__inline-item span { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

/* === Steps === */
.cmp-4d45 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.cmp-4d45 > .st-block-05a4f4 > h2 { text-align: center; margin-bottom: 1.5rem; }
.cmp-4d45__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; counter-reset: step; position: relative; }
.cmp-4d45__item { text-align: center; position: relative; }
.cmp-4d45__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--brand-color);
    color: #fff;
    font-weight: 500;
    font-size: 1.25rem;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    font-family: var(--ff-heading);
}
.cmp-4d45__item h3 { font-size: 1.1rem; }
.cmp-4d45__item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
/* Connector line between steps */
.cmp-4d45__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(50% + 28px);
    width: calc(100% + 1.25rem - 56px);
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

/* Transparent header: push hero content below header */
.bl-grid-ac8f--transparent ~ main > .blk-main-3307 { padding-top: calc(80px + 2rem); }
/* Transparent header on non-hero pages (single, subpages): push first child down */
.bl-grid-ac8f--transparent ~ main > .st-block-05a4f4:first-child { padding-top: calc(80px + 2rem); }
.bl-grid-ac8f--transparent ~ main > .st-grid-d89610:first-child { padding-top: calc(80px + 2rem); }

/* === Testimonials === */
.box-e08e276 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.box-e08e276 > .st-block-05a4f4 > h2 { text-align: center; margin-bottom: 1.5rem; }
.box-e08e276__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.box-e08e276__card {
    padding: 1.5rem;
    background: var(--card-bg);
    border: var(--border-w) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.box-e08e276__quote {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    padding: 0;
    border: none;
    color: var(--text-main);
    position: relative;
    padding-left: 1.5rem;
}
.box-e08e276__quote::before { content: '\201C'; font-size: 2.5rem; color: var(--brand-light); position: absolute; top: -0.5rem; left: 0; font-family: serif; line-height: 1; }
.box-e08e276__author { display: flex; gap: 0.75rem; align-items: center; }
.box-e08e276__avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.box-e08e276__avatar img { width: 100%; height: 100%; object-fit: cover; }
.box-e08e276__position { display: block; color: var(--text-muted); font-size: 0.9rem; }
.box-e08e276__cite { display: block; font-style: normal; margin-top: 0.75rem; color: var(--text-muted); }
.box-e08e276__cite strong { color: var(--text-main); }
.box-e08e276__meta { color: var(--text-muted); font-size: 0.9rem; }
.box-e08e276__meta strong { color: var(--text-main); }

/* -- test-bubble -- */
.box-e08e276--bubble .box-e08e276__bubble {
    background: var(--card-bg);
    border: var(--border-w) solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.25rem;
    position: relative;
    margin-bottom: 1rem;
}
.box-e08e276--bubble .box-e08e276__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(--card-bg);
}
.box-e08e276--bubble .box-e08e276__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(--border-color);
}
.box-e08e276--bubble .box-e08e276__card { background: none; border: none; box-shadow: none; padding: 0; }
.box-e08e276--bubble .box-e08e276__quote { padding-left: 0; margin: 0; }
.box-e08e276--bubble .box-e08e276__quote::before { display: none; }
.box-e08e276--bubble .box-e08e276__author { padding-left: 0.5rem; }

/* -- test-minimal -- */
.box-e08e276--minimal { text-align: center; }
.box-e08e276--minimal .st-block-05a4f4 > h2 { margin-bottom: 2rem; }
.box-e08e276--minimal .box-e08e276__list { max-width: 700px; margin: 0 auto; }
.box-e08e276--minimal .box-e08e276__item { padding: 2rem 0; border-bottom: 1px solid var(--border-color); }
.box-e08e276--minimal .box-e08e276__item:last-child { border-bottom: none; }
.box-e08e276--minimal .box-e08e276__quote { font-size: 1.1rem; padding-left: 0; }
.box-e08e276--minimal .box-e08e276__quote::before { display: none; }

/* -- test-featured -- */
.box-e08e276--featured .box-e08e276__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.box-e08e276--featured .box-e08e276__card--feat {
    grid-column: 1 / -1;
    border-left: 4px solid var(--brand-color);
    background: color-mix(in srgb, var(--brand-color) 5%, var(--card-bg));
}
.box-e08e276--featured .box-e08e276__card--feat .box-e08e276__avatar { width: 72px; height: 72px; }

/* -- test-horizontal -- */
.box-e08e276--horizontal .box-e08e276__row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-bg);
    border: var(--border-w) solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.box-e08e276--horizontal .box-e08e276__row:last-child { margin-bottom: 0; }
.box-e08e276--horizontal .box-e08e276__avatar { width: 64px; height: 64px; border-radius: 8px; flex-shrink: 0; overflow: hidden; }
.box-e08e276--horizontal .box-e08e276__avatar img { border-radius: 8px; }
.box-e08e276--horizontal .box-e08e276__content { flex: 1; }
.box-e08e276--horizontal .box-e08e276__quote { padding-left: 0; margin-bottom: 0.75rem; }
.box-e08e276--horizontal .box-e08e276__quote::before { display: none; }

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

/* -- test-large-avatar -- */
.box-e08e276--lg-avatar .box-e08e276__card { text-align: center; }
.box-e08e276--lg-avatar .box-e08e276__avatar { width: 80px; height: 80px; margin: 0 auto 1rem; }
.box-e08e276--lg-avatar .box-e08e276__quote { padding-left: 0; text-align: center; }
.box-e08e276--lg-avatar .box-e08e276__quote::before { position: static; display: block; text-align: center; margin-bottom: -0.5rem; }
.box-e08e276--lg-avatar .box-e08e276__meta { margin-top: 0.75rem; }

/* -- test-masonry -- */
.box-e08e276--masonry .box-e08e276__grid { display: block; column-count: 2; column-gap: 1.25rem; }
.box-e08e276--masonry .box-e08e276__card { break-inside: avoid; margin-bottom: 1.25rem; border-top: 3px solid var(--brand-color); box-shadow: none; }
.box-e08e276--masonry .box-e08e276__quote::before { display: none; }
.box-e08e276--masonry .box-e08e276__quote { padding-left: 0; }

/* -- test-sidebar -- */
.box-e08e276--sidebar .box-e08e276__layout { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; align-items: start; }
.box-e08e276--sidebar .box-e08e276__side { position: sticky; top: 2rem; }
.box-e08e276--sidebar .box-e08e276__side h2 { text-align: left; margin-bottom: 1rem; }
.box-e08e276--sidebar .box-e08e276__side::after { content: ''; display: block; width: 48px; height: 3px; background: var(--brand-color); margin-top: 1rem; border-radius: 2px; }
.box-e08e276--sidebar .box-e08e276__card { margin-bottom: 1rem; }
.box-e08e276--sidebar .box-e08e276__card:last-child { margin-bottom: 0; }

/* -- test-stack -- */
.box-e08e276--stack .box-e08e276__grid { display: flex; flex-direction: column; gap: 0; }
.box-e08e276--stack .box-e08e276__card { display: flex; gap: 1.5rem; align-items: center; padding: 2rem; border: none; border-radius: 0; box-shadow: none; }
.box-e08e276--stack .box-e08e276__card:nth-child(even) { background: var(--bg-alt); }
.box-e08e276--stack .box-e08e276__card:nth-child(odd) { background: var(--card-bg); }
.box-e08e276--stack .box-e08e276__quote { flex: 1; padding-left: 0; margin-bottom: 0; }
.box-e08e276--stack .box-e08e276__quote::before { display: none; }
.box-e08e276--stack .box-e08e276__author { flex-shrink: 0; text-align: right; }
.box-e08e276--stack .box-e08e276__avatar { width: 56px; height: 56px; }

/* === Partners === */
.hd-group-91373 { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.hd-group-91373 > .st-block-05a4f4 > h2 { text-align: center; margin-bottom: 1.5rem; }
.hd-group-91373__logos { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: center; }
.hd-group-91373__logo-item { display: flex; align-items: center; justify-content: center; min-width: 120px; }
.hd-group-91373__logo-item img { max-height: 48px; width: auto; filter: grayscale(100%); opacity: 0.6; transition: all var(--transition); }
.hd-group-91373__logo-item:hover img { filter: grayscale(0%); opacity: 1; }
.hd-group-91373__logo-text {
    padding: 0.5rem 1.5rem;
    border: var(--border-w) solid var(--border-color);
    border-radius: var(--radius);
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition), border-color var(--transition);
}
.hd-group-91373__logo-item:hover .hd-group-91373__logo-text { color: var(--brand-color); border-color: var(--brand-color); }

/* === Gallery === */
.ui-grid-c054 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.ui-grid-c054 > .st-block-05a4f4 > h2 { text-align: center; margin-bottom: 1.5rem; }
.ui-grid-c054__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0.75rem; }
.ui-grid-c054__item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.ui-grid-c054__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.ui-grid-c054__item:hover img { transform: scale(1.05); }
.ui-grid-c054__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 === */
.itm-cell-c6cfbe { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.itm-cell-c6cfbe > .st-block-05a4f4 > h2 { text-align: center; margin-bottom: 1.5rem; }
.itm-cell-c6cfbe__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.itm-cell-c6cfbe__thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 0.75rem; }
.itm-cell-c6cfbe__thumb img { width: 100%; height: 180px; object-fit: cover; display: block; }
.itm-cell-c6cfbe__date { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 0.25rem; }
.itm-cell-c6cfbe__excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.itm-cell-c6cfbe__more { font-size: 0.85rem; color: var(--brand-color); text-decoration: none; font-weight: 500; }
.itm-cell-c6cfbe__more:hover { text-decoration: underline; }
/* Blog: list variant */
.itm-cell-c6cfbe--list .itm-cell-c6cfbe__item { display: flex; gap: 1.25rem; padding: 1rem 0; border-bottom: 1px solid var(--border-color); }
.itm-cell-c6cfbe--list .itm-cell-c6cfbe__thumb { flex-shrink: 0; width: 200px; margin: 0; }
.itm-cell-c6cfbe--list .itm-cell-c6cfbe__thumb img { height: 130px; }
.itm-cell-c6cfbe--list .itm-cell-c6cfbe__item-body h3 { margin: 0 0 0.25rem; font-size: 1.1rem; }
.itm-cell-c6cfbe--list .itm-cell-c6cfbe__item-body h3 a { color: var(--text-main); text-decoration: none; }
.itm-cell-c6cfbe--list .itm-cell-c6cfbe__item-body h3 a:hover { color: var(--brand-color); }
/* Blog: cards variant */
.itm-cell-c6cfbe--cards .itm-cell-c6cfbe__card { display: flex; flex-direction: column; }
.itm-cell-c6cfbe--cards .itm-cell-c6cfbe__card-body { flex: 1; display: flex; flex-direction: column; padding: 1rem 0; }
.itm-cell-c6cfbe--cards .itm-cell-c6cfbe__card-body h3 { margin: 0.25rem 0 0.5rem; font-size: 1.05rem; }
.itm-cell-c6cfbe--cards .itm-cell-c6cfbe__card-body h3 a { color: var(--text-main); text-decoration: none; }
.itm-cell-c6cfbe--cards .itm-cell-c6cfbe__card-body h3 a:hover { color: var(--brand-color); }
.itm-cell-c6cfbe--cards .itm-cell-c6cfbe__more { margin-top: auto; }
/* Blog: minimal variant */
.itm-cell-c6cfbe--minimal .itm-cell-c6cfbe__list { list-style: none; padding: 0; }
.itm-cell-c6cfbe--minimal .itm-cell-c6cfbe__list li { padding: 0.75rem 0; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
.itm-cell-c6cfbe--minimal .itm-cell-c6cfbe__list a { color: var(--text-main); text-decoration: none; font-weight: 500; }
.itm-cell-c6cfbe--minimal .itm-cell-c6cfbe__list a:hover { color: var(--brand-color); }

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

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

/* === Code Showcase (CSS-only tabs) === */.pnl-wrap-00c03d5 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.pnl-wrap-00c03d5 > .st-block-05a4f4 > h2 { text-align: center; margin-bottom: 0.5rem; }
.pnl-wrap-00c03d5__panel { position: relative; max-width: 720px; margin: 2rem auto 0; }
.pnl-wrap-00c03d5__radio { display: none; }
.pnl-wrap-00c03d5__tabs { display: flex; gap: 5px; }
.pnl-wrap-00c03d5__tab-btn { padding: 10px 25px; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); background: var(--bg-alt); border-radius: 8px 8px 0 0; cursor: pointer; transition: background var(--transition), color var(--transition); }
.pnl-wrap-00c03d5__code-block { display: none; background: #1e293b; border-radius: 0 8px 8px 8px; overflow-x: auto; }
.pnl-wrap-00c03d5__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; }
.pnl-wrap-00c03d5__code-block code { white-space: pre; }
.pnl-wrap-00c03d5__radio:nth-of-type(1):checked ~ .pnl-wrap-00c03d5__code-block--curl { display: block; }
.pnl-wrap-00c03d5__radio:nth-of-type(2):checked ~ .pnl-wrap-00c03d5__code-block--python { display: block; }
.pnl-wrap-00c03d5__radio:nth-of-type(3):checked ~ .pnl-wrap-00c03d5__code-block--php { display: block; }
.pnl-wrap-00c03d5__radio:nth-of-type(1):checked ~ .pnl-wrap-00c03d5__tabs .pnl-wrap-00c03d5__tab-btn:nth-of-type(1),
.pnl-wrap-00c03d5__radio:nth-of-type(2):checked ~ .pnl-wrap-00c03d5__tabs .pnl-wrap-00c03d5__tab-btn:nth-of-type(2),
.pnl-wrap-00c03d5__radio:nth-of-type(3):checked ~ .pnl-wrap-00c03d5__tabs .pnl-wrap-00c03d5__tab-btn:nth-of-type(3) {
    background: #1e293b; color: #fff;
}
/* === Categories === */
.wp-col-c75080 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.wp-col-c75080 > .st-block-05a4f4 > h2 { text-align: center; margin-bottom: 0.5rem; }
.wp-col-c75080__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.wp-col-c75080__card { padding: 1.5rem; background: var(--card-bg); border: var(--border-w) solid var(--border-color); border-radius: var(--radius); text-decoration: none; color: var(--text-main); transition: all var(--transition); display: block; }
.wp-col-c75080__card:hover { border-color: var(--brand-color); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.wp-col-c75080__item { text-decoration: none; color: var(--text-main); transition: background var(--transition); }
.wp-col-c75080__item:hover { background: var(--bg-alt); }
.wp-col-c75080--icons .wp-col-c75080__item { text-decoration: none; color: var(--text-main); transition: color var(--transition); }
.wp-col-c75080--icons .wp-col-c75080__item:hover { color: var(--brand-color); }

/* === Comparison === */
.pg-view-b4d6 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.pg-view-b4d6 > .st-block-05a4f4 > h2 { text-align: center; margin-bottom: 0.5rem; }
.pg-view-b4d6__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.pg-view-b4d6__card { padding: 1.5rem; background: var(--card-bg); border: var(--border-w) solid var(--border-color); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.pg-view-b4d6__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.pg-view-b4d6__card h3 { margin: 0 0 0.75rem; font-size: 1.1rem; }
.pg-view-b4d6__rating { color: var(--accent-color); font-size: 1.1rem; margin-bottom: 0.75rem; }
.pg-view-b4d6__pros, .pg-view-b4d6__cons { font-size: 0.9rem; margin-bottom: 0.5rem; }
.pg-view-b4d6__table { width: 100%; border-spacing: 0; border-collapse: collapse; }
.pg-view-b4d6__table th { font-weight: 600; color: var(--text-main); background: var(--bg-alt); }
.pg-view-b4d6__table td, .pg-view-b4d6__table th { padding: 0.75rem; border-bottom: 1px solid var(--border-color); text-align: left; }
.pg-view-b4d6__table tr:hover td { background: var(--bg-alt); }
.pg-view-b4d6__wrapper { overflow-x: auto; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid var(--border-color); }
.pg-view-b4d6__th-feature, .pg-view-b4d6__td-feature { position: sticky; left: 0; z-index: 1; background: var(--bg-main); box-shadow: 2px 0 5px rgba(0,0,0,0.05); }
.pg-view-b4d6__th-feature { z-index: 2; background: var(--bg-alt); }
.pg-view-b4d6__th-hl { background: var(--brand-light); border-top: 3px solid var(--brand-color); color: var(--brand-dark); }
.pg-view-b4d6__td-hl { background: var(--brand-light); }
.pg-view-b4d6--list .pg-view-b4d6__item { padding: 1.25rem 0; border-bottom: 1px solid var(--border-color); }

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

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

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

/* === Marquee banner === */
@keyframes tg9a416 { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.hd-strip-0781b { background: var(--brand-color); overflow: hidden; padding: 0.6rem 0; white-space: nowrap; }
.hd-strip-0781b__track { display: inline-flex; animation: tg9a416 22s linear infinite; }
.hd-strip-0781b__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(--text-main); }

/* === Footer === */
.bl-grid-f72a {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.8);
    padding: 2rem 0 1.25rem;
    margin-top: 0;
}
.bl-grid-f72a__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 1.25rem; }
.bl-grid-f72a__col h3 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.bl-grid-f72a__col p { font-size: 0.9rem; margin-bottom: 0.4rem; }
.bl-grid-f72a__col a { color: rgba(255,255,255,0.7); }
.bl-grid-f72a__col a:hover { color: #fff; }
.bl-grid-f72a__col ul { list-style: none; padding: 0; }
.bl-grid-f72a__col ul li { margin-bottom: 0.35rem; }
.bl-grid-f72a__col nav ul { list-style: none; padding: 0; column-count: 2; column-gap: 1.5rem; }
.bl-grid-f72a__col nav ul li { margin-bottom: 0.35rem; break-inside: avoid; }
.bl-grid-f72a__col nav a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.bl-grid-f72a__col nav a:hover { color: #fff; }
/* minimal-rg quick-links: one centered horizontal row (parity with the other footers) */
.bl-grid-f72a__links, .bl-grid-f72a__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; }
.bl-grid-f72a__links ul { margin: 0; }
.bl-grid-f72a__links li { margin: 0; list-style: none; }
.bl-grid-f72a__links a { color: rgba(255,255,255,0.82); font-size: 0.9rem; }
.bl-grid-f72a__links a:hover { color: #fff; }
.bl-grid-f72a__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; }
.bl-grid-f72a__social { display: flex; gap: 0.75rem; }
.bl-grid-f72a__social a { color: rgba(255,255,255,0.7); }
.bl-grid-f72a__social a:hover { color: #fff; }

/* Footer: legal bar */
.bl-grid-f72a__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;
}
.bl-grid-f72a__legal li { list-style: none; }
.bl-grid-f72a__legal a { color: rgba(255,255,255,0.55); }
.bl-grid-f72a__legal a:hover { color: rgba(255,255,255,0.9); }

/* Footer: custom HTML */
.bl-grid-f72a__custom { padding: 0.75rem 0; }

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--ff-body);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.01em;
    border: var(--border-w) solid var(--brand-color);
    background: transparent;
    color: var(--brand-color);
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
}
.btn:hover { background: var(--brand-color); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-primary {
    background: var(--brand-color);
    color: #fff;
    border-color: var(--brand-color);
}
.btn-primary:hover { background: var(--accent-color); border-color: var(--accent-color); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-outline {
    background: transparent;
    color: var(--brand-color);
    border: 2px solid var(--brand-color);
}
.btn-outline:hover { background: var(--brand-color); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
/* Gradient button style */
.btn-primary {
    background: linear-gradient(180deg, hsl(88,90%,48%) 0%, hsl(88,90%,38%) 100%);
    border-color: hsl(88,90%,35%);
    text-shadow: 0 1px 0 rgba(0,0,0,0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
    background: linear-gradient(180deg, hsl(88,90%,44%) 0%, hsl(88,90%,34%) 100%);
    border-color: hsl(88,90%,30%);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 3px 8px rgba(0,0,0,0.15);
}
.btn-primary:active {
    background: linear-gradient(180deg, hsl(88,90%,34%) 0%, hsl(88,90%,40%) 100%);
    transform: translateY(0);
    box-shadow: inset 0 2px 3px rgba(0,0,0,0.15);
}
.cta-link {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--ff-body);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.01em;
    background: var(--brand-color);
    color: #fff;
    border: var(--border-w) solid var(--brand-color);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    cursor: pointer;
    transition: all var(--transition);
}
.cta-link:hover { background: var(--accent-color); border-color: var(--accent-color); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

/* === Section modifier utility classes === */
.bg--gradient { background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-alt) 100%) !important; }
.bg--muted {
    background: var(--brand-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);
}
.bg--muted, .bg--muted p, .bg--muted li, .bg--muted span, .bg--muted h2, .bg--muted h3 { color: #1e293b !important; }
.bg--muted .ui-stack-f2fe__number { color: var(--brand-dark) !important; }
.bg--muted .ui-stack-f2fe__label { color: #475569 !important; }
.bg--muted .ui-stack-f2fe__bar { background: var(--brand-dark) !important; color: #fff !important; }
.bg--muted .ui-stack-f2fe__bar .ui-stack-f2fe__number, .bg--muted .ui-stack-f2fe__bar .ui-stack-f2fe__label { color: #fff !important; }
.layer--blur {
    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--blur h2, .layer--blur h3, .layer--blur p, .layer--blur span { color: #1e293b; }
.layer--blur .ui-stack-f2fe__number { color: var(--brand-dark); }
.layer--tint {
    background: var(--brand-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(--accent-color);
    --color-primary-dark: var(--accent-color);
    --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 { color: var(--accent-color); }
.layer--tint .block-subtitle { color: rgba(255,255,255,0.7); }

/* === Card modifier utility classes === */
.item--lift { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.box--chevron { border: var(--border-w) solid var(--border-color); 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); }
.tile--shadow { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.tile--shadow:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.tile--plain { box-shadow: none; border: none; background: var(--bg-alt); }
.tile--arrow { position: relative; padding-right: 2.5rem; cursor: pointer; transition: border-color 0.2s; }
.tile--arrow::after { content: '\2192'; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 1.1rem; transition: right 0.2s, color 0.2s; }
.tile--arrow:hover { border-color: var(--brand-color); }
.tile--arrow:hover::after { right: 0.75rem; color: var(--brand-color); }

/* === Forms === */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    width: 100%;
    padding: 10px 14px;
    border: var(--border-w) solid var(--border-color);
    border-radius: var(--radius);
    background: var(--card-bg);
    color: var(--text-main);
    font-family: var(--ff-body);
    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(--brand-color); box-shadow: 0 0 0 3px var(--brand-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; }

    .blk-0bd6e8 .st-block-05a4f4 { font-size: 0.8rem; flex-wrap: wrap; justify-content: center; text-align: center; }

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

    .blk-main-3307--split > .st-block-05a4f4 { grid-template-columns: 1fr !important; }
    .blk-main-3307--left-aligned > .st-block-05a4f4 { grid-template-columns: 1fr !important; }
    .blk-main-3307__decor { min-height: auto; align-items: center; }
    .blk-main-3307__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    .blk-main-3307__buttons { flex-direction: column; }
    .blk-main-3307__buttons .blk-main-3307__btn { text-align: center; }
    .blk-main-3307__stats-row { gap: 1.5rem; }
    .blk-main-3307__features-grid { grid-template-columns: 1fr 1fr !important; }
    .blk-main-3307--checklist .blk-main-3307__check-grid { grid-template-columns: 1fr !important; }
    .blk-main-3307__badges-row { gap: 0.5rem; }
    .blk-main-3307__badge { padding: 8px 12px; font-size: 0.8rem; }
    .blk-main-3307__metrics-layout { grid-template-columns: 1fr; }

    .ui-stack-f2fe--bar .ui-stack-f2fe__bar { flex-wrap: wrap; }
    .ui-stack-f2fe__grid { gap: 1.25rem; }
    .ui-stack-f2fe__number { font-size: 1.75rem; }

    .hd-7266b__grid { grid-template-columns: 1fr !important; }
    .hd-7266b--numbered .hd-7266b__grid { grid-template-columns: 1fr !important; }

    .bl-fa7f__grid { grid-template-columns: 1fr !important; }
    .bl-fa7f__row { grid-template-columns: 1fr !important; gap: 0.75rem; }
    .bl-fa7f__list-item { flex-direction: column; text-align: center; }

    .st-cell-1c3b22__grid { grid-template-columns: 1fr !important; }

    .mn-inner-45142b__split-grid { grid-template-columns: 1fr !important; }

    .hd-hub-df1202__grid { grid-template-columns: 1fr !important; }
    .hd-hub-df1202__list-item { flex-direction: column; gap: 0.5rem; }
    .hd-hub-df1202__inline-grid { flex-direction: column; }

    .cmp-4d45__grid { grid-template-columns: 1fr 1fr !important; }
    .cmp-4d45__item:not(:last-child)::after { display: none; }

    .box-e08e276__grid { grid-template-columns: 1fr !important; }
    .box-e08e276--featured .box-e08e276__grid { grid-template-columns: 1fr !important; }
    .box-e08e276--horizontal .box-e08e276__row { flex-direction: column; align-items: center; text-align: center; }
    .box-e08e276--horizontal .box-e08e276__avatar { margin: 0 auto; }
    .box-e08e276--masonry .box-e08e276__grid { column-count: 1; }
    .box-e08e276--sidebar .box-e08e276__layout { grid-template-columns: 1fr !important; }
    .box-e08e276--sidebar .box-e08e276__side { position: static; }
    .box-e08e276--sidebar .box-e08e276__side h2 { text-align: center; }
    .box-e08e276--sidebar .box-e08e276__side::after { margin: 1rem auto; }
    .box-e08e276--stack .box-e08e276__card { flex-direction: column; text-align: center; }
    .box-e08e276--stack .box-e08e276__author { text-align: center; }

    .ui-grid-c054__grid { grid-template-columns: 1fr 1fr !important; }

    .itm-cell-c6cfbe__grid { grid-template-columns: 1fr !important; }

    .st-grid-d89610__faq-grid { grid-template-columns: 1fr !important; }

    .lay-28b4cb4__grid { grid-template-columns: 1fr 1fr !important; }
    .lay-28b4cb4--list .lay-28b4cb4__card { flex-direction: column; text-align: center; }
    .lay-28b4cb4--list .lay-28b4cb4__photo { width: 100%; }
    .wp-col-c75080__grid { grid-template-columns: 1fr 1fr !important; }
    .pg-view-b4d6__grid { grid-template-columns: 1fr !important; }
    .pg-view-b4d6__table { font-size: 0.85rem; overflow-x: auto; display: block; }
    .box-area-3b812__grid { grid-template-columns: 1fr !important; }
    .box-area-3b812--case .box-area-3b812__item { grid-template-columns: 1fr !important; }
    .crd-view-f6b82__item img { max-height: 30px; }

    .bl-grid-f72a__grid { grid-template-columns: 1fr !important; }
    .bl-grid-f72a__col nav ul { column-count: 1; }
    .bl-grid-f72a__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-4d45__grid { grid-template-columns: 1fr !important; }
    .ui-grid-c054__grid { grid-template-columns: 1fr !important; }

    .ui-stack-f2fe__grid { flex-direction: column; align-items: center; }
    .ui-stack-f2fe--bar .ui-stack-f2fe__bar { flex-direction: column; }
    .ui-stack-f2fe--bar .ui-stack-f2fe__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .ui-stack-f2fe--bar .ui-stack-f2fe__item:last-child { border-bottom: none; }

    .blk-main-3307__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 */
.hd-6e9a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}
@media (max-width: 600px) {
    .hd-6e9a { grid-template-columns: 1fr !important; }
}

/* Content utility: card */
.mn-card-915e8e {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: var(--card-bg);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    
    transition: all 0.25s ease;
}
.mn-card-915e8e h3,
.mn-card-915e8e h4 { margin: 0 0 0.5rem; }
.mn-card-915e8e p:last-child { margin-bottom: 0; }
.mn-card-915e8e:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }

/* Content utility: list */
.cmp-main-2afb76b {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cmp-main-2afb76b li {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.6;
}
.cmp-main-2afb76b li::before {
    content: '\2713'; color: var(--brand-color);
    position: absolute; left: 0;
    font-size: 1em;
}

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

/* --- Casino / sportsbook ranked list (shared layout) --- */
.box-strip-6fa99__list, .bl-cta-c94a__list, .wp-rail-78543b7__list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.box-strip-6fa99__item, .bl-cta-c94a__item, .wp-rail-78543b7__item {
    display: grid; align-items: center; gap: 0.75rem 1.25rem;
    background: var(--card-bg); border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
}
.box-strip-6fa99__item { grid-template-columns: auto auto minmax(0,1fr) auto auto; }
.bl-cta-c94a__item, .wp-rail-78543b7__item { grid-template-columns: auto auto minmax(0,1fr) auto; }
.box-strip-6fa99__item:hover, .bl-cta-c94a__item:hover, .wp-rail-78543b7__item:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.box-strip-6fa99__rank, .bl-cta-c94a__rank, .wp-rail-78543b7__rank { font-size: 1.4rem; font-weight: 800; color: var(--brand-color); min-width: 2rem; text-align: center; }
.box-strip-6fa99__logo img, .bl-cta-c94a__logo img, .wp-rail-78543b7__logo img { max-width: 92px; height: auto; border-radius: 8px; display: block; }
.box-strip-6fa99__meta h3, .bl-cta-c94a__meta h3, .wp-rail-78543b7__meta h3 { margin: 0 0 0.35rem; font-size: 1.1rem; }
.box-strip-6fa99__rating { display: flex; align-items: center; gap: 0.5rem; }
.box-strip-6fa99__stars { position: relative; display: inline-block; width: 92px; height: 10px; border-radius: 5px; background: var(--border-color); overflow: hidden; }
.box-strip-6fa99__stars::before { content: ''; position: absolute; inset: 0; width: var(--ig-stars, 0%); background: linear-gradient(90deg, #f5a623, #f7c948); }
.box-strip-6fa99__score, .wp-rail-78543b7__rating { font-weight: 700; color: color-mix(in srgb, var(--brand-color) 55%, var(--text-main)); font-size: 0.9rem; }
.box-strip-6fa99__license, .bl-cta-c94a__meta small, .wp-rail-78543b7__meta small { font-size: 0.78rem; color: var(--text-muted); }
.box-strip-6fa99__bonus { text-align: center; }
.box-strip-6fa99__bonus strong { display: block; color: var(--text-main); font-weight: 800; }
.box-strip-6fa99__bonus small, .wp-rail-78543b7__offer { display: block; font-size: 0.78rem; color: var(--text-muted); }
.box-strip-6fa99__actions, .wp-rail-78543b7__actions { display: flex; flex-direction: column; gap: 0.5rem; }
.box-strip-6fa99__cta-primary, .wp-rail-78543b7__cta-primary, .bl-cta-c94a__cta {
    display: inline-block; text-align: center; padding: 0.6rem 1.1rem; border-radius: var(--radius);
    background: var(--accent-color); color: #fff; font-weight: 700; text-decoration: none; white-space: nowrap;
    transition: filter var(--transition), transform var(--transition);
}
.box-strip-6fa99__cta-primary:hover, .wp-rail-78543b7__cta-primary:hover, .bl-cta-c94a__cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
.box-strip-6fa99__cta-secondary, .wp-rail-78543b7__cta-secondary { display: inline-block; text-align: center; font-size: 0.82rem; color: var(--brand-color); text-decoration: none; }
.box-strip-6fa99__cta-secondary:hover, .wp-rail-78543b7__cta-secondary:hover { text-decoration: underline; }
.bl-cta-c94a__specs, .wp-rail-78543b7__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(--text-muted); }

/* --- Bonuses grid --- */
.box-block-a9f7b__grid, .lay-outer-e2638e__grid, .el-area-37eafc__grid, .hd-inner-3c42ad__grid, .wp-aside-0e39d6__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.box-block-a9f7b__card, .el-area-37eafc__card {
    display: flex; flex-direction: column; gap: 0.5rem; background: var(--card-bg);
    border: 1px solid var(--border-color); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow);
}
.box-block-a9f7b__type { display: inline-block; align-self: flex-start; background: var(--brand-light); color: var(--brand-dark); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.15rem 0.6rem; border-radius: 999px; }
.box-block-a9f7b__casino { font-weight: 700; font-size: 1.05rem; }
.box-block-a9f7b__amount, .el-area-37eafc__jackpot { font-size: 1.5rem; font-weight: 800; color: var(--brand-color); }
.box-block-a9f7b__terms, .el-area-37eafc__meta { list-style: none; padding: 0; margin: 0.25rem 0; display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.85rem; color: var(--text-muted); }
.box-block-a9f7b__code { font-size: 0.85rem; }
.box-block-a9f7b__code code { background: var(--bg-alt); padding: 0.15rem 0.5rem; border-radius: 4px; font-weight: 700; }
.box-block-a9f7b__tcs { margin-top: auto; opacity: 0.6; font-size: 0.72rem; }

/* --- Slots / providers / game categories cards --- */
.lay-outer-e2638e__card, .hd-inner-3c42ad__card { display: flex; flex-direction: column; gap: 0.5rem; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); text-decoration: none; color: inherit; transition: box-shadow var(--transition), transform var(--transition); }
.hd-inner-3c42ad__card:hover, .lay-outer-e2638e__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.lay-outer-e2638e__thumb { aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; }
.lay-outer-e2638e__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lay-outer-e2638e__card h3, .hd-inner-3c42ad__card h3 { margin: 0; font-size: 1rem; }
.lay-outer-e2638e__prov { font-size: 0.78rem; color: var(--text-muted); }
.lay-outer-e2638e__specs { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.3rem 0.75rem; font-size: 0.8rem; color: var(--text-muted); }
.wp-aside-0e39d6__item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; padding: 1rem; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--radius); text-align: center; }
.wp-aside-0e39d6__item img { max-height: 40px; width: auto; }
.wp-aside-0e39d6__name-only { font-weight: 700; }
.hd-inner-3c42ad__card img { max-height: 48px; width: auto; }

/* --- Jackpot ticker --- */
.cmp-cell-67e08__row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.25rem; }
.cmp-cell-67e08__item { flex: 1 1 180px; max-width: 260px; text-align: center; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); }
.cmp-cell-67e08__game { font-size: 0.85rem; color: var(--text-muted); }
.cmp-cell-67e08__amount { font-size: 1.5rem; font-weight: 800; color: var(--brand-color); font-variant-numeric: tabular-nums; }
.cmp-cell-67e08__item small { font-size: 0.72rem; color: var(--text-muted); }

/* --- Payment methods --- */
.box-73a13__row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }
.box-73a13__item { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 999px; padding: 0.3rem 0.85rem 0.3rem 0.3rem; font-size: 0.85rem; }
.box-73a13__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; }
.box-73a13__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) --- */
.itm-top-8982, .cmp-aside-af2f205 { text-align: center; }
.cmp-aside-af2f205 p { max-width: 720px; margin-left: auto; margin-right: auto; }
.itm-top-8982__row, .cmp-aside-af2f205__row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.25rem; justify-content: center; }
.itm-top-8982__badge, .cmp-aside-af2f205__badge { display: inline-flex; flex-direction: column; align-items: center; gap: 0.25rem; text-decoration: none; }
.itm-top-8982__chip, .cmp-aside-af2f205__chip { color: #fff; padding: 0.5rem 1.1rem; border-radius: 8px; font-weight: 700; font-size: 0.9rem; }
.itm-top-8982__badge small { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* --- Data tables (tournaments / rakeback / odds / results) --- */
.lay-inner-207eab__table, .mn-link-20f1c2__table, .sec-card-21ae5a__table, .wp-base-8dd4__table { width: 100%; border-collapse: collapse; margin-top: 1.25rem; font-size: 0.9rem; }
.lay-inner-207eab__table th, .mn-link-20f1c2__table th, .sec-card-21ae5a__table th, .wp-base-8dd4__table th { text-align: left; background: var(--brand-color); color: #fff; padding: 0.6rem 0.85rem; font-weight: 700; font-size: 0.82rem; }
.lay-inner-207eab__table td, .mn-link-20f1c2__table td, .sec-card-21ae5a__table td, .wp-base-8dd4__table td { padding: 0.6rem 0.85rem; border-bottom: 1px solid var(--border-color); }
.lay-inner-207eab__table tr:nth-child(even) td, .mn-link-20f1c2__table tr:nth-child(even) td, .sec-card-21ae5a__table tr:nth-child(even) td, .wp-base-8dd4__table tr:nth-child(even) td { background: var(--bg-alt); }
.wp-base-8dd4__numbers { font-weight: 700; letter-spacing: 0.04em; color: var(--brand-color); }

/* --- Events schedule --- */
.lay-cd79__list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.lay-cd79__row { display: grid; grid-template-columns: auto minmax(0,1fr) auto auto; align-items: center; gap: 0.75rem 1.25rem; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 0.85rem 1.1rem; }
.lay-cd79__sport { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); }
.lay-cd79__when { font-size: 0.82rem; color: var(--text-muted); }
.lay-cd79__odds { display: flex; gap: 0.4rem; }
.lay-cd79__odd { display: inline-flex; flex-direction: column; align-items: center; min-width: 2.6rem; background: var(--bg-alt); border-radius: 6px; padding: 0.25rem 0.4rem; }
.lay-cd79__odd label { font-size: 0.65rem; color: var(--text-muted); }
.lay-cd79__odd b { font-size: 0.9rem; color: var(--brand-color); }

/* --- Lotteries extra --- */
.el-area-37eafc__country { font-size: 0.78rem; color: var(--text-muted); }

/* --- Review methodology --- */
.sec-afb1__list { counter-reset: ig-step; list-style: none; padding: 0; margin: 1.25rem 0 0; display: flex; flex-direction: column; gap: 1rem; }
.sec-afb1__item { counter-increment: ig-step; position: relative; padding-left: 3rem; }
.sec-afb1__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(--brand-color); color: #fff; border-radius: 50%; font-weight: 800; }
.sec-afb1__item h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }

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

/* --- iGaming hero sub-elements (hero base styles inherited) --- */
.blk-main-3307--ig-slots-bg { position: relative; overflow: hidden; }
.blk-main-3307__age { display: inline-block; margin-top: 1rem; font-size: 0.8rem; font-weight: 600; opacity: 0.85; }
.blk-main-3307__top3 { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin: 1.25rem 0; }
.blk-main-3307__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; }
.blk-main-3307__top3-item span { font-size: 0.78rem; opacity: 0.85; }
.blk-main-3307__top3-item strong { font-size: 1rem; color: #f7c948; }
.blk-main-3307__counter, .blk-main-3307__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); }
.blk-main-3307__counter-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }
.blk-main-3307__counter-value, .blk-main-3307__promo strong { font-size: clamp(1.6rem, 5vw, 2.75rem); font-weight: 800; color: #f7c948; font-variant-numeric: tabular-nums; }
.blk-main-3307__mosaic { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; opacity: 0.16; pointer-events: none; }
.blk-main-3307__mosaic img { width: 100%; height: 100%; object-fit: cover; }
.blk-main-3307__trust-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; justify-content: center; margin: 1rem 0; font-size: 0.85rem; }
.blk-main-3307__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; }
.blk-main-3307__search { display: flex; gap: 0.5rem; max-width: 560px; margin: 1.5rem auto 0; }
.blk-main-3307__search input { flex: 1; margin: 0; }
.blk-main-3307__search button { padding: 0.65rem 1.25rem; border: 0; border-radius: var(--radius); background: var(--accent-color); color: #fff; font-weight: 700; cursor: pointer; }
.blk-main-3307__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1rem; }
.blk-main-3307__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 --- */
.bl-grid-ac8f__age { display: inline-block; background: var(--brand-color); color: #fff; font-weight: 700; font-size: 0.78rem; padding: 0.1rem 0.5rem; border-radius: 4px; }
.bl-grid-ac8f--sticky { position: sticky; top: 0; z-index: 200; }

/* --- iGaming footer extras (footer base grid/col/bottom inherited) --- */
.bl-grid-f72a__licenses, .bl-grid-f72a__rg-orgs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin: 0.85rem 0; font-size: 0.85rem; }
.bl-grid-f72a__licenses strong, .bl-grid-f72a__rg-orgs strong { opacity: 0.85; margin-right: 0.25rem; }
.bl-grid-f72a__lic, .bl-grid-f72a__rg, .bl-grid-f72a__gpwa { display: inline-block; text-decoration: none; }
.bl-grid-f72a__disclaimer { margin: 1rem 0; opacity: 0.6; font-size: 0.78rem; line-height: 1.55; }
.bl-grid-f72a__disclaimer a { text-decoration: underline; }
.bl-grid-f72a__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; }
.bl-grid-f72a__stats strong { display: block; font-size: 1.35rem; color: #fff; }
.bl-grid-f72a__stats small { opacity: 0.7; font-size: 0.78rem; }
.bl-grid-f72a__legal { list-style: none; margin: 0; padding: 0; border: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.bl-grid-f72a__legal li { margin: 0; list-style: none; }
.bl-grid-f72a__legal a { font-size: 0.85rem; }

@media (max-width: 768px) {
    .box-strip-6fa99__item, .bl-cta-c94a__item, .wp-rail-78543b7__item { grid-template-columns: auto 1fr; }
    .box-strip-6fa99__bonus, .box-strip-6fa99__actions, .wp-rail-78543b7__actions, .bl-cta-c94a__specs { grid-column: 1 / -1; }
    .box-strip-6fa99__actions, .wp-rail-78543b7__actions { flex-direction: row; flex-wrap: wrap; }
    .lay-cd79__row { grid-template-columns: 1fr; }
    .mn-main-cbf7__card { flex-direction: column; align-items: center; text-align: center; }
}
/* ============================================================
   iGaming casino flair (flair=1, ns=gc4dfb8) — motion-safe
   ============================================================ */
@keyframes gc4dfb8-sheen { 0% { transform: translateX(-130%) skewX(-18deg); } 60%,100% { transform: translateX(230%) skewX(-18deg); } }
@keyframes gc4dfb8-glow { 0%,100% { box-shadow: 0 0 0 1px var(--accent-color), 0 0 12px -2px var(--accent-color); } 50% { box-shadow: 0 0 0 1px var(--accent-color), 0 0 26px 2px var(--accent-color); } }
@keyframes gc4dfb8-shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

/* Primary CTAs: gradient + animated light sweep */
.box-strip-6fa99__cta-primary, .wp-rail-78543b7__cta-primary, .bl-cta-c94a__cta, .bl-grid-ac8f__cta {
    position: relative; overflow: hidden; border: 0;
    background: linear-gradient(120deg, var(--accent-color), var(--brand-color)); background-size: 180% 100%;
    color: #fff; font-weight: 800; letter-spacing: 0.01em;
    box-shadow: 0 6px 18px -6px var(--accent-color);
}
.box-strip-6fa99__cta-primary::after, .wp-rail-78543b7__cta-primary::after, .bl-cta-c94a__cta::after, .bl-grid-ac8f__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;
}
.box-strip-6fa99__cta-primary:hover, .wp-rail-78543b7__cta-primary:hover, .bl-cta-c94a__cta:hover, .bl-grid-ac8f__cta:hover { filter: brightness(1.06); }

/* #1 ranked item: glowing gradient frame + crown rank */
.box-strip-6fa99__list .box-strip-6fa99__item:first-child, .wp-rail-78543b7__list .wp-rail-78543b7__item:first-child, .bl-cta-c94a__list .bl-cta-c94a__item:first-child {
    border-color: transparent;
    background:
        linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
        linear-gradient(120deg, var(--accent-color), var(--brand-color)) border-box;
    border: 2px solid transparent;
}
.box-strip-6fa99__list .box-strip-6fa99__item:first-child .box-strip-6fa99__rank::before,
.wp-rail-78543b7__list .wp-rail-78543b7__item:first-child .wp-rail-78543b7__rank::before,
.bl-cta-c94a__list .bl-cta-c94a__item:first-child .bl-cta-c94a__rank::before { content: '\2605 '; color: #f7c948; }

/* Jackpot / bonus amounts: gold gradient text */
.blk-main-3307__counter-value, .blk-main-3307__promo strong, .cmp-cell-67e08__amount, .box-block-a9f7b__amount, .el-area-37eafc__jackpot, .box-strip-6fa99__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.55);
}

/* Hero counter / promo plate: subtle glowing frame */
.blk-main-3307__counter, .blk-main-3307__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) */
.box-strip-6fa99 > .sec-intro, .box-block-a9f7b > .sec-intro { position: relative; }

/* License chips subtle sheen on hover */
.itm-top-8982__chip { position: relative; overflow: hidden; }

@media (prefers-reduced-motion: no-preference) {
    .box-strip-6fa99__cta-primary:hover::after, .wp-rail-78543b7__cta-primary:hover::after,
    .bl-cta-c94a__cta:hover::after, .bl-grid-ac8f__cta:hover::after { animation: gc4dfb8-sheen 0.9s ease; }
    .box-strip-6fa99__list .box-strip-6fa99__item:first-child, .wp-rail-78543b7__list .wp-rail-78543b7__item:first-child,
    .bl-cta-c94a__list .bl-cta-c94a__item:first-child { animation: gc4dfb8-glow 3.2s ease-in-out infinite; }
    .blk-main-3307__counter-value, .blk-main-3307__promo strong, .cmp-cell-67e08__amount {
        animation: gc4dfb8-shimmer 4s linear infinite;
    }
}