/*
Theme Name: fse-book-store
Description: A clean and modern theme
Version: 8.4
*/

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

:root {
    --brand-color: hsl(130, 55%, 35%);
    --brand-dark: hsl(130, 55%, 20%);
    --brand-light: hsl(130, 35%, 85%);
    --accent-color: hsl(160, 55%, 45%);
    --accent-hover: hsl(160, 55%, 40%);
    --bg-main: #ffffff;
    --bg-alt: #f7f8fa;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --border-color: #e2e2e2;
    --card-bg: #ffffff;
    --ff-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --ff-heading: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --radius: 6px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 12px rgba(0,0,0,0.12);
    --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: 700;
    color: var(--brand-dark);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    text-wrap: balance;
}
h1 { font-size: clamp(1.84rem, 3.7vw + 0.74rem, 3.45rem); }
h2 { font-size: clamp(1.65rem, 3.3vw + 0.66rem, 3.03rem); }
h3 { font-size: clamp(1.24rem, 1.6vw + 0.50rem, 1.62rem); }
h4 { font-size: clamp(1.10rem, 1.3vw + 0.44rem, 1.38rem); }
h5 { font-size: clamp(0.97rem, 1.0vw + 0.39rem, 1.12rem); }
h6 { font-size: clamp(0.82rem, 0.8vw + 0.33rem, 0.96rem); }

p { margin-bottom: 1rem; }

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

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

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

/* === Section subtitle helper === */
.section-desc {
    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 === */
.hd-zone-e019 {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 6px 0;
}
.hd-zone-e019 .el-outer-d19ba0e { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.hd-zone-e019 a { color: rgba(255,255,255,0.85); }
.hd-zone-e019 a:hover { color: #fff; }

/* === Header === */
.el-hero-fc89 {
    background: var(--brand-dark);
    color: #fff;
    padding: 1.1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    
}
.el-hero-fc89 .el-outer-d19ba0e { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.el-hero-fc89__brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.el-hero-fc89__logo { max-height: 52px; width: auto; }
.el-hero-fc89__brand-name { font-family: var(--ff-heading); font-weight: 700; font-size: 1.4rem; color: #fff; }
.el-hero-fc89__nav { display: flex; gap: 1.25rem; list-style: none; align-items: center; }
.el-hero-fc89__nav li { list-style: none; }
.el-hero-fc89__nav a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 1rem; white-space: nowrap; }
.el-hero-fc89__nav a:hover { color: #fff; }
.el-hero-fc89__nav a { position: relative; padding-bottom: 4px; }
.el-hero-fc89__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease, left 0.3s ease;
}
.el-hero-fc89__nav a:hover::after { width: 100%; left: 0; }
.el-hero-fc89__actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.el-hero-fc89__phone a { color: #fff; font-weight: 600; font-size: 1.05rem; white-space: nowrap; }
.el-hero-fc89__phone a:hover { color: var(--accent-color); }
.el-hero-fc89__cta {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    text-transform: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
}
.el-hero-fc89__cta:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }
.el-hero-fc89__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) === */
.el-hero-fc89--white { background: var(--bg-main); color: var(--text-main); border-bottom: 1px solid var(--border-color); box-shadow: none; }
.el-hero-fc89--white .el-hero-fc89__brand-name { color: var(--text-main); }
.el-hero-fc89--white .el-hero-fc89__nav a { color: var(--text-main); opacity: 0.75; }
.el-hero-fc89--white .el-hero-fc89__nav a:hover { color: var(--brand-color); opacity: 1; }
.el-hero-fc89--white .el-hero-fc89__phone a { color: var(--text-main); }
.el-hero-fc89--white .el-hero-fc89__burger { color: var(--text-main); }

/* === Secondary Nav (bank-style services menu) === */
.el-hero-fc89__sec-nav {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-color);
    padding: 0.4rem 0;
    font-size: 0.9rem;
}
.el-hero-fc89__sec-links { display: flex; gap: 1.25rem; list-style: none; flex-wrap: wrap; justify-content: center; }
.el-hero-fc89__sec-links li { list-style: none; }
.el-hero-fc89__sec-links a { color: var(--text-main); font-weight: 500; }
.el-hero-fc89__sec-links a:hover { color: var(--brand-color); }

/* === Hero === */
.st-9374d03 {
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-dark) 100%);
    color: #fff;
    padding: 3rem 0 2.5rem;
    background-size: cover;
    background-position: center;
}

