/*
Theme Name: gymfinity-fse
Description: Starter theme for business sites
Version: 5.9
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;600;900&display=swap');

:root {
    --color-primary: hsl(225, 18%, 42%);
    --color-primary-dark: hsl(225, 18%, 27%);
    --color-primary-light: hsl(225, 0%, 85%);
    --color-accent: hsl(255, 18%, 52%);
    --color-accent-hover: hsl(255, 18%, 47%);
    --color-bg: #ffffff;
    --color-bg-alt: #f7f8fa;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-border: #e2e2e2;
    --color-card: #ffffff;
    --font-main: 'DM Sans', 'Segoe UI', Tahoma, sans-serif;
    --font-head: 'DM Sans', 'Segoe UI', Tahoma, sans-serif;
    --radius: 16px;
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.1);
    --border-w: 0;
    --container: 1200px;
    --gutter: 20px;
    --transition: 0.25s ease;
    /* Cross-set CSS variable aliases */
    --clr-main: var(--color-primary);
    --clr-main-dark: var(--color-primary-dark);
    --clr-main-light: var(--color-primary-light);
    --clr-accent: var(--color-accent);
    --clr-accent-hover: var(--color-accent-hover);
    --clr-surface: var(--color-bg);
    --clr-surface-alt: var(--color-bg-alt);
    --clr-body: var(--color-text);
    --clr-body-light: var(--color-text-light);
    --clr-border: var(--color-border);
    --clr-card: var(--color-card);
    --type-body: var(--font-main);
    --type-heading: var(--font-head);
    --brand-color: var(--color-primary);
    --brand-dark: var(--color-primary-dark);
    --brand-light: var(--color-primary-light);
    --accent-color: var(--color-accent);
    --accent-hover: var(--color-accent-hover);
    --bg-main: var(--color-bg);
    --bg-alt: var(--color-bg-alt);
    --text-main: var(--color-text);
    --text-muted: var(--color-text-light);
    --border-color: var(--color-border);
    --card-bg: var(--color-card);
    --ff-body: var(--font-main);
    --ff-heading: var(--font-head);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p, li, td, th, a, span, div { overflow-wrap: break-word; word-break: break-word; }

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: 0;
    text-wrap: balance;
}
h1 { font-size: clamp(2.00rem, 4.0vw + 0.80rem, 3.75rem); }
h2 { font-size: clamp(1.44rem, 2.9vw + 0.58rem, 2.64rem); }
h3 { font-size: clamp(1.24rem, 1.6vw + 0.50rem, 1.62rem); }
h4 { font-size: clamp(1.08rem, 1.3vw + 0.43rem, 1.35rem); }
h5 { font-size: clamp(0.89rem, 0.9vw + 0.36rem, 1.03rem); }
h6 { font-size: clamp(0.77rem, 0.7vw + 0.31rem, 0.90rem); }

p { margin-bottom: 1rem; }

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

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