.st-9374d03::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 0;
}
.st-9374d03 { position: relative; }
.st-9374d03 > .el-outer-d19ba0e { position: relative; z-index: 1; }
.st-9374d03--split > .el-outer-d19ba0e { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.st-9374d03--split .st-9374d03__buttons { justify-content: flex-start; }

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

/* === Hero light variant (portal / hh.ru style) === */
.st-9374d03--light { background: var(--bg-main); color: var(--text-main); }
.st-9374d03--light .st-9374d03__title { color: var(--text-main); }
.st-9374d03--light .st-9374d03__eyebrow { color: var(--brand-color); opacity: 1; }
.st-9374d03--light .st-9374d03__subtitle { opacity: 1; }
.st-9374d03--light .st-9374d03__subtitle p { color: var(--text-muted); }
.st-9374d03--light .st-9374d03__btn--secondary { border-color: var(--border-color); color: var(--text-main); }
.st-9374d03--light .st-9374d03__btn--secondary:hover { border-color: var(--brand-color); color: var(--brand-color); background: transparent; }

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

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

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

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

/* === Hero: video variant === */
.st-9374d03--video .st-9374d03__video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.st-9374d03__video-embed { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; }
.st-9374d03__video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.st-9374d03__video-wrap video { width: 100%; border-radius: var(--radius); }
.st-9374d03__video-placeholder { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.st-9374d03__video-placeholder img { width: 100%; height: auto; display: block; }
.st-9374d03__play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; background: var(--accent-color); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: transform var(--transition); }
.st-9374d03__play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }

/* === Hero: checklist variant === */
.st-9374d03--checklist .st-9374d03__check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.st-9374d03__check-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.st-9374d03__check-list li { padding: 0.5rem 0; font-size: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.st-9374d03__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; }
.st-9374d03__check-image img { width: 100%; height: auto; border-radius: var(--radius); }
.st-9374d03--light .st-9374d03__check-list li { color: var(--text-main); }

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

/* === Stats === */
.st-zone-bd6a5 { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.st-zone-bd6a5 > .el-outer-d19ba0e > h2 { text-align: center; margin-bottom: 1.5rem; }
.st-zone-bd6a5__grid { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; text-align: center; }
.st-zone-bd6a5__item { min-width: 120px; }
.st-zone-bd6a5__number { font-size: 2.25rem; font-weight: 700; font-family: var(--ff-heading); color: var(--brand-color); line-height: 1.2; }
.st-zone-bd6a5__label { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.2rem; }

/* Stats variant: cards */
.st-zone-bd6a5--cards .st-zone-bd6a5__grid { gap: 1.25rem; }
.st-zone-bd6a5--cards .st-zone-bd6a5__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 */
.st-zone-bd6a5--bar { padding: 0; }
.st-zone-bd6a5__bar {
    display: flex;
    background: var(--brand-color);
    color: #fff;
    padding: 1.25rem 0;
}
.st-zone-bd6a5--bar .st-zone-bd6a5__item { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 1rem; }
.st-zone-bd6a5--bar .st-zone-bd6a5__item:last-child { border-right: none; }
.st-zone-bd6a5--bar .st-zone-bd6a5__number { color: #fff; font-size: 2rem; }
.st-zone-bd6a5--bar .st-zone-bd6a5__label { color: rgba(255,255,255,0.8); }

/* === Body / Block === */
.sec-row-729a { padding: clamp(2rem, 4vw, 3.5rem) 0; }

.ui-view-5fd5d6d {
    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);
}
.ui-view-5fd5d6d:hover { box-shadow: var(--shadow-hover); border-color: var(--brand-light); transform: translateY(-2px); }
.ui-view-5fd5d6d__icon { margin-bottom: 0.75rem; }
.ui-view-5fd5d6d__icon img { width: 48px; height: 48px; }

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

/* Adv variant: list */
.cmp-card-e057f--list .cmp-card-e057f__grid { grid-template-columns: 1fr; gap: 1rem; }
.cmp-card-e057f--list .cmp-card-e057f__item { display: flex; gap: 1.25rem; text-align: left; align-items: flex-start; }
.cmp-card-e057f--list .cmp-card-e057f__icon { flex-shrink: 0; }
.cmp-card-e057f--list .cmp-card-e057f__text p { margin-bottom: 0; }

/* Adv variant: numbered */
.cmp-card-e057f--numbered .cmp-card-e057f__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.cmp-card-e057f--numbered .cmp-card-e057f__item { display: flex; gap: 1rem; text-align: left; padding: 1.25rem; }
.cmp-card-e057f__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: 700;
    font-size: 1.25rem;
    border-radius: var(--radius);
    font-family: var(--ff-heading);
}
.cmp-card-e057f--numbered .cmp-card-e057f__text p { margin-bottom: 0; }

/* Adv variant: bordered */
.cmp-card-e057f--bordered .cmp-card-e057f__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;
}
.cmp-card-e057f--bordered .cmp-card-e057f__item:hover { border-left-color: var(--accent-color); }

/* === Tariffs === */
.sec-promo-55f2 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.sec-promo-55f2 > .el-outer-d19ba0e > h2 { text-align: center; margin-bottom: 1.5rem; }
.sec-promo-55f2__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.sec-promo-55f2__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);
}
.sec-promo-55f2__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.sec-promo-55f2__card--highlighted { border-color: var(--brand-color); box-shadow: 0 0 0 2px var(--brand-light); position: relative; }
.sec-promo-55f2__card--highlighted::before { content: '\041F\043E\043F\0443\043B\044F\0440\043D\044B\0439'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand-color); color: #fff; font-size: 0.75rem; padding: 2px 12px; border-radius: 10px; font-weight: 600; }
.sec-promo-55f2__price { font-size: 1.75rem; font-weight: 700; color: var(--brand-color); margin: 0.5rem 0; }
.sec-promo-55f2__features { list-style: none; padding: 0; margin: 0.75rem 0; text-align: left; }
.sec-promo-55f2__features li { padding: 0.35rem 0; border-bottom: 1px solid var(--border-color); font-size: 0.9rem; }

/* Tariff variant: horizontal */
.sec-promo-55f2--horizontal .sec-promo-55f2__grid { display: none; }
.sec-promo-55f2__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);
}
.sec-promo-55f2__row--hl { border-color: var(--brand-color); background: var(--brand-light); }
.sec-promo-55f2__row-head .sec-promo-55f2__price { font-size: 1.4rem; margin: 0.25rem 0; }
.sec-promo-55f2__row-body .sec-promo-55f2__features { margin: 0; }
.sec-promo-55f2__row-body .sec-promo-55f2__features li { display: inline; }
.sec-promo-55f2__row-body .sec-promo-55f2__features li::after { content: ' \00B7  '; }
.sec-promo-55f2__row-body .sec-promo-55f2__features li:last-child::after { content: ''; }

/* Tariff variant: minimal */
.sec-promo-55f2--minimal .sec-promo-55f2__grid { display: none; }
.sec-promo-55f2__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}
.sec-promo-55f2--minimal .sec-promo-55f2__price { font-size: 1.25rem; white-space: nowrap; margin: 0; }

/* === Benefits === */
.crd-hero-b868 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.crd-hero-b868 > .el-outer-d19ba0e > h2 { text-align: center; margin-bottom: 1.5rem; }
.crd-hero-b868__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.crd-hero-b868__item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.crd-hero-b868__item h3 { margin-bottom: 0.2rem; }

/* Benefits variant: checklist */
.crd-hero-b868--checklist .crd-hero-b868__grid { display: none; }
.crd-hero-b868__list { max-width: 700px; margin: 0 auto; }
.crd-hero-b868__check-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-start;
}
.crd-hero-b868__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;
}
.crd-hero-b868__check-item p { margin: 0.25rem 0 0; color: var(--text-muted); font-size: 0.9rem; }

/* Benefits variant: icons */
.crd-hero-b868--icons .crd-hero-b868__item { flex-direction: column; text-align: center; align-items: center; }
.crd-hero-b868__icon-big { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }
.crd-hero-b868__icon-big img { width: 56px; height: 56px; }

/* === FAQ === */
.sec-row-729a#faq { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.sec-row-729a#faq h2, .sec-row-729a > .el-outer-d19ba0e > h2 { text-align: center; margin-bottom: 1.5rem; }

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

/* FAQ details/accordion */
details.ui-view-5fd5d6d { cursor: pointer; }
details.ui-view-5fd5d6d summary { font-weight: 600; }
details.ui-view-5fd5d6d[open] summary { color: var(--brand-color); }

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

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

/* CTA variant: split */
.ui-8d64eca--split { text-align: left; }
.ui-8d64eca__split-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: center; }
.ui-8d64eca__split-action { text-align: center; }

/* === Products === */
.blk-brand-9370f8 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.blk-brand-9370f8 > .el-outer-d19ba0e > h2 { text-align: center; margin-bottom: 1.5rem; }
.blk-brand-9370f8__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.blk-brand-9370f8__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);
}
.blk-brand-9370f8__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.blk-brand-9370f8__card-body { padding: 1.25rem; }

/* Products variant: list */
.blk-brand-9370f8--list .blk-brand-9370f8__grid { display: none; }
.blk-brand-9370f8__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}
.blk-brand-9370f8__list-item:last-child { border-bottom: none; }
.blk-brand-9370f8__list-item p { margin: 0; }

/* Products variant: inline */
.blk-brand-9370f8--inline .blk-brand-9370f8__grid { display: none; }
.blk-brand-9370f8__inline-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.blk-brand-9370f8__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;
}
.blk-brand-9370f8__inline-item:hover { border-color: var(--brand-color); }
.blk-brand-9370f8__inline-item span { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

/* === Steps === */
.cp-area-4be2 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.cp-area-4be2 > .el-outer-d19ba0e > h2 { text-align: center; margin-bottom: 1.5rem; }
.cp-area-4be2__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; counter-reset: step; position: relative; }
.cp-area-4be2__item { text-align: center; position: relative; }
.cp-area-4be2__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--brand-color);
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    font-family: var(--ff-heading);
}
.cp-area-4be2__item h3 { font-size: 1.1rem; }
.cp-area-4be2__item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
/* Connector line between steps */
.cp-area-4be2__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 */
.el-hero-fc89--transparent ~ main > .st-9374d03 { padding-top: calc(80px + 2rem); }