/* === Section wrapper === */
.wrp-wrap-3ea8a0 {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.wrp-wrap-3ea8a0 > .wp-core-fc8ac > h2 { text-align: center; margin-bottom: 0.5rem; }
.wrp-wrap-3ea8a0 > .wp-core-fc8ac > .section-desc { margin-bottom: 2rem; }

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

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

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

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

/* === Header === */
.bl-view-733341 {
    background: var(--color-primary-dark);
    color: #fff;
    padding: 1.1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.bl-view-733341 .wp-core-fc8ac { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.bl-view-733341__brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.bl-view-733341__logo { max-height: 52px; width: auto; }
.bl-view-733341__brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: #fff; }
.bl-view-733341__row-brand .bl-view-733341__brand-name { color: var(--color-text); }
.bl-view-733341__nav { display: flex; gap: 0; list-style: none; align-items: center; }
.bl-view-733341__nav li { display: flex; align-items: center; list-style: none; }
.bl-view-733341__nav a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 1rem; white-space: nowrap; }
.bl-view-733341__nav a:hover { color: #fff; }
.bl-view-733341__nav a {
    padding: 6px 12px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.bl-view-733341__nav a:hover { background: rgba(255,255,255,0.08); border-bottom-color: rgba(255,255,255,0.5); }
.bl-view-733341__nav a.current-menu-item { border-bottom-color: #fff; }
.bl-view-733341__nav li + li::before { content: '/'; margin: 0 0.55rem; opacity: 0.35; }

.bl-view-733341__actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.bl-view-733341__phone a { color: #fff; font-weight: 600; font-size: 1.05rem; white-space: nowrap; }
.bl-view-733341__phone a:hover { color: var(--color-accent); }
.bl-view-733341__cta {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
}
.bl-view-733341__cta:hover { background: var(--color-accent-hover); color: #fff; transform: translateY(-1px); }
.bl-view-733341__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-view-733341--white { background: var(--color-bg); color: var(--color-text); border-bottom: 1px solid var(--color-border); box-shadow: none; }
.bl-view-733341--white .bl-view-733341__brand-name { color: var(--color-text); }
.bl-view-733341--white .bl-view-733341__nav a { color: var(--color-text); opacity: 0.75; }
.bl-view-733341--white .bl-view-733341__nav a:hover { color: var(--color-primary); opacity: 1; }
.bl-view-733341--white .bl-view-733341__phone a { color: var(--color-text); }
.bl-view-733341--white .bl-view-733341__burger { color: var(--color-text); }

/* === Primary nav submenu (dropdown navMode) === */
.bl-view-733341__nav li { position: relative; }
.bl-view-733341__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; }
.bl-view-733341__nav li:hover > .sub-menu { display: block; }
.bl-view-733341__nav .sub-menu li { max-width: none; }
.bl-view-733341__nav .sub-menu a { display: block; padding: 0.4rem 1rem; color: var(--color-text, #333); font-size: 0.88rem; white-space: nowrap; }
.bl-view-733341__nav .sub-menu a:hover { background: var(--color-bg-alt, #f5f5f5); color: var(--color-primary); }

/* === Secondary Nav === */
.bl-view-733341__sec-nav {
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    padding: 0.4rem 0;
    font-size: 0.9rem;
}
.bl-view-733341__sec-links { display: flex; gap: 1.25rem; list-style: none; flex-wrap: wrap; justify-content: center; }
.bl-view-733341__sec-links li { list-style: none; max-width: 220px; }
.bl-view-733341__sec-links a { color: var(--color-text); font-weight: 500; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.3; }
.bl-view-733341__sec-links a:hover { color: var(--color-primary); }
.bl-view-733341__sec-nav--dropdown { position: relative; padding: 0; }
.bl-view-733341__sec-nav--dropdown > div { position: relative; }
.bl-view-733341__sec-toggle {
    display: inline-flex; align-items: center; gap: 0.3rem; cursor: pointer;
    padding: 0.45rem 0; font-weight: 600; font-size: 0.85rem; color: var(--color-text);
}
.bl-view-733341__sec-arrow { font-size: 0.7em; transition: transform 0.2s; }
.bl-view-733341__sec-nav--dropdown .bl-view-733341__sec-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 50;
    background: var(--color-bg); border: 1px solid var(--color-border); border-top: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); padding: 0.75rem 1rem;
    flex-wrap: wrap; gap: 0.6rem 1.5rem;
}
.bl-view-733341__sec-nav--dropdown:hover .bl-view-733341__sec-links { display: flex; }
.bl-view-733341__sec-nav--dropdown:hover .bl-view-733341__sec-arrow { transform: rotate(180deg); }
.bl-view-733341__sec-nav--dropdown .bl-view-733341__sec-links a { font-size: 0.85rem; white-space: nowrap; display: inline; -webkit-line-clamp: unset; }

/* === Hero === */
.ui-6872 {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    padding: 3rem 0 2.5rem; min-height: 70vh; display: flex; align-items: center;
    background-size: cover;
    background-position: center;
}
.ui-6872 > .wp-core-fc8ac { width: 100%; }
.ui-6872::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 0;
}
.ui-6872 { position: relative; }
.ui-6872 > .wp-core-fc8ac { position: relative; z-index: 1; }
@keyframes tgad742b { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.ui-6872{background:linear-gradient(135deg,hsl(225, 18%, 27%),hsl(225, 18%, 42%),hsl(255, 18%, 52%),hsl(225, 18%, 27%))!important;background-size:400% 400%;animation:tgad742b 18s ease-in-out infinite;}

.ui-6872--split > .wp-core-fc8ac { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.ui-6872--split .ui-6872__buttons { justify-content: flex-start; }

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

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

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

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

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

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

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

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

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

/* === Hero: saas-metrics variant === */
.ui-6872--saas-metrics > .wp-core-fc8ac { text-align: left; }
.ui-6872__metrics-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.ui-6872__metrics-text .ui-6872__buttons { justify-content: flex-start; }
.ui-6872__metrics-grid { display: grid; gap: 1rem; }
.ui-6872__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;
}
.ui-6872__metric-card h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.ui-6872__metric-card p { margin: 0; font-size: 0.9rem; opacity: 0.85; }
.ui-6872__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;
}
.ui-6872__metric-icon--0 { background: hsla(225,18%,42%,0.12); }
.ui-6872__metric-icon--1 { background: hsla(255,18%,50%,0.12); }
.ui-6872__metric-icon--2 { background: hsla(225,18%,85%,0.15); }
.ui-6872--light .ui-6872__metric-card { background: var(--color-card); border-color: var(--color-border); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.ui-6872--light .ui-6872__metric-card h3 { color: var(--color-text); }
.ui-6872--light .ui-6872__metric-card p { color: var(--color-text-light); }

/* === Stats === */
.box-block-156c { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.box-block-156c > .wp-core-fc8ac > h2 { text-align: center; margin-bottom: 1.5rem; }
.box-block-156c__grid { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; text-align: center; }
.box-block-156c__item { min-width: 120px; }
.box-block-156c__number { font-size: 2.25rem; font-weight: 700; font-family: var(--font-head); color: var(--color-primary); line-height: 1.2; }
.box-block-156c__label { font-size: 0.9rem; color: var(--color-text-light); margin-top: 0.2rem; }

/* Stats variant: cards */
.box-block-156c--cards .box-block-156c__grid { gap: 1.25rem; }
.box-block-156c--cards .box-block-156c__item {
    padding: 1.25rem;
    background: var(--color-card);
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 160px;
    flex: 1;
}

/* Stats variant: bar */
.box-block-156c--bar { padding: 0; }
.box-block-156c__bar {
    display: flex;
    background: var(--color-primary-dark);
    color: #fff;
    padding: 1.25rem 0;
}
.box-block-156c--bar .box-block-156c__item { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 1rem; }
.box-block-156c--bar .box-block-156c__item:last-child { border-right: none; }
.box-block-156c--bar .box-block-156c__number { color: #fff; font-size: 2rem; }
.box-block-156c--bar .box-block-156c__label { color: rgba(255,255,255,0.8); }

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

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

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

/* Adv variant: list */
.box-list-d15e--list .box-list-d15e__grid { grid-template-columns: 1fr; gap: 1rem; }
.box-list-d15e--list .box-list-d15e__item { display: flex; gap: 1.25rem; text-align: left; align-items: flex-start; }
.box-list-d15e--list .box-list-d15e__icon { flex-shrink: 0; }
.box-list-d15e--list .box-list-d15e__text p { margin-bottom: 0; }

/* Adv variant: numbered */
.box-list-d15e--numbered .box-list-d15e__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.box-list-d15e--numbered .box-list-d15e__item { display: flex; gap: 1rem; text-align: left; padding: 1.25rem; }
.box-list-d15e__num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: var(--radius);
    font-family: var(--font-head);
}
.box-list-d15e--numbered .box-list-d15e__text p { margin-bottom: 0; }

/* Adv variant: bordered */
.box-list-d15e--bordered .box-list-d15e__item {
    border: var(--border-w) solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    text-align: left;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.box-list-d15e--bordered .box-list-d15e__item:hover { border-left-color: var(--color-accent); }

/* === Tariffs === */
.mod-form-9d867 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.mod-form-9d867 > .wp-core-fc8ac > h2 { text-align: center; margin-bottom: 1.5rem; }
.mod-form-9d867__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.mod-form-9d867__card {
    padding: 1.75rem;
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
    background: var(--color-card);
}
.mod-form-9d867__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.mod-form-9d867__card--highlighted { border-color: var(--color-primary); box-shadow: 0 0 0 2px var(--color-primary-light); position: relative; }
.mod-form-9d867__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;
}
.mod-form-9d867__price { font-size: 1.75rem; font-weight: 700; color: var(--color-primary); margin: 0.5rem 0; }
.mod-form-9d867__features { list-style: none; padding: 0; margin: 0.75rem 0; text-align: left; }
.mod-form-9d867__features li { padding: 0.35rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.9rem; }

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

/* Tariff variant: minimal */
.mod-form-9d867--minimal .mod-form-9d867__grid { display: none; }
.mod-form-9d867__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
}
.mod-form-9d867--minimal .mod-form-9d867__price { font-size: 1.25rem; white-space: nowrap; margin: 0; }

/* === Benefits === */
.pg-top-4ca53c { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.pg-top-4ca53c > .wp-core-fc8ac > h2 { text-align: center; margin-bottom: 1.5rem; }
.pg-top-4ca53c__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.pg-top-4ca53c__item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.pg-top-4ca53c__item h3 { margin-bottom: 0.2rem; }

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

/* Benefits variant: icons */
.pg-top-4ca53c--icons .pg-top-4ca53c__item { flex-direction: column; text-align: center; align-items: center; }
.pg-top-4ca53c__icon-big { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }
.pg-top-4ca53c__icon-big img { width: 56px; height: 56px; }

/* === FAQ === */
.box-093d0#faq { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.box-093d0#faq h2, .box-093d0 > .wp-core-fc8ac > h2 { text-align: center; margin-bottom: 1.5rem; }

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

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

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

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

/* CTA variant: split */
.pnl-shelf-43c853--split { text-align: left; }
.pnl-shelf-43c853__split-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: center; }
.pnl-shelf-43c853__split-action { text-align: center; }

/* === Products === */
.wrp-stack-71c34 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.wrp-stack-71c34 > .wp-core-fc8ac > h2 { text-align: center; margin-bottom: 1.5rem; }
.wrp-stack-71c34__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.wrp-stack-71c34__card {
    border-radius: var(--radius);
    overflow: hidden;
    border: var(--border-w) solid var(--color-border);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
    background: var(--color-card);
}
.wrp-stack-71c34__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.wrp-stack-71c34__card-body { padding: 1.25rem; }

/* Products variant: list */
.wrp-stack-71c34--list .wrp-stack-71c34__grid { display: none; }
.wrp-stack-71c34__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}
.wrp-stack-71c34__list-item:last-child { border-bottom: none; }
.wrp-stack-71c34__list-item p { margin: 0; }

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

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

/* Transparent header: push hero content below header */
.bl-view-733341--transparent ~ main > .ui-6872 { padding-top: calc(80px + 2rem); }
/* Transparent header on non-hero pages (single, subpages): push first child down */
.bl-view-733341--transparent ~ main > .wp-core-fc8ac:first-child { padding-top: calc(80px + 2rem); }
.bl-view-733341--transparent ~ main > .box-093d0:first-child { padding-top: calc(80px + 2rem); }

/* === Testimonials === */
.pg-shelf-83a41 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.pg-shelf-83a41 > .wp-core-fc8ac > h2 { text-align: center; margin-bottom: 1.5rem; }
.pg-shelf-83a41__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.pg-shelf-83a41__card {
    padding: 1.5rem;
    background: var(--color-card);
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.pg-shelf-83a41__quote {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    padding: 0;
    border: none;
    color: var(--color-text);
    position: relative;
    padding-left: 1.5rem;
}
.pg-shelf-83a41__quote::before { content: '\201C'; font-size: 2.5rem; color: var(--color-primary-light); position: absolute; top: -0.5rem; left: 0; font-family: serif; line-height: 1; }
.pg-shelf-83a41__author { display: flex; gap: 0.75rem; align-items: center; }
.pg-shelf-83a41__avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.pg-shelf-83a41__avatar img { width: 100%; height: 100%; object-fit: cover; }
.pg-shelf-83a41__position { display: block; color: var(--color-text-light); font-size: 0.9rem; }
.pg-shelf-83a41__cite { display: block; font-style: normal; margin-top: 0.75rem; color: var(--color-text-light); }
.pg-shelf-83a41__cite strong { color: var(--color-text); }
.pg-shelf-83a41__meta { color: var(--color-text-light); font-size: 0.9rem; }
.pg-shelf-83a41__meta strong { color: var(--color-text); }

/* -- test-bubble -- */
.pg-shelf-83a41--bubble .pg-shelf-83a41__bubble {
    background: var(--color-card);
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    position: relative;
    margin-bottom: 1rem;
}
.pg-shelf-83a41--bubble .pg-shelf-83a41__bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 24px;
    width: 0; height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--color-card);
}
.pg-shelf-83a41--bubble .pg-shelf-83a41__bubble::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 23px;
    width: 0; height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid var(--color-border);
}
.pg-shelf-83a41--bubble .pg-shelf-83a41__card { background: none; border: none; box-shadow: none; padding: 0; }
.pg-shelf-83a41--bubble .pg-shelf-83a41__quote { padding-left: 0; margin: 0; }
.pg-shelf-83a41--bubble .pg-shelf-83a41__quote::before { display: none; }
.pg-shelf-83a41--bubble .pg-shelf-83a41__author { padding-left: 0.5rem; }

/* -- test-minimal -- */
.pg-shelf-83a41--minimal { text-align: center; }
.pg-shelf-83a41--minimal .wp-core-fc8ac > h2 { margin-bottom: 2rem; }
.pg-shelf-83a41--minimal .pg-shelf-83a41__list { max-width: 700px; margin: 0 auto; }
.pg-shelf-83a41--minimal .pg-shelf-83a41__item { padding: 2rem 0; border-bottom: 1px solid var(--color-border); }
.pg-shelf-83a41--minimal .pg-shelf-83a41__item:last-child { border-bottom: none; }
.pg-shelf-83a41--minimal .pg-shelf-83a41__quote { font-size: 1.1rem; padding-left: 0; }
.pg-shelf-83a41--minimal .pg-shelf-83a41__quote::before { display: none; }

/* -- test-featured -- */
.pg-shelf-83a41--featured .pg-shelf-83a41__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.pg-shelf-83a41--featured .pg-shelf-83a41__card--feat {
    grid-column: 1 / -1;
    border-left: 4px solid var(--color-primary);
    background: color-mix(in srgb, var(--color-primary) 5%, var(--color-card));
}
.pg-shelf-83a41--featured .pg-shelf-83a41__card--feat .pg-shelf-83a41__avatar { width: 72px; height: 72px; }

/* -- test-horizontal -- */
.pg-shelf-83a41--horizontal .pg-shelf-83a41__row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--color-card);
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.pg-shelf-83a41--horizontal .pg-shelf-83a41__row:last-child { margin-bottom: 0; }
.pg-shelf-83a41--horizontal .pg-shelf-83a41__avatar { width: 64px; height: 64px; border-radius: 8px; flex-shrink: 0; overflow: hidden; }
.pg-shelf-83a41--horizontal .pg-shelf-83a41__avatar img { border-radius: 8px; }
.pg-shelf-83a41--horizontal .pg-shelf-83a41__content { flex: 1; }
.pg-shelf-83a41--horizontal .pg-shelf-83a41__quote { padding-left: 0; margin-bottom: 0.75rem; }
.pg-shelf-83a41--horizontal .pg-shelf-83a41__quote::before { display: none; }

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

/* -- test-large-avatar -- */
.pg-shelf-83a41--lg-avatar .pg-shelf-83a41__card { text-align: center; }
.pg-shelf-83a41--lg-avatar .pg-shelf-83a41__avatar { width: 80px; height: 80px; margin: 0 auto 1rem; }
.pg-shelf-83a41--lg-avatar .pg-shelf-83a41__quote { padding-left: 0; text-align: center; }
.pg-shelf-83a41--lg-avatar .pg-shelf-83a41__quote::before { position: static; display: block; text-align: center; margin-bottom: -0.5rem; }
.pg-shelf-83a41--lg-avatar .pg-shelf-83a41__meta { margin-top: 0.75rem; }

/* -- test-masonry -- */
.pg-shelf-83a41--masonry .pg-shelf-83a41__grid { display: block; column-count: 2; column-gap: 1.25rem; }
.pg-shelf-83a41--masonry .pg-shelf-83a41__card { break-inside: avoid; margin-bottom: 1.25rem; border-top: 3px solid var(--color-primary); box-shadow: none; }
.pg-shelf-83a41--masonry .pg-shelf-83a41__quote::before { display: none; }
.pg-shelf-83a41--masonry .pg-shelf-83a41__quote { padding-left: 0; }

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

/* -- test-stack -- */
.pg-shelf-83a41--stack .pg-shelf-83a41__grid { display: flex; flex-direction: column; gap: 0; }
.pg-shelf-83a41--stack .pg-shelf-83a41__card { display: flex; gap: 1.5rem; align-items: center; padding: 2rem; border: none; border-radius: 0; box-shadow: none; }
.pg-shelf-83a41--stack .pg-shelf-83a41__card:nth-child(even) { background: var(--color-bg-alt); }
.pg-shelf-83a41--stack .pg-shelf-83a41__card:nth-child(odd) { background: var(--color-card); }
.pg-shelf-83a41--stack .pg-shelf-83a41__quote { flex: 1; padding-left: 0; margin-bottom: 0; }
.pg-shelf-83a41--stack .pg-shelf-83a41__quote::before { display: none; }
.pg-shelf-83a41--stack .pg-shelf-83a41__author { flex-shrink: 0; text-align: right; }
.pg-shelf-83a41--stack .pg-shelf-83a41__avatar { width: 56px; height: 56px; }

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

/* === Gallery === */
.lay-promo-7f59f3 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.lay-promo-7f59f3 > .wp-core-fc8ac > h2 { text-align: center; margin-bottom: 1.5rem; }
.lay-promo-7f59f3__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0.75rem; }
.lay-promo-7f59f3__item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.lay-promo-7f59f3__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.lay-promo-7f59f3__item:hover img { transform: scale(1.05); }
.lay-promo-7f59f3__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-cta-4f5d052 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.itm-cta-4f5d052 > .wp-core-fc8ac > h2 { text-align: center; margin-bottom: 1.5rem; }
.itm-cta-4f5d052__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.itm-cta-4f5d052__thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 0.75rem; }
.itm-cta-4f5d052__thumb img { width: 100%; height: 180px; object-fit: cover; display: block; }
.itm-cta-4f5d052__date { font-size: 0.8rem; color: var(--color-text-light); display: block; margin-bottom: 0.25rem; }
.itm-cta-4f5d052__excerpt { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; }
.itm-cta-4f5d052__more { font-size: 0.85rem; color: var(--color-primary); text-decoration: none; font-weight: 500; }
.itm-cta-4f5d052__more:hover { text-decoration: underline; }
/* Blog: list variant */
.itm-cta-4f5d052--list .itm-cta-4f5d052__item { display: flex; gap: 1.25rem; padding: 1rem 0; border-bottom: 1px solid var(--color-border); }
.itm-cta-4f5d052--list .itm-cta-4f5d052__thumb { flex-shrink: 0; width: 200px; margin: 0; }
.itm-cta-4f5d052--list .itm-cta-4f5d052__thumb img { height: 130px; }
.itm-cta-4f5d052--list .itm-cta-4f5d052__item-body h3 { margin: 0 0 0.25rem; font-size: 1.1rem; }
.itm-cta-4f5d052--list .itm-cta-4f5d052__item-body h3 a { color: var(--color-text); text-decoration: none; }
.itm-cta-4f5d052--list .itm-cta-4f5d052__item-body h3 a:hover { color: var(--color-primary); }
/* Blog: cards variant */
.itm-cta-4f5d052--cards .itm-cta-4f5d052__card { display: flex; flex-direction: column; }
.itm-cta-4f5d052--cards .itm-cta-4f5d052__card-body { flex: 1; display: flex; flex-direction: column; padding: 1rem 0; }
.itm-cta-4f5d052--cards .itm-cta-4f5d052__card-body h3 { margin: 0.25rem 0 0.5rem; font-size: 1.05rem; }
.itm-cta-4f5d052--cards .itm-cta-4f5d052__card-body h3 a { color: var(--color-text); text-decoration: none; }
.itm-cta-4f5d052--cards .itm-cta-4f5d052__card-body h3 a:hover { color: var(--color-primary); }
.itm-cta-4f5d052--cards .itm-cta-4f5d052__more { margin-top: auto; }
/* Blog: minimal variant */
.itm-cta-4f5d052--minimal .itm-cta-4f5d052__list { list-style: none; padding: 0; }
.itm-cta-4f5d052--minimal .itm-cta-4f5d052__list li { padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); display: flex; justify-content: space-between; align-items: center; }
.itm-cta-4f5d052--minimal .itm-cta-4f5d052__list a { color: var(--color-text); text-decoration: none; font-weight: 500; }
.itm-cta-4f5d052--minimal .itm-cta-4f5d052__list a:hover { color: var(--color-primary); }

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

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

/* === Code Showcase (CSS-only tabs) === */.st-base-bec04ff { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.st-base-bec04ff > .wp-core-fc8ac > h2 { text-align: center; margin-bottom: 0.5rem; }
.st-base-bec04ff__panel { position: relative; max-width: 720px; margin: 2rem auto 0; }
.st-base-bec04ff__radio { display: none; }
.st-base-bec04ff__tabs { display: flex; gap: 5px; }
.st-base-bec04ff__tab-btn { padding: 10px 25px; font-size: 0.9rem; font-weight: 600; color: var(--color-text-light); background: var(--color-bg-alt); border-radius: 8px 8px 0 0; cursor: pointer; transition: background var(--transition), color var(--transition); }
.st-base-bec04ff__code-block { display: none; background: #1e293b; border-radius: 0 8px 8px 8px; overflow-x: auto; }
.st-base-bec04ff__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; }
.st-base-bec04ff__code-block code { white-space: pre; }
.st-base-bec04ff__radio:nth-of-type(1):checked ~ .st-base-bec04ff__code-block--curl { display: block; }
.st-base-bec04ff__radio:nth-of-type(2):checked ~ .st-base-bec04ff__code-block--python { display: block; }
.st-base-bec04ff__radio:nth-of-type(3):checked ~ .st-base-bec04ff__code-block--php { display: block; }
.st-base-bec04ff__radio:nth-of-type(1):checked ~ .st-base-bec04ff__tabs .st-base-bec04ff__tab-btn:nth-of-type(1),
.st-base-bec04ff__radio:nth-of-type(2):checked ~ .st-base-bec04ff__tabs .st-base-bec04ff__tab-btn:nth-of-type(2),
.st-base-bec04ff__radio:nth-of-type(3):checked ~ .st-base-bec04ff__tabs .st-base-bec04ff__tab-btn:nth-of-type(3) {
    background: #1e293b; color: #fff;
}
/* === Categories === */
.sec-aside-e5a703 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.sec-aside-e5a703 > .wp-core-fc8ac > h2 { text-align: center; margin-bottom: 0.5rem; }
.sec-aside-e5a703__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.sec-aside-e5a703__card { padding: 1.5rem; background: var(--color-card); border: var(--border-w) solid var(--color-border); border-radius: var(--radius); text-decoration: none; color: var(--color-text); transition: all var(--transition); display: block; }
.sec-aside-e5a703__card:hover { border-color: var(--color-primary); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.sec-aside-e5a703__item { text-decoration: none; color: var(--color-text); transition: background var(--transition); }
.sec-aside-e5a703__item:hover { background: var(--color-bg-alt); }
.sec-aside-e5a703--icons .sec-aside-e5a703__item { text-decoration: none; color: var(--color-text); transition: color var(--transition); }
.sec-aside-e5a703--icons .sec-aside-e5a703__item:hover { color: var(--color-primary); }

/* === Newsletter === */
.st-679478 { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.st-679478 h2 { text-align: center; margin-bottom: 0.5rem; }
.st-679478 p { text-align: center; color: var(--color-text-light); margin-bottom: 1.5rem; }
.st-679478__form { display: flex; gap: 0.75rem; max-width: 500px; margin: 0 auto; }
.st-679478__form input[type="email"] { flex: 1; padding: 0.75rem 1rem; border: var(--border-w) solid var(--color-border); border-radius: var(--radius); font-size: 0.95rem; background: var(--color-card); color: var(--color-text); margin-bottom: 0; }
.st-679478__form button { white-space: nowrap; }
.st-679478--full { background: var(--color-bg-alt); }
.st-679478--card > .wp-core-fc8ac { background: var(--color-card); border-radius: var(--radius); padding: 2rem; max-width: 600px; margin: 0 auto; box-shadow: var(--shadow); }
.st-679478--inline .st-679478__form { max-width: 700px; }

/* === Comparison === */
.bl-core-f33e9b { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.bl-core-f33e9b > .wp-core-fc8ac > h2 { text-align: center; margin-bottom: 0.5rem; }
.bl-core-f33e9b__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.bl-core-f33e9b__card { padding: 1.5rem; background: var(--color-card); border: var(--border-w) solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.bl-core-f33e9b__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.bl-core-f33e9b__card h3 { margin: 0 0 0.75rem; font-size: 1.1rem; }
.bl-core-f33e9b__rating { color: var(--color-accent); font-size: 1.1rem; margin-bottom: 0.75rem; }
.bl-core-f33e9b__pros, .bl-core-f33e9b__cons { font-size: 0.9rem; margin-bottom: 0.5rem; }
.bl-core-f33e9b__table { width: 100%; border-spacing: 0; border-collapse: collapse; }
.bl-core-f33e9b__table th { font-weight: 600; color: var(--color-text); background: var(--color-bg-alt); }
.bl-core-f33e9b__table td, .bl-core-f33e9b__table th { padding: 0.75rem; border-bottom: 1px solid var(--color-border); text-align: left; }
.bl-core-f33e9b__table tr:hover td { background: var(--color-bg-alt); }
.bl-core-f33e9b__wrapper { overflow-x: auto; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid var(--color-border); }
.bl-core-f33e9b__th-feature, .bl-core-f33e9b__td-feature { position: sticky; left: 0; z-index: 1; background: var(--color-bg); box-shadow: 2px 0 5px rgba(0,0,0,0.05); }
.bl-core-f33e9b__th-feature { z-index: 2; background: var(--color-bg-alt); }
.bl-core-f33e9b__th-hl { background: var(--color-primary-light); border-top: 3px solid var(--color-primary); color: var(--color-primary-dark); }
.bl-core-f33e9b__td-hl { background: var(--color-primary-light); }
.bl-core-f33e9b--list .bl-core-f33e9b__item { padding: 1.25rem 0; border-bottom: 1px solid var(--color-border); }

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

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

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

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

/* === Footer === */
.mn-block-90290c {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 2rem 0 1.25rem;
    margin-top: 0;
}
.mn-block-90290c__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 1.25rem; }
.mn-block-90290c__col h3 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.mn-block-90290c__col p { font-size: 0.9rem; margin-bottom: 0.4rem; }
.mn-block-90290c__col a { color: rgba(255,255,255,0.7); }
.mn-block-90290c__col a:hover { color: #fff; }
.mn-block-90290c__col ul { list-style: none; padding: 0; }
.mn-block-90290c__col ul li { margin-bottom: 0.35rem; }
.mn-block-90290c__col nav ul { list-style: none; padding: 0; column-count: 4; column-gap: 1.5rem; }
.mn-block-90290c__col nav ul li { margin-bottom: 0.35rem; break-inside: avoid; }
.mn-block-90290c__col nav a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.mn-block-90290c__col nav a:hover { color: #fff; }
.mn-block-90290c__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; }
.mn-block-90290c__social { display: flex; gap: 0.75rem; }
.mn-block-90290c__social a { color: rgba(255,255,255,0.7); }
.mn-block-90290c__social a:hover { color: #fff; }

/* Footer: legal bar */
.mn-block-90290c__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;
}
.mn-block-90290c__legal li { list-style: none; }
.mn-block-90290c__legal a { color: rgba(255,255,255,0.55); }
.mn-block-90290c__legal a:hover { color: rgba(255,255,255,0.9); }

/* Footer: custom HTML */
.mn-block-90290c__custom { padding: 0.75rem 0; }

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

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

/* === Section modifier utility classes === */
.bg--gradient { background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%) !important; }
.layer--tint { background: var(--color-primary-light) !important; }
/* Ensure text contrast on light background overrides */
.layer--tint, .layer--tint p, .layer--tint li, .layer--tint span, .layer--tint h2, .layer--tint h3 { color: var(--color-text) !important; }
.layer--tint .box-block-156c__number { color: var(--color-primary-dark) !important; }
.layer--tint .box-block-156c__label { color: var(--color-text-light) !important; }
.layer--tint .box-block-156c__bar { background: var(--color-primary-dark) !important; color: #fff !important; }
.layer--tint .box-block-156c__bar .box-block-156c__number, .layer--tint .box-block-156c__bar .box-block-156c__label { color: #fff !important; }
.alt--glow { background: rgba(255,255,255,0.7) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
/* Glass: ensure child elements with dark bg keep their bg, text on glass stays dark */
.alt--glow > .wp-core-fc8ac { color: var(--color-text); }
.alt--glow h2, .alt--glow h3, .alt--glow p, .alt--glow span { color: var(--color-text); }
.alt--glow .box-block-156c__number { color: var(--color-primary-dark); }
.alt--contrast {
    background: var(--color-primary-dark) !important;
    color: #fff;
    /* Override ALL CSS var sets so child elements auto-adapt on dark bg */
    /* Set A canonical */
    --color-card: rgba(255,255,255,0.08);
    --color-bg: transparent;
    --color-bg-alt: rgba(255,255,255,0.04);
    --color-text: #fff;
    --color-text-light: rgba(255,255,255,0.75);
    --color-border: rgba(255,255,255,0.15);
    --color-primary: var(--color-accent);
    --color-primary-dark: var(--color-accent);
    --color-primary-light: rgba(255,255,255,0.12);
    /* Set B canonical */
    --clr-card: rgba(255,255,255,0.08);
    --clr-surface: transparent;
    --clr-surface-alt: rgba(255,255,255,0.04);
    --clr-body: #fff;
    --clr-body-light: rgba(255,255,255,0.75);
    --clr-border: rgba(255,255,255,0.15);
    --clr-main: var(--clr-accent);
    --clr-main-dark: var(--clr-accent);
    --clr-main-light: rgba(255,255,255,0.12);
    /* Set C canonical */
    --card-bg: rgba(255,255,255,0.08);
    --bg-main: transparent;
    --bg-alt: rgba(255,255,255,0.04);
    --text-main: #fff;
    --text-muted: rgba(255,255,255,0.75);
    --border-color: rgba(255,255,255,0.15);
    --brand-color: var(--accent-color);
    --brand-dark: var(--accent-color);
    --brand-light: rgba(255,255,255,0.12);
}
.alt--contrast h2, .alt--contrast h3 { color: #fff; }
.alt--contrast p, .alt--contrast li, .alt--contrast span { color: rgba(255,255,255,0.9); }
.alt--contrast a { color: var(--color-accent); }
.alt--contrast .block-subtitle { color: rgba(255,255,255,0.7); }

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

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

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

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

    .el-f1da2d .wp-core-fc8ac { font-size: 0.8rem; flex-wrap: wrap; justify-content: center; text-align: center; }

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

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

    .box-block-156c--bar .box-block-156c__bar { flex-wrap: wrap; }
    .box-block-156c__grid { gap: 1.25rem; }
    .box-block-156c__number { font-size: 1.75rem; }

    .box-list-d15e__grid { grid-template-columns: 1fr !important; }
    .box-list-d15e--numbered .box-list-d15e__grid { grid-template-columns: 1fr !important; }

    .mod-form-9d867__grid { grid-template-columns: 1fr !important; }
    .mod-form-9d867__row { grid-template-columns: 1fr !important; gap: 0.75rem; }
    .mod-form-9d867__list-item { flex-direction: column; text-align: center; }

    .pg-top-4ca53c__grid { grid-template-columns: 1fr !important; }

    .pnl-shelf-43c853__split-grid { grid-template-columns: 1fr !important; }

    .wrp-stack-71c34__grid { grid-template-columns: 1fr !important; }
    .wrp-stack-71c34__list-item { flex-direction: column; gap: 0.5rem; }
    .wrp-stack-71c34__inline-grid { flex-direction: column; }

    .pnl-part-7ec99__grid { grid-template-columns: 1fr 1fr !important; }
    .pnl-part-7ec99__item:not(:last-child)::after { display: none; }

    .pg-shelf-83a41__grid { grid-template-columns: 1fr !important; }
    .pg-shelf-83a41--featured .pg-shelf-83a41__grid { grid-template-columns: 1fr !important; }
    .pg-shelf-83a41--horizontal .pg-shelf-83a41__row { flex-direction: column; align-items: center; text-align: center; }
    .pg-shelf-83a41--horizontal .pg-shelf-83a41__avatar { margin: 0 auto; }
    .pg-shelf-83a41--masonry .pg-shelf-83a41__grid { column-count: 1; }
    .pg-shelf-83a41--sidebar .pg-shelf-83a41__layout { grid-template-columns: 1fr !important; }
    .pg-shelf-83a41--sidebar .pg-shelf-83a41__side { position: static; }
    .pg-shelf-83a41--sidebar .pg-shelf-83a41__side h2 { text-align: center; }
    .pg-shelf-83a41--sidebar .pg-shelf-83a41__side::after { margin: 1rem auto; }
    .pg-shelf-83a41--stack .pg-shelf-83a41__card { flex-direction: column; text-align: center; }
    .pg-shelf-83a41--stack .pg-shelf-83a41__author { text-align: center; }

    .lay-promo-7f59f3__grid { grid-template-columns: 1fr 1fr !important; }

    .itm-cta-4f5d052__grid { grid-template-columns: 1fr !important; }

    .box-093d0__faq-grid { grid-template-columns: 1fr !important; }

    .wp-core-ec5a47__grid { grid-template-columns: 1fr 1fr !important; }
    .wp-core-ec5a47--list .wp-core-ec5a47__card { flex-direction: column; text-align: center; }
    .wp-core-ec5a47--list .wp-core-ec5a47__photo { width: 100%; }
    .st-679478__form { flex-direction: column; }
    .sec-aside-e5a703__grid { grid-template-columns: 1fr 1fr !important; }
    .bl-core-f33e9b__grid { grid-template-columns: 1fr !important; }
    .bl-core-f33e9b__table { font-size: 0.85rem; overflow-x: auto; display: block; }
    .wp-0bc4183__grid { grid-template-columns: 1fr !important; }
    .wp-0bc4183--case .wp-0bc4183__item { grid-template-columns: 1fr !important; }
    .wp-92d952__item img { max-height: 30px; }

    .mn-block-90290c__grid { grid-template-columns: 1fr !important; }
    .mn-block-90290c__col nav ul { column-count: 1; }
    .mn-block-90290c__bottom { flex-direction: column; text-align: center; }

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

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

    .pnl-part-7ec99__grid { grid-template-columns: 1fr !important; }
    .lay-promo-7f59f3__grid { grid-template-columns: 1fr !important; }

    .box-block-156c__grid { flex-direction: column; align-items: center; }
    .box-block-156c--bar .box-block-156c__bar { flex-direction: column; }
    .box-block-156c--bar .box-block-156c__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .box-block-156c--bar .box-block-156c__item:last-child { border-bottom: none; }

    .ui-6872__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 */
.mn-inner-a0af {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
@media (max-width: 600px) {
    .mn-inner-a0af { grid-template-columns: 1fr !important; }
}

/* Content utility: card */
.crd-main-285e5 {
    padding: 2rem;
    border-radius: 0.75rem;
    background: var(--color-card);
    
    border: 1px solid var(--color-border);
    transition: all 0.25s ease;
}
.crd-main-285e5 h3,
.crd-main-285e5 h4 { margin: 0 0 0.5rem; }
.crd-main-285e5 p:last-child { margin-bottom: 0; }
.crd-main-285e5:hover { border-color: var(--color-primary); }

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

/* Content utility: highlight */
.mn-rail-0ed1a8 {
    padding: 2rem;
    background: var(--color-primary-light);
    border-left: 5px solid var(--color-primary);
    border-radius: 0 0.75rem 0.75rem 0;
    margin: 1.5rem 0;
}
.mn-rail-0ed1a8 p:last-child { margin-bottom: 0; }