/* === Testimonials === */
.ft-outer-f681 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.ft-outer-f681 > .el-outer-d19ba0e > h2 { text-align: center; margin-bottom: 1.5rem; }
.ft-outer-f681__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.ft-outer-f681__card {
    padding: 1.5rem;
    background: var(--card-bg);
    border: var(--border-w) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.ft-outer-f681__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;
}
.ft-outer-f681__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; }
.ft-outer-f681__author { display: flex; gap: 0.75rem; align-items: center; }
.ft-outer-f681__avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.ft-outer-f681__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ft-outer-f681__position { display: block; color: var(--text-muted); font-size: 0.9rem; }
.ft-outer-f681__cite { display: block; font-style: normal; margin-top: 0.75rem; color: var(--text-muted); }
.ft-outer-f681__cite strong { color: var(--text-main); }
.ft-outer-f681__meta { color: var(--text-muted); font-size: 0.9rem; }
.ft-outer-f681__meta strong { color: var(--text-main); }

/* -- test-bubble -- */
.ft-outer-f681--bubble .ft-outer-f681__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;
}
.ft-outer-f681--bubble .ft-outer-f681__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);
}
.ft-outer-f681--bubble .ft-outer-f681__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);
}
.ft-outer-f681--bubble .ft-outer-f681__card { background: none; border: none; box-shadow: none; padding: 0; }
.ft-outer-f681--bubble .ft-outer-f681__quote { padding-left: 0; margin: 0; }
.ft-outer-f681--bubble .ft-outer-f681__quote::before { display: none; }
.ft-outer-f681--bubble .ft-outer-f681__author { padding-left: 0.5rem; }

/* -- test-minimal -- */
.ft-outer-f681--minimal { text-align: center; }
.ft-outer-f681--minimal .el-outer-d19ba0e > h2 { margin-bottom: 2rem; }
.ft-outer-f681--minimal .ft-outer-f681__list { max-width: 700px; margin: 0 auto; }
.ft-outer-f681--minimal .ft-outer-f681__item { padding: 2rem 0; border-bottom: 1px solid var(--border-color); }
.ft-outer-f681--minimal .ft-outer-f681__item:last-child { border-bottom: none; }
.ft-outer-f681--minimal .ft-outer-f681__quote { font-size: 1.1rem; padding-left: 0; }
.ft-outer-f681--minimal .ft-outer-f681__quote::before { display: none; }

/* -- test-featured -- */
.ft-outer-f681--featured .ft-outer-f681__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.ft-outer-f681--featured .ft-outer-f681__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));
}
.ft-outer-f681--featured .ft-outer-f681__card--feat .ft-outer-f681__avatar { width: 72px; height: 72px; }

/* -- test-horizontal -- */
.ft-outer-f681--horizontal .ft-outer-f681__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;
}
.ft-outer-f681--horizontal .ft-outer-f681__row:last-child { margin-bottom: 0; }
.ft-outer-f681--horizontal .ft-outer-f681__avatar { width: 64px; height: 64px; border-radius: 8px; flex-shrink: 0; overflow: hidden; }
.ft-outer-f681--horizontal .ft-outer-f681__avatar img { border-radius: 8px; }
.ft-outer-f681--horizontal .ft-outer-f681__content { flex: 1; }
.ft-outer-f681--horizontal .ft-outer-f681__quote { padding-left: 0; margin-bottom: 0.75rem; }
.ft-outer-f681--horizontal .ft-outer-f681__quote::before { display: none; }

/* -- test-accent -- */
.ft-outer-f681--accent .ft-outer-f681__card {
    border-left: 3px solid var(--brand-color);
    background: color-mix(in srgb, var(--brand-color) 4%, var(--card-bg));
    position: relative;
    overflow: hidden;
}
.ft-outer-f681--accent .ft-outer-f681__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;
}
.ft-outer-f681--accent .ft-outer-f681__quote::before { display: none; }
.ft-outer-f681--accent .ft-outer-f681__quote { padding-left: 0; }

/* -- test-large-avatar -- */
.ft-outer-f681--lg-avatar .ft-outer-f681__card { text-align: center; }
.ft-outer-f681--lg-avatar .ft-outer-f681__avatar { width: 80px; height: 80px; margin: 0 auto 1rem; }
.ft-outer-f681--lg-avatar .ft-outer-f681__quote { padding-left: 0; text-align: center; }
.ft-outer-f681--lg-avatar .ft-outer-f681__quote::before { position: static; display: block; text-align: center; margin-bottom: -0.5rem; }
.ft-outer-f681--lg-avatar .ft-outer-f681__meta { margin-top: 0.75rem; }

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

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

/* -- test-stack -- */
.ft-outer-f681--stack .ft-outer-f681__grid { display: flex; flex-direction: column; gap: 0; }
.ft-outer-f681--stack .ft-outer-f681__card { display: flex; gap: 1.5rem; align-items: center; padding: 2rem; border: none; border-radius: 0; box-shadow: none; }
.ft-outer-f681--stack .ft-outer-f681__card:nth-child(even) { background: var(--bg-alt); }
.ft-outer-f681--stack .ft-outer-f681__card:nth-child(odd) { background: var(--card-bg); }
.ft-outer-f681--stack .ft-outer-f681__quote { flex: 1; padding-left: 0; margin-bottom: 0; }
.ft-outer-f681--stack .ft-outer-f681__quote::before { display: none; }
.ft-outer-f681--stack .ft-outer-f681__author { flex-shrink: 0; text-align: right; }
.ft-outer-f681--stack .ft-outer-f681__avatar { width: 56px; height: 56px; }

/* === Partners === */
.ft-nav-d09d { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.ft-nav-d09d > .el-outer-d19ba0e > h2 { text-align: center; margin-bottom: 1.5rem; }
.ft-nav-d09d__logos { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: center; }
.ft-nav-d09d__logo-item { display: flex; align-items: center; justify-content: center; min-width: 120px; }
.ft-nav-d09d__logo-item img { max-height: 48px; width: auto; filter: grayscale(100%); opacity: 0.6; transition: all var(--transition); }
.ft-nav-d09d__logo-item:hover img { filter: grayscale(0%); opacity: 1; }
.ft-nav-d09d__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);
}
.ft-nav-d09d__logo-item:hover .ft-nav-d09d__logo-text { color: var(--brand-color); border-color: var(--brand-color); }

/* === Gallery === */
.hd-base-b9541f { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.hd-base-b9541f > .el-outer-d19ba0e > h2 { text-align: center; margin-bottom: 1.5rem; }
.hd-base-b9541f__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0.75rem; }
.hd-base-b9541f__item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.hd-base-b9541f__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.hd-base-b9541f__item:hover img { transform: scale(1.05); }
.hd-base-b9541f__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-frame-082b759 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.itm-frame-082b759 > .el-outer-d19ba0e > h2 { text-align: center; margin-bottom: 1.5rem; }
.itm-frame-082b759__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.itm-frame-082b759__thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 0.75rem; }
.itm-frame-082b759__thumb img { width: 100%; height: 180px; object-fit: cover; display: block; }
.itm-frame-082b759__date { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 0.25rem; }
.itm-frame-082b759__excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.itm-frame-082b759__more { font-size: 0.85rem; color: var(--brand-color); text-decoration: none; font-weight: 500; }
.itm-frame-082b759__more:hover { text-decoration: underline; }
/* Blog: list variant */
.itm-frame-082b759--list .itm-frame-082b759__item { display: flex; gap: 1.25rem; padding: 1rem 0; border-bottom: 1px solid var(--border-color); }
.itm-frame-082b759--list .itm-frame-082b759__thumb { flex-shrink: 0; width: 200px; margin: 0; }
.itm-frame-082b759--list .itm-frame-082b759__thumb img { height: 130px; }
.itm-frame-082b759--list .itm-frame-082b759__item-body h3 { margin: 0 0 0.25rem; font-size: 1.1rem; }
.itm-frame-082b759--list .itm-frame-082b759__item-body h3 a { color: var(--text-main); text-decoration: none; }
.itm-frame-082b759--list .itm-frame-082b759__item-body h3 a:hover { color: var(--brand-color); }
/* Blog: cards variant */
.itm-frame-082b759--cards .itm-frame-082b759__card { display: flex; flex-direction: column; }
.itm-frame-082b759--cards .itm-frame-082b759__card-body { flex: 1; display: flex; flex-direction: column; padding: 1rem 0; }
.itm-frame-082b759--cards .itm-frame-082b759__card-body h3 { margin: 0.25rem 0 0.5rem; font-size: 1.05rem; }
.itm-frame-082b759--cards .itm-frame-082b759__card-body h3 a { color: var(--text-main); text-decoration: none; }
.itm-frame-082b759--cards .itm-frame-082b759__card-body h3 a:hover { color: var(--brand-color); }
.itm-frame-082b759--cards .itm-frame-082b759__more { margin-top: auto; }
/* Blog: minimal variant */
.itm-frame-082b759--minimal .itm-frame-082b759__list { list-style: none; padding: 0; }
.itm-frame-082b759--minimal .itm-frame-082b759__list li { padding: 0.75rem 0; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
.itm-frame-082b759--minimal .itm-frame-082b759__list a { color: var(--text-main); text-decoration: none; font-weight: 500; }
.itm-frame-082b759--minimal .itm-frame-082b759__list a:hover { color: var(--brand-color); }

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

/* === Team === */
.hd-wrap-409b16 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.hd-wrap-409b16 > .el-outer-d19ba0e > h2 { text-align: center; margin-bottom: 0.5rem; }
.hd-wrap-409b16__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.hd-wrap-409b16__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); }
.hd-wrap-409b16__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.hd-wrap-409b16__photo { aspect-ratio: 1/1; overflow: hidden; }
.hd-wrap-409b16__photo img { width: 100%; height: 100%; object-fit: cover; }
.hd-wrap-409b16__card h3 { margin: 0.75rem 0 0.25rem; font-size: 1rem; }
.hd-wrap-409b16__card p { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 0.75rem; padding: 0 1rem; }
.hd-wrap-409b16--list .hd-wrap-409b16__grid { grid-template-columns: 1fr; }
.hd-wrap-409b16--list .hd-wrap-409b16__card { display: flex; text-align: left; }
.hd-wrap-409b16--list .hd-wrap-409b16__photo { width: 120px; flex-shrink: 0; aspect-ratio: 1/1; }
.hd-wrap-409b16--compact .hd-wrap-409b16__grid { gap: 1rem; }
.hd-wrap-409b16--compact .hd-wrap-409b16__photo { width: 80px; height: 80px; border-radius: 50%; margin: 1rem auto 0.5rem; }

/* === Categories === */
.pnl-2cf7 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.pnl-2cf7 > .el-outer-d19ba0e > h2 { text-align: center; margin-bottom: 0.5rem; }
.pnl-2cf7__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.pnl-2cf7__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; }
.pnl-2cf7__card:hover { border-color: var(--brand-color); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.pnl-2cf7__item { text-decoration: none; color: var(--text-main); transition: background var(--transition); }
.pnl-2cf7__item:hover { background: var(--bg-alt); }
.pnl-2cf7--icons .pnl-2cf7__item { text-decoration: none; color: var(--text-main); transition: color var(--transition); }
.pnl-2cf7--icons .pnl-2cf7__item:hover { color: var(--brand-color); }

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

/* === Comparison === */
.pg-outer-7c9fe0 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.pg-outer-7c9fe0 > .el-outer-d19ba0e > h2 { text-align: center; margin-bottom: 0.5rem; }
.pg-outer-7c9fe0__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.pg-outer-7c9fe0__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-outer-7c9fe0__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.pg-outer-7c9fe0__card h3 { margin: 0 0 0.75rem; font-size: 1.1rem; }
.pg-outer-7c9fe0__rating { color: var(--accent-color); font-size: 1.1rem; margin-bottom: 0.75rem; }
.pg-outer-7c9fe0__pros, .pg-outer-7c9fe0__cons { font-size: 0.9rem; margin-bottom: 0.5rem; }
.pg-outer-7c9fe0__table { width: 100%; border-spacing: 0; border-collapse: collapse; }
.pg-outer-7c9fe0__table th { font-weight: 600; color: var(--text-main); background: var(--bg-alt); }
.pg-outer-7c9fe0__table td, .pg-outer-7c9fe0__table th { padding: 0.75rem; border-bottom: 1px solid var(--border-color); text-align: left; }
.pg-outer-7c9fe0__table tr:hover td { background: var(--bg-alt); }
.pg-outer-7c9fe0--list .pg-outer-7c9fe0__item { padding: 1.25rem 0; border-bottom: 1px solid var(--border-color); }

/* === Projects === */
.cp-area-52973 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.cp-area-52973 > .el-outer-d19ba0e > h2 { text-align: center; margin-bottom: 0.5rem; }
.cp-area-52973__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.cp-area-52973__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); }
.cp-area-52973__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.cp-area-52973__card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.cp-area-52973__card-body { padding: 1.25rem; }
.cp-area-52973__card-body h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.cp-area-52973__card-body p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.cp-area-52973__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; }
.cp-area-52973--case .cp-area-52973__grid { grid-template-columns: 1fr; gap: 2rem; }
.cp-area-52973--case .cp-area-52973__item { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; }
.cp-area-52973--case .cp-area-52973__item img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.cp-area-52973--minimal .cp-area-52973__grid { grid-template-columns: 1fr; }
.cp-area-52973--minimal .cp-area-52973__item { padding: 1rem 0; border-bottom: 1px solid var(--border-color); }

/* === Entry content === */
.bl-form-49949c { line-height: 1.8; }
.bl-form-49949c p { margin-bottom: 1rem; }
.bl-form-49949c h2, .bl-form-49949c h3, .bl-form-49949c h4 { margin: 1.5rem 0 0.75rem; }
.bl-form-49949c img { max-width: 100%; height: auto; border-radius: var(--radius); }
.bl-form-49949c ul, .bl-form-49949c ol { margin: 0 0 1rem 1.5rem; }
.bl-form-49949c 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 === */
.pg-frame-e6d1a2 { padding: clamp(1.5rem, 3vw, 2.5rem) 0; }
.pg-frame-e6d1a2__strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1rem, 3vw, 2.5rem); }
.pg-frame-e6d1a2__item { display: inline-flex; align-items: center; }
.pg-frame-e6d1a2__item img { max-height: 40px; width: auto; filter: grayscale(1); opacity: 0.6; transition: all var(--transition); }
.pg-frame-e6d1a2__item:hover img { filter: grayscale(0); opacity: 1; }
.pg-frame-e6d1a2__item a { text-decoration: none; }

/* === Custom blocks === */
.tg-custom-block { padding: 2rem 0; }
.tg-custom-block h2 { text-align: center; margin-bottom: 1.5rem; }

/* === Footer === */
.ft-promo-7563 {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.8);
    padding: 2rem 0 1.25rem;
    margin-top: 0;
}
.ft-promo-7563__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 1.25rem; }
.ft-promo-7563__col h3 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.ft-promo-7563__col p { font-size: 0.9rem; margin-bottom: 0.4rem; }
.ft-promo-7563__col a { color: rgba(255,255,255,0.7); }
.ft-promo-7563__col a:hover { color: #fff; }
.ft-promo-7563__col ul { list-style: none; padding: 0; }
.ft-promo-7563__col ul li { margin-bottom: 0.35rem; }
.ft-promo-7563__col nav ul { list-style: none; padding: 0; }
.ft-promo-7563__col nav ul li { margin-bottom: 0.35rem; }
.ft-promo-7563__col nav a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.ft-promo-7563__col nav a:hover { color: #fff; }
.ft-promo-7563__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; }
.ft-promo-7563__social { display: flex; gap: 0.75rem; }
.ft-promo-7563__social a { color: rgba(255,255,255,0.7); }
.ft-promo-7563__social a:hover { color: #fff; }

/* Footer: legal bar */
.ft-promo-7563__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;
}
.ft-promo-7563__legal li { list-style: none; }
.ft-promo-7563__legal a { color: rgba(255,255,255,0.55); }
.ft-promo-7563__legal a:hover { color: rgba(255,255,255,0.9); }

/* Footer: custom HTML */
.ft-promo-7563__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.02em;
    border: var(--border-w) solid var(--brand-color);
    background: transparent;
    color: var(--brand-color);
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 6px;
    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); }

/* === Section modifier utility classes === */
.mod--tinted { background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-alt) 100%) !important; }
.mod--soft { background: var(--brand-light) !important; }
/* Ensure text contrast on potentially dark primary-light (low-saturation palettes) */
.mod--soft p, .mod--soft li, .mod--soft span { color: var(--text-main); }
.mod--soft .block-subtitle { color: var(--text-muted); }
.layer--blur { background: rgba(255,255,255,0.7) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.alt--glow {
    background: var(--brand-dark) !important;
    color: #fff;
    /* Override CSS vars so ALL child elements auto-adapt */
    --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);
    /* Override primary colors to lighter versions for visibility on dark bg */
    --color-primary: var(--brand-light);
    --color-primary-dark: var(--accent-color);
    --color-primary-light: rgba(255,255,255,0.12);
    /* Set A aliases */
    --brand-color: var(--brand-light);
    --brand-dark: var(--accent-color);
    --brand-light: rgba(255,255,255,0.12);
    /* Set B aliases */
    --primary: var(--brand-light);
    --primary-dark: var(--accent-color);
    --primary-light: rgba(255,255,255,0.12);
    /* Set C aliases */
    --clr-main: var(--brand-light);
    --clr-main-dark: var(--accent-color);
    --clr-main-light: rgba(255,255,255,0.12);
    /* CSS var set A aliases */
    --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);
    /* CSS var set B aliases */
    /* CSS var set C aliases */
    --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);
}
.alt--glow h2, .alt--glow h3 { color: #fff; }
.alt--glow p, .alt--glow li, .alt--glow span { color: rgba(255,255,255,0.9); }
.alt--glow a { color: var(--accent-color); }
.alt--glow .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); }
.item--flat { border: var(--border-w) solid var(--border-color); box-shadow: none; }
.tile--lift { background: rgba(255,255,255,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); }
.box--chevron { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.box--chevron:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.tile--arrow { box-shadow: none; border: none; background: var(--bg-alt); }
.tile--outline { position: relative; padding-right: 2.5rem; cursor: pointer; transition: border-color 0.2s; }
.tile--outline::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--outline:hover { border-color: var(--brand-color); }
.tile--outline: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; }

    .hd-zone-e019 .el-outer-d19ba0e { font-size: 0.8rem; flex-wrap: wrap; justify-content: center; text-align: center; }

    .el-hero-fc89 .el-outer-d19ba0e { flex-wrap: wrap; }
    .el-hero-fc89__nav { display: none; }
    .el-hero-fc89__burger { display: block; }
    .el-hero-fc89__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);
    }
    .el-hero-fc89__nav--open a { padding: 8px 0; display: block; font-size: 1rem; }
    .el-hero-fc89--white .el-hero-fc89__nav--open { background: var(--bg-main); border-bottom: 1px solid var(--border-color); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .el-hero-fc89--white .el-hero-fc89__nav--open a { color: var(--text-main); }
    .el-hero-fc89__actions { width: 100%; justify-content: space-between; margin-top: 0.5rem; }
    .el-hero-fc89__sec-links { justify-content: flex-start; font-size: 0.85rem; }

    .st-9374d03--split > .el-outer-d19ba0e { grid-template-columns: 1fr !important; }
    .st-9374d03--left-aligned > .el-outer-d19ba0e { grid-template-columns: 1fr !important; }
    .st-9374d03__decor { min-height: auto; align-items: center; }
    .st-9374d03__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    .st-9374d03__buttons { flex-direction: column; }
    .st-9374d03__buttons .st-9374d03__btn { text-align: center; }
    .st-9374d03__stats-row { gap: 1.5rem; }
    .st-9374d03__features-grid { grid-template-columns: 1fr 1fr !important; }
    .st-9374d03--video .st-9374d03__video-grid { grid-template-columns: 1fr !important; }
    .st-9374d03--checklist .st-9374d03__check-grid { grid-template-columns: 1fr !important; }
    .st-9374d03__badges-row { gap: 0.5rem; }
    .st-9374d03__badge { padding: 8px 12px; font-size: 0.8rem; }

    .st-zone-bd6a5--bar .st-zone-bd6a5__bar { flex-wrap: wrap; }
    .st-zone-bd6a5__grid { gap: 1.25rem; }
    .st-zone-bd6a5__number { font-size: 1.75rem; }

    .cmp-card-e057f__grid { grid-template-columns: 1fr !important; }
    .cmp-card-e057f--numbered .cmp-card-e057f__grid { grid-template-columns: 1fr !important; }

    .sec-promo-55f2__grid { grid-template-columns: 1fr !important; }
    .sec-promo-55f2__row { grid-template-columns: 1fr !important; gap: 0.75rem; }
    .sec-promo-55f2__list-item { flex-direction: column; text-align: center; }

    .crd-hero-b868__grid { grid-template-columns: 1fr !important; }

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

    .blk-brand-9370f8__grid { grid-template-columns: 1fr !important; }
    .blk-brand-9370f8__list-item { flex-direction: column; gap: 0.5rem; }
    .blk-brand-9370f8__inline-grid { flex-direction: column; }

    .cp-area-4be2__grid { grid-template-columns: 1fr 1fr !important; }
    .cp-area-4be2__item:not(:last-child)::after { display: none; }

    .ft-outer-f681__grid { grid-template-columns: 1fr !important; }
    .ft-outer-f681--featured .ft-outer-f681__grid { grid-template-columns: 1fr !important; }
    .ft-outer-f681--horizontal .ft-outer-f681__row { flex-direction: column; align-items: center; text-align: center; }
    .ft-outer-f681--horizontal .ft-outer-f681__avatar { margin: 0 auto; }
    .ft-outer-f681--masonry .ft-outer-f681__grid { column-count: 1; }
    .ft-outer-f681--sidebar .ft-outer-f681__layout { grid-template-columns: 1fr !important; }
    .ft-outer-f681--sidebar .ft-outer-f681__side { position: static; }
    .ft-outer-f681--sidebar .ft-outer-f681__side h2 { text-align: center; }
    .ft-outer-f681--sidebar .ft-outer-f681__side::after { margin: 1rem auto; }
    .ft-outer-f681--stack .ft-outer-f681__card { flex-direction: column; text-align: center; }
    .ft-outer-f681--stack .ft-outer-f681__author { text-align: center; }

    .hd-base-b9541f__grid { grid-template-columns: 1fr 1fr !important; }

    .itm-frame-082b759__grid { grid-template-columns: 1fr !important; }

    .sec-row-729a__faq-grid { grid-template-columns: 1fr !important; }

    .hd-wrap-409b16__grid { grid-template-columns: 1fr 1fr !important; }
    .hd-wrap-409b16--list .hd-wrap-409b16__card { flex-direction: column; text-align: center; }
    .hd-wrap-409b16--list .hd-wrap-409b16__photo { width: 100%; }
    .cp-core-6824b2b__form { flex-direction: column; }
    .pnl-2cf7__grid { grid-template-columns: 1fr 1fr !important; }
    .pg-outer-7c9fe0__grid { grid-template-columns: 1fr !important; }
    .pg-outer-7c9fe0__table { font-size: 0.85rem; overflow-x: auto; display: block; }
    .cp-area-52973__grid { grid-template-columns: 1fr !important; }
    .cp-area-52973--case .cp-area-52973__item { grid-template-columns: 1fr !important; }
    .pg-frame-e6d1a2__item img { max-height: 30px; }

    .ft-promo-7563__grid { grid-template-columns: 1fr !important; }
    .ft-promo-7563__bottom { flex-direction: column; text-align: center; }

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

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

    .cp-area-4be2__grid { grid-template-columns: 1fr !important; }
    .hd-base-b9541f__grid { grid-template-columns: 1fr !important; }

    .st-zone-bd6a5__grid { flex-direction: column; align-items: center; }
    .st-zone-bd6a5--bar .st-zone-bd6a5__bar { flex-direction: column; }
    .st-zone-bd6a5--bar .st-zone-bd6a5__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .st-zone-bd6a5--bar .st-zone-bd6a5__item:last-child { border-bottom: none; }

    .st-9374d03__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 */
.ui-stack-9069 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}
@media (max-width: 600px) {
    .ui-stack-9069 { grid-template-columns: 1fr !important; }
}

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

/* Content utility: list */
.itm-part-096e {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.itm-part-096e li {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.6;
}
.itm-part-096e li::before {
    content: '\2014'; color: var(--brand-color); font-weight: 300;
    position: absolute; left: 0;
    font-size: 1em;
}

/* Content utility: highlight */
.crd-strip-7b262 {
    color: #1e293b;
    padding: 2rem;
    background: var(--brand-light);
    border-top: 3px solid var(--brand-color);
    border-radius: 0 0 0.5rem 0.5rem;
    margin: 1.5rem 0;
}
.crd-strip-7b262 p, .crd-strip-7b262 b, .crd-strip-7b262 strong, .crd-strip-7b262 span { color: #1e293b; }
.crd-strip-7b262 p:last-child { margin-bottom: 0; }