/*
Theme Name: classic-corporate
Description: Custom theme
Version: 3.2
*/

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

:root {
    --color-primary: hsl(220, 12%, 35%);
    --color-primary-dark: hsl(220, 12%, 20%);
    --color-primary-light: hsl(220, 0%, 85%);
    --color-accent: hsl(250, 12%, 45%);
    --color-accent-hover: hsl(250, 12%, 40%);
    --color-bg: #ffffff;
    --color-bg-alt: #f7f8fa;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-border: #e2e2e2;
    --color-card: #ffffff;
    --font-main: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --font-head: '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 */
    --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: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    text-wrap: balance;
}
h1 { font-size: clamp(2.16rem, 4.3vw + 0.86rem, 4.05rem); }
h2 { font-size: clamp(1.43rem, 2.9vw + 0.57rem, 2.61rem); }
h3 { font-size: clamp(1.21rem, 1.6vw + 0.48rem, 1.58rem); }
h4 { font-size: clamp(0.97rem, 1.2vw + 0.39rem, 1.21rem); }
h5 { font-size: clamp(1.03rem, 1.1vw + 0.41rem, 1.19rem); }
h6 { font-size: clamp(0.81rem, 0.8vw + 0.32rem, 0.95rem); }

p { margin-bottom: 1rem; }

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

/* === Layout === */
.itm-wrap-f9807f {
    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 > .itm-wrap-f9807f > h2 { text-align: center; margin-bottom: 0.5rem; }
.l-section > .itm-wrap-f9807f > .block-lead { 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 === */
.block-lead {
    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 === */
.blk-dock-1dde {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 6px 0;
}
.blk-dock-1dde .itm-wrap-f9807f { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.blk-dock-1dde a { color: rgba(255,255,255,0.85); }
.blk-dock-1dde a:hover { color: #fff; }

/* === Header === */
.blk-35ae {
    background: var(--color-primary-dark);
    color: #fff;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    
}
.blk-35ae .itm-wrap-f9807f { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.blk-35ae__brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.blk-35ae__logo { max-height: 44px; width: auto; }
.blk-35ae__brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #fff; }
.blk-35ae__nav { display: flex; gap: 1.25rem; list-style: none; align-items: center; }
.blk-35ae__nav li { list-style: none; }
.blk-35ae__nav a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.95rem; white-space: nowrap; }
.blk-35ae__nav a:hover { color: #fff; }
.blk-35ae__nav a {
    padding: 6px 12px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.blk-35ae__nav a:hover { background: rgba(255,255,255,0.08); border-bottom-color: rgba(255,255,255,0.5); }
.blk-35ae__nav a.current-menu-item { border-bottom-color: #fff; }
.blk-35ae__actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.blk-35ae__phone a { color: #fff; font-weight: 600; font-size: 1.05rem; white-space: nowrap; }
.blk-35ae__phone a:hover { color: var(--color-accent); }
.blk-35ae__cta {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-accent);
    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);
}
.blk-35ae__cta:hover { background: var(--color-accent-hover); color: #fff; transform: translateY(-1px); }
.blk-35ae__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) === */
.blk-35ae--white { background: var(--color-bg); color: var(--color-text); border-bottom: 1px solid var(--color-border); box-shadow: none; }
.blk-35ae--white .blk-35ae__brand-name { color: var(--color-text); }
.blk-35ae--white .blk-35ae__nav a { color: var(--color-text); opacity: 0.75; }
.blk-35ae--white .blk-35ae__nav a:hover { color: var(--color-primary); opacity: 1; }
.blk-35ae--white .blk-35ae__phone a { color: var(--color-text); }
.blk-35ae--white .blk-35ae__burger { color: var(--color-text); }

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

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

.ft-content-347483 {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%) !important;
}
.ft-content-347483--split > .itm-wrap-f9807f { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.ft-content-347483--split .ft-content-347483__buttons { justify-content: flex-start; }

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

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

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

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

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

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

/* === Hero: video variant === */
.ft-content-347483--video .ft-content-347483__video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.ft-content-347483__video-embed { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; }
.ft-content-347483__video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.ft-content-347483__video-wrap video { width: 100%; border-radius: var(--radius); }
.ft-content-347483__video-placeholder { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.ft-content-347483__video-placeholder img { width: 100%; height: auto; display: block; }
.ft-content-347483__play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; background: var(--color-accent); 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); }
.ft-content-347483__play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }

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

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

/* === Stats === */
.wrp-shelf-0d0239 { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.wrp-shelf-0d0239 > .itm-wrap-f9807f > h2 { text-align: center; margin-bottom: 1.5rem; }
.wrp-shelf-0d0239__grid { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; text-align: center; }
.wrp-shelf-0d0239__item { min-width: 120px; }
.wrp-shelf-0d0239__number { font-size: 2.25rem; font-weight: 700; font-family: var(--font-head); color: var(--color-primary); line-height: 1.2; }
.wrp-shelf-0d0239__label { font-size: 0.9rem; color: var(--color-text-light); margin-top: 0.2rem; }

/* Stats variant: cards */
.wrp-shelf-0d0239--cards .wrp-shelf-0d0239__grid { gap: 1.25rem; }
.wrp-shelf-0d0239--cards .wrp-shelf-0d0239__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 */
.wrp-shelf-0d0239--bar { padding: 0; }
.wrp-shelf-0d0239__bar {
    display: flex;
    background: var(--color-primary);
    color: #fff;
    padding: 1.25rem 0;
}
.wrp-shelf-0d0239--bar .wrp-shelf-0d0239__item { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 1rem; }
.wrp-shelf-0d0239--bar .wrp-shelf-0d0239__item:last-child { border-right: none; }
.wrp-shelf-0d0239--bar .wrp-shelf-0d0239__number { color: #fff; font-size: 2rem; }
.wrp-shelf-0d0239--bar .wrp-shelf-0d0239__label { color: rgba(255,255,255,0.8); }

/* === Body / Block === */
.pnl-inner-b10fe { padding: clamp(2rem, 4vw, 3.5rem) 0; }

.wrp-strip-7bad {
    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);
}
.wrp-strip-7bad:hover { box-shadow: var(--shadow-hover); border-color: var(--color-primary-light); transform: translateY(-2px); }
.wrp-strip-7bad__icon { margin-bottom: 0.75rem; }
.wrp-strip-7bad__icon img { width: 48px; height: 48px; }

/* === Advantages === */
.st-hero-9995ec { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.st-hero-9995ec h2 { text-align: center; margin-bottom: 1.5rem; }
.st-hero-9995ec__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.st-hero-9995ec__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;
}
.st-hero-9995ec__item:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); border-color: var(--color-primary-light); }
.st-hero-9995ec__item h3 { margin-top: 0.5rem; }
.st-hero-9995ec__icon img { width: 48px; height: 48px; margin: 0 auto; }

/* Adv variant: list */
.st-hero-9995ec--list .st-hero-9995ec__grid { grid-template-columns: 1fr; gap: 1rem; }
.st-hero-9995ec--list .st-hero-9995ec__item { display: flex; gap: 1.25rem; text-align: left; align-items: flex-start; }
.st-hero-9995ec--list .st-hero-9995ec__icon { flex-shrink: 0; }
.st-hero-9995ec--list .st-hero-9995ec__text p { margin-bottom: 0; }

/* Adv variant: numbered */
.st-hero-9995ec--numbered .st-hero-9995ec__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.st-hero-9995ec--numbered .st-hero-9995ec__item { display: flex; gap: 1rem; text-align: left; padding: 1.25rem; }
.st-hero-9995ec__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);
}
.st-hero-9995ec--numbered .st-hero-9995ec__text p { margin-bottom: 0; }

/* Adv variant: bordered */
.st-hero-9995ec--bordered .st-hero-9995ec__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;
}
.st-hero-9995ec--bordered .st-hero-9995ec__item:hover { border-left-color: var(--color-accent); }

/* === Tariffs === */
.blk-link-2945c { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.blk-link-2945c > .itm-wrap-f9807f > h2 { text-align: center; margin-bottom: 1.5rem; }
.blk-link-2945c__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.blk-link-2945c__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);
}
.blk-link-2945c__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.blk-link-2945c__card--highlighted { border-color: var(--color-primary); box-shadow: 0 0 0 2px var(--color-primary-light); position: relative; }
.blk-link-2945c__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(--color-primary); color: #fff; font-size: 0.75rem; padding: 2px 12px; border-radius: 10px; font-weight: 600; }
.blk-link-2945c__price { font-size: 1.75rem; font-weight: 700; color: var(--color-primary); margin: 0.5rem 0; }
.blk-link-2945c__features { list-style: none; padding: 0; margin: 0.75rem 0; text-align: left; }
.blk-link-2945c__features li { padding: 0.35rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.9rem; }

/* Tariff variant: horizontal */
.blk-link-2945c--horizontal .blk-link-2945c__grid { display: none; }
.blk-link-2945c__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);
}
.blk-link-2945c__row--hl { border-color: var(--color-primary); background: var(--color-primary-light); }
.blk-link-2945c__row-head .blk-link-2945c__price { font-size: 1.4rem; margin: 0.25rem 0; }
.blk-link-2945c__row-body .blk-link-2945c__features { margin: 0; }
.blk-link-2945c__row-body .blk-link-2945c__features li { display: inline; }
.blk-link-2945c__row-body .blk-link-2945c__features li::after { content: ' \00B7  '; }
.blk-link-2945c__row-body .blk-link-2945c__features li:last-child::after { content: ''; }

/* Tariff variant: minimal */
.blk-link-2945c--minimal .blk-link-2945c__grid { display: none; }
.blk-link-2945c__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
}
.blk-link-2945c--minimal .blk-link-2945c__price { font-size: 1.25rem; white-space: nowrap; margin: 0; }

/* === Benefits === */
.wp-form-c09e { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.wp-form-c09e > .itm-wrap-f9807f > h2 { text-align: center; margin-bottom: 1.5rem; }
.wp-form-c09e__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.wp-form-c09e__item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.wp-form-c09e__item h3 { margin-bottom: 0.2rem; }

/* Benefits variant: checklist */
.wp-form-c09e--checklist .wp-form-c09e__grid { display: none; }
.wp-form-c09e__list { max-width: 700px; margin: 0 auto; }
.wp-form-c09e__check-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: flex-start;
}
.wp-form-c09e__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;
}
.wp-form-c09e__check-item p { margin: 0.25rem 0 0; color: var(--color-text-light); font-size: 0.9rem; }

/* Benefits variant: icons */
.wp-form-c09e--icons .wp-form-c09e__item { flex-direction: column; text-align: center; align-items: center; }
.wp-form-c09e__icon-big { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }
.wp-form-c09e__icon-big img { width: 56px; height: 56px; }

/* === FAQ === */
.pnl-inner-b10fe#faq { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.pnl-inner-b10fe#faq h2, .pnl-inner-b10fe > .itm-wrap-f9807f > h2 { text-align: center; margin-bottom: 1.5rem; }

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

/* FAQ details/accordion */
details.wrp-strip-7bad { cursor: pointer; }
details.wrp-strip-7bad summary { font-weight: 600; }
details.wrp-strip-7bad[open] summary { color: var(--color-primary); }

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

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

/* CTA variant: split */
.mn-body-985b7c--split { text-align: left; }
.mn-body-985b7c__split-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: center; }
.mn-body-985b7c__split-action { text-align: center; }

/* === Products === */
.pnl-1c509c0 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.pnl-1c509c0 > .itm-wrap-f9807f > h2 { text-align: center; margin-bottom: 1.5rem; }
.pnl-1c509c0__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.pnl-1c509c0__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);
}
.pnl-1c509c0__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.pnl-1c509c0__card-body { padding: 1.25rem; }

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

/* Products variant: inline */
.pnl-1c509c0--inline .pnl-1c509c0__grid { display: none; }
.pnl-1c509c0__inline-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.pnl-1c509c0__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;
}
.pnl-1c509c0__inline-item:hover { border-color: var(--color-primary); }
.pnl-1c509c0__inline-item span { font-size: 0.85rem; color: var(--color-text-light); margin-top: 0.25rem; }

/* === Steps === */
.mod-31b60e { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.mod-31b60e > .itm-wrap-f9807f > h2 { text-align: center; margin-bottom: 1.5rem; }
.mod-31b60e__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; counter-reset: step; position: relative; }
.mod-31b60e__item { text-align: center; position: relative; }
.mod-31b60e__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);
}
.mod-31b60e__item h3 { font-size: 1.1rem; }
.mod-31b60e__item p { font-size: 0.9rem; color: var(--color-text-light); margin: 0; }
/* Connector line between steps */
.mod-31b60e__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 */
.blk-35ae--transparent ~ main > .ft-content-347483 { padding-top: calc(80px + 2rem); }

/* === Testimonials === */
.hd-stack-c12dd22 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.hd-stack-c12dd22 > .itm-wrap-f9807f > h2 { text-align: center; margin-bottom: 1.5rem; }
.hd-stack-c12dd22__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.hd-stack-c12dd22__card {
    padding: 1.5rem;
    background: var(--color-card);
    border: var(--border-w) solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hd-stack-c12dd22__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;
}
.hd-stack-c12dd22__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; }
.hd-stack-c12dd22__author { display: flex; gap: 0.75rem; align-items: center; }
.hd-stack-c12dd22__avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.hd-stack-c12dd22__avatar img { width: 100%; height: 100%; object-fit: cover; }
.hd-stack-c12dd22__position { display: block; color: var(--color-text-light); font-size: 0.9rem; }
.hd-stack-c12dd22__cite { display: block; font-style: normal; margin-top: 0.75rem; color: var(--color-text-light); }
.hd-stack-c12dd22__cite strong { color: var(--color-text); }
.hd-stack-c12dd22__meta { color: var(--color-text-light); font-size: 0.9rem; }
.hd-stack-c12dd22__meta strong { color: var(--color-text); }

/* -- test-bubble -- */
.hd-stack-c12dd22--bubble .hd-stack-c12dd22__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;
}
.hd-stack-c12dd22--bubble .hd-stack-c12dd22__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);
}
.hd-stack-c12dd22--bubble .hd-stack-c12dd22__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);
}
.hd-stack-c12dd22--bubble .hd-stack-c12dd22__card { background: none; border: none; box-shadow: none; padding: 0; }
.hd-stack-c12dd22--bubble .hd-stack-c12dd22__quote { padding-left: 0; margin: 0; }
.hd-stack-c12dd22--bubble .hd-stack-c12dd22__quote::before { display: none; }
.hd-stack-c12dd22--bubble .hd-stack-c12dd22__author { padding-left: 0.5rem; }

/* -- test-minimal -- */
.hd-stack-c12dd22--minimal { text-align: center; }
.hd-stack-c12dd22--minimal .itm-wrap-f9807f > h2 { margin-bottom: 2rem; }
.hd-stack-c12dd22--minimal .hd-stack-c12dd22__list { max-width: 700px; margin: 0 auto; }
.hd-stack-c12dd22--minimal .hd-stack-c12dd22__item { padding: 2rem 0; border-bottom: 1px solid var(--color-border); }
.hd-stack-c12dd22--minimal .hd-stack-c12dd22__item:last-child { border-bottom: none; }
.hd-stack-c12dd22--minimal .hd-stack-c12dd22__quote { font-size: 1.1rem; padding-left: 0; }
.hd-stack-c12dd22--minimal .hd-stack-c12dd22__quote::before { display: none; }

/* -- test-featured -- */
.hd-stack-c12dd22--featured .hd-stack-c12dd22__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.hd-stack-c12dd22--featured .hd-stack-c12dd22__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));
}
.hd-stack-c12dd22--featured .hd-stack-c12dd22__card--feat .hd-stack-c12dd22__avatar { width: 72px; height: 72px; }

/* -- test-horizontal -- */
.hd-stack-c12dd22--horizontal .hd-stack-c12dd22__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;
}
.hd-stack-c12dd22--horizontal .hd-stack-c12dd22__row:last-child { margin-bottom: 0; }
.hd-stack-c12dd22--horizontal .hd-stack-c12dd22__avatar { width: 64px; height: 64px; border-radius: 8px; flex-shrink: 0; overflow: hidden; }
.hd-stack-c12dd22--horizontal .hd-stack-c12dd22__avatar img { border-radius: 8px; }
.hd-stack-c12dd22--horizontal .hd-stack-c12dd22__content { flex: 1; }
.hd-stack-c12dd22--horizontal .hd-stack-c12dd22__quote { padding-left: 0; margin-bottom: 0.75rem; }
.hd-stack-c12dd22--horizontal .hd-stack-c12dd22__quote::before { display: none; }

/* -- test-accent -- */
.hd-stack-c12dd22--accent .hd-stack-c12dd22__card {
    border-left: 3px solid var(--color-primary);
    background: color-mix(in srgb, var(--color-primary) 4%, var(--color-card));
    position: relative;
    overflow: hidden;
}
.hd-stack-c12dd22--accent .hd-stack-c12dd22__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;
}
.hd-stack-c12dd22--accent .hd-stack-c12dd22__quote::before { display: none; }
.hd-stack-c12dd22--accent .hd-stack-c12dd22__quote { padding-left: 0; }

/* -- test-large-avatar -- */
.hd-stack-c12dd22--lg-avatar .hd-stack-c12dd22__card { text-align: center; }
.hd-stack-c12dd22--lg-avatar .hd-stack-c12dd22__avatar { width: 80px; height: 80px; margin: 0 auto 1rem; }
.hd-stack-c12dd22--lg-avatar .hd-stack-c12dd22__quote { padding-left: 0; text-align: center; }
.hd-stack-c12dd22--lg-avatar .hd-stack-c12dd22__quote::before { position: static; display: block; text-align: center; margin-bottom: -0.5rem; }
.hd-stack-c12dd22--lg-avatar .hd-stack-c12dd22__meta { margin-top: 0.75rem; }

/* -- test-masonry -- */
.hd-stack-c12dd22--masonry .hd-stack-c12dd22__grid { display: block; column-count: 2; column-gap: 1.25rem; }
.hd-stack-c12dd22--masonry .hd-stack-c12dd22__card { break-inside: avoid; margin-bottom: 1.25rem; border-top: 3px solid var(--color-primary); box-shadow: none; }
.hd-stack-c12dd22--masonry .hd-stack-c12dd22__quote::before { display: none; }
.hd-stack-c12dd22--masonry .hd-stack-c12dd22__quote { padding-left: 0; }

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

/* -- test-stack -- */
.hd-stack-c12dd22--stack .hd-stack-c12dd22__grid { display: flex; flex-direction: column; gap: 0; }
.hd-stack-c12dd22--stack .hd-stack-c12dd22__card { display: flex; gap: 1.5rem; align-items: center; padding: 2rem; border: none; border-radius: 0; box-shadow: none; }
.hd-stack-c12dd22--stack .hd-stack-c12dd22__card:nth-child(even) { background: var(--color-bg-alt); }
.hd-stack-c12dd22--stack .hd-stack-c12dd22__card:nth-child(odd) { background: var(--color-card); }
.hd-stack-c12dd22--stack .hd-stack-c12dd22__quote { flex: 1; padding-left: 0; margin-bottom: 0; }
.hd-stack-c12dd22--stack .hd-stack-c12dd22__quote::before { display: none; }
.hd-stack-c12dd22--stack .hd-stack-c12dd22__author { flex-shrink: 0; text-align: right; }
.hd-stack-c12dd22--stack .hd-stack-c12dd22__avatar { width: 56px; height: 56px; }

/* === Partners === */
.blk-card-ff6956 { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.blk-card-ff6956 > .itm-wrap-f9807f > h2 { text-align: center; margin-bottom: 1.5rem; }
.blk-card-ff6956__logos { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: center; }
.blk-card-ff6956__logo-item { display: flex; align-items: center; justify-content: center; min-width: 120px; }
.blk-card-ff6956__logo-item img { max-height: 48px; width: auto; filter: grayscale(100%); opacity: 0.6; transition: all var(--transition); }
.blk-card-ff6956__logo-item:hover img { filter: grayscale(0%); opacity: 1; }
.blk-card-ff6956__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);
}
.blk-card-ff6956__logo-item:hover .blk-card-ff6956__logo-text { color: var(--color-primary); border-color: var(--color-primary); }

/* === Gallery === */
.wp-cec2c { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.wp-cec2c > .itm-wrap-f9807f > h2 { text-align: center; margin-bottom: 1.5rem; }
.wp-cec2c__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0.75rem; }
.wp-cec2c__item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.wp-cec2c__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.wp-cec2c__item:hover img { transform: scale(1.05); }
.wp-cec2c__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 === */
.ft-flow-c231a9 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.ft-flow-c231a9 > .itm-wrap-f9807f > h2 { text-align: center; margin-bottom: 1.5rem; }
.ft-flow-c231a9__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.ft-flow-c231a9__thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 0.75rem; }
.ft-flow-c231a9__thumb img { width: 100%; height: 180px; object-fit: cover; display: block; }
.ft-flow-c231a9__date { font-size: 0.8rem; color: var(--color-text-light); display: block; margin-bottom: 0.25rem; }
.ft-flow-c231a9__excerpt { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; }
.ft-flow-c231a9__more { font-size: 0.85rem; color: var(--color-primary); text-decoration: none; font-weight: 500; }
.ft-flow-c231a9__more:hover { text-decoration: underline; }
/* Blog: list variant */
.ft-flow-c231a9--list .ft-flow-c231a9__item { display: flex; gap: 1.25rem; padding: 1rem 0; border-bottom: 1px solid var(--color-border); }
.ft-flow-c231a9--list .ft-flow-c231a9__thumb { flex-shrink: 0; width: 200px; margin: 0; }
.ft-flow-c231a9--list .ft-flow-c231a9__thumb img { height: 130px; }
.ft-flow-c231a9--list .ft-flow-c231a9__item-body h3 { margin: 0 0 0.25rem; font-size: 1.1rem; }
.ft-flow-c231a9--list .ft-flow-c231a9__item-body h3 a { color: var(--color-text); text-decoration: none; }
.ft-flow-c231a9--list .ft-flow-c231a9__item-body h3 a:hover { color: var(--color-primary); }
/* Blog: cards variant */
.ft-flow-c231a9--cards .ft-flow-c231a9__card { display: flex; flex-direction: column; }
.ft-flow-c231a9--cards .ft-flow-c231a9__card-body { flex: 1; display: flex; flex-direction: column; padding: 1rem 0; }
.ft-flow-c231a9--cards .ft-flow-c231a9__card-body h3 { margin: 0.25rem 0 0.5rem; font-size: 1.05rem; }
.ft-flow-c231a9--cards .ft-flow-c231a9__card-body h3 a { color: var(--color-text); text-decoration: none; }
.ft-flow-c231a9--cards .ft-flow-c231a9__card-body h3 a:hover { color: var(--color-primary); }
.ft-flow-c231a9--cards .ft-flow-c231a9__more { margin-top: auto; }
/* Blog: minimal variant */
.ft-flow-c231a9--minimal .ft-flow-c231a9__list { list-style: none; padding: 0; }
.ft-flow-c231a9--minimal .ft-flow-c231a9__list li { padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); display: flex; justify-content: space-between; align-items: center; }
.ft-flow-c231a9--minimal .ft-flow-c231a9__list a { color: var(--color-text); text-decoration: none; font-weight: 500; }
.ft-flow-c231a9--minimal .ft-flow-c231a9__list a:hover { color: var(--color-primary); }

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

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

/* === Categories === */
.cp-content-4b22241 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.cp-content-4b22241 > .itm-wrap-f9807f > h2 { text-align: center; margin-bottom: 0.5rem; }
.cp-content-4b22241__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.cp-content-4b22241__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; }
.cp-content-4b22241__card:hover { border-color: var(--color-primary); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.cp-content-4b22241__item { text-decoration: none; color: var(--color-text); transition: background var(--transition); }
.cp-content-4b22241__item:hover { background: var(--color-bg-alt); }
.cp-content-4b22241--icons .cp-content-4b22241__item { text-decoration: none; color: var(--color-text); transition: color var(--transition); }
.cp-content-4b22241--icons .cp-content-4b22241__item:hover { color: var(--color-primary); }

/* === Newsletter === */
.mn-core-11c7767 { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.mn-core-11c7767 h2 { text-align: center; margin-bottom: 0.5rem; }
.mn-core-11c7767 p { text-align: center; color: var(--color-text-light); margin-bottom: 1.5rem; }
.mn-core-11c7767__form { display: flex; gap: 0.75rem; max-width: 500px; margin: 0 auto; }
.mn-core-11c7767__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; }
.mn-core-11c7767__form button { white-space: nowrap; }
.mn-core-11c7767--full { background: var(--color-bg-alt); }
.mn-core-11c7767--card > .itm-wrap-f9807f { background: var(--color-card); border-radius: var(--radius); padding: 2rem; max-width: 600px; margin: 0 auto; box-shadow: var(--shadow); }
.mn-core-11c7767--inline .mn-core-11c7767__form { max-width: 700px; }

/* === Comparison === */
.blk-grid-b8a0 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.blk-grid-b8a0 > .itm-wrap-f9807f > h2 { text-align: center; margin-bottom: 0.5rem; }
.blk-grid-b8a0__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.blk-grid-b8a0__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); }
.blk-grid-b8a0__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.blk-grid-b8a0__card h3 { margin: 0 0 0.75rem; font-size: 1.1rem; }
.blk-grid-b8a0__rating { color: var(--color-accent); font-size: 1.1rem; margin-bottom: 0.75rem; }
.blk-grid-b8a0__pros, .blk-grid-b8a0__cons { font-size: 0.9rem; margin-bottom: 0.5rem; }
.blk-grid-b8a0__table { width: 100%; border-spacing: 0; border-collapse: collapse; }
.blk-grid-b8a0__table th { font-weight: 600; color: var(--color-text); background: var(--color-bg-alt); }
.blk-grid-b8a0__table td, .blk-grid-b8a0__table th { padding: 0.75rem; border-bottom: 1px solid var(--color-border); text-align: left; }
.blk-grid-b8a0__table tr:hover td { background: var(--color-bg-alt); }
.blk-grid-b8a0--list .blk-grid-b8a0__item { padding: 1.25rem 0; border-bottom: 1px solid var(--color-border); }

/* === Projects === */
.el-rail-44707d7 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.el-rail-44707d7 > .itm-wrap-f9807f > h2 { text-align: center; margin-bottom: 0.5rem; }
.el-rail-44707d7__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.el-rail-44707d7__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); }
.el-rail-44707d7__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.el-rail-44707d7__card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.el-rail-44707d7__card-body { padding: 1.25rem; }
.el-rail-44707d7__card-body h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.el-rail-44707d7__card-body p { font-size: 0.9rem; color: var(--color-text-light); margin: 0; }
.el-rail-44707d7__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; }
.el-rail-44707d7--case .el-rail-44707d7__grid { grid-template-columns: 1fr; gap: 2rem; }
.el-rail-44707d7--case .el-rail-44707d7__item { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; }
.el-rail-44707d7--case .el-rail-44707d7__item img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.el-rail-44707d7--minimal .el-rail-44707d7__grid { grid-template-columns: 1fr; }
.el-rail-44707d7--minimal .el-rail-44707d7__item { padding: 1rem 0; border-bottom: 1px solid var(--color-border); }

/* === Entry content === */
.pnl-outer-a3c3b { line-height: 1.8; }
.pnl-outer-a3c3b p { margin-bottom: 1rem; }
.pnl-outer-a3c3b h2, .pnl-outer-a3c3b h3, .pnl-outer-a3c3b h4 { margin: 1.5rem 0 0.75rem; }
.pnl-outer-a3c3b img { max-width: 100%; height: auto; border-radius: var(--radius); }
.pnl-outer-a3c3b ul, .pnl-outer-a3c3b ol { margin: 0 0 1rem 1.5rem; }
.pnl-outer-a3c3b 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 === */
.cmp-body-214bfd { padding: clamp(1.5rem, 3vw, 2.5rem) 0; }
.cmp-body-214bfd__strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1rem, 3vw, 2.5rem); }
.cmp-body-214bfd__item { display: inline-flex; align-items: center; }
.cmp-body-214bfd__item img { max-height: 40px; width: auto; filter: grayscale(1); opacity: 0.6; transition: all var(--transition); }
.cmp-body-214bfd__item:hover img { filter: grayscale(0); opacity: 1; }
.cmp-body-214bfd__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 === */
.el-col-25040b {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 2rem 0 1.25rem;
    margin-top: 0;
}
.el-col-25040b__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 1.25rem; }
.el-col-25040b__col h3 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.el-col-25040b__col p { font-size: 0.9rem; margin-bottom: 0.4rem; }
.el-col-25040b__col a { color: rgba(255,255,255,0.7); }
.el-col-25040b__col a:hover { color: #fff; }
.el-col-25040b__col ul { list-style: none; padding: 0; }
.el-col-25040b__col ul li { margin-bottom: 0.35rem; }
.el-col-25040b__col nav ul { list-style: none; padding: 0; }
.el-col-25040b__col nav ul li { margin-bottom: 0.35rem; }
.el-col-25040b__col nav a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.el-col-25040b__col nav a:hover { color: #fff; }
.el-col-25040b__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; }
.el-col-25040b__social { display: flex; gap: 0.75rem; }
.el-col-25040b__social a { color: rgba(255,255,255,0.7); }
.el-col-25040b__social a:hover { color: #fff; }

/* Footer: legal bar */
.el-col-25040b__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;
}
.el-col-25040b__legal li { list-style: none; }
.el-col-25040b__legal a { color: rgba(255,255,255,0.55); }
.el-col-25040b__legal a:hover { color: rgba(255,255,255,0.9); }

/* Footer: custom HTML */
.el-col-25040b__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.02em;
    border: var(--border-w) solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 6px;
    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); }

/* === Section modifier utility classes === */
.mod--soft { background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%) !important; }
.bg--muted { background: var(--color-primary-light) !important; }
/* Ensure text contrast on potentially dark primary-light (low-saturation palettes) */
.bg--muted p, .bg--muted li, .bg--muted span { color: var(--color-text); }
.bg--muted .block-subtitle { color: var(--color-text-light); }
.layer--tint { background: rgba(255,255,255,0.7) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.alt--contrast {
    background: var(--color-primary-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(--color-primary-light);
    --color-primary-dark: var(--color-accent);
    --color-primary-light: rgba(255,255,255,0.12);
    /* Set A aliases */
    --brand-color: var(--color-primary-light);
    --brand-dark: var(--color-accent);
    --brand-light: rgba(255,255,255,0.12);
    /* Set B aliases */
    --primary: var(--color-primary-light);
    --primary-dark: var(--color-accent);
    --primary-light: rgba(255,255,255,0.12);
    /* Set C aliases */
    --clr-main: var(--color-primary-light);
    --clr-main-dark: var(--color-accent);
    --clr-main-light: rgba(255,255,255,0.12);
    /* CSS var set A aliases */
    --card-bg: rgba(255,255,255,0.08);
    --bg-color: 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 */
    --card: rgba(255,255,255,0.08);
    --background: transparent;
    --background-alt: rgba(255,255,255,0.04);
    --text: #fff;
    --text-secondary: rgba(255,255,255,0.75);
    --border: rgba(255,255,255,0.15);
    /* CSS var set C aliases */
    --clr-card: rgba(255,255,255,0.08);
    --clr-bg: transparent;
    --clr-bg-alt: rgba(255,255,255,0.04);
    --clr-text: #fff;
    --clr-text-muted: rgba(255,255,255,0.75);
    --clr-border: rgba(255,255,255,0.15);
}
.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--lift { border: var(--border-w) solid var(--color-border); box-shadow: none; }
.box--chevron { 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--arrow { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.item--arrow:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.box--outline { box-shadow: none; border: none; background: var(--color-bg-alt); }
.box--hover { position: relative; padding-right: 2.5rem; cursor: pointer; transition: border-color 0.2s; }
.box--hover::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--hover:hover { border-color: var(--color-primary); }
.box--hover: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; }

    .blk-dock-1dde .itm-wrap-f9807f { font-size: 0.8rem; flex-wrap: wrap; justify-content: center; text-align: center; }

    .blk-35ae .itm-wrap-f9807f { flex-wrap: wrap; }
    .blk-35ae__nav { display: none; }
    .blk-35ae__burger { display: block; }
    .blk-35ae__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);
    }
    .blk-35ae__nav--open a { padding: 8px 0; display: block; font-size: 1rem; }
    .blk-35ae--white .blk-35ae__nav--open { background: var(--color-bg); border-bottom: 1px solid var(--color-border); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .blk-35ae--white .blk-35ae__nav--open a { color: var(--color-text); }
    .blk-35ae__actions { width: 100%; justify-content: space-between; margin-top: 0.5rem; }
    .blk-35ae__sec-links { justify-content: flex-start; font-size: 0.85rem; }

    .ft-content-347483--split > .itm-wrap-f9807f { grid-template-columns: 1fr !important; }
    .ft-content-347483--left-aligned > .itm-wrap-f9807f { grid-template-columns: 1fr !important; }
    .ft-content-347483__decor { min-height: auto; align-items: center; }
    .ft-content-347483__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    .ft-content-347483__buttons { flex-direction: column; }
    .ft-content-347483__buttons .ft-content-347483__btn { text-align: center; }
    .ft-content-347483__stats-row { gap: 1.5rem; }
    .ft-content-347483__features-grid { grid-template-columns: 1fr 1fr !important; }
    .ft-content-347483--video .ft-content-347483__video-grid { grid-template-columns: 1fr !important; }
    .ft-content-347483--checklist .ft-content-347483__check-grid { grid-template-columns: 1fr !important; }
    .ft-content-347483__badges-row { gap: 0.5rem; }
    .ft-content-347483__badge { padding: 8px 12px; font-size: 0.8rem; }

    .wrp-shelf-0d0239--bar .wrp-shelf-0d0239__bar { flex-wrap: wrap; }
    .wrp-shelf-0d0239__grid { gap: 1.25rem; }
    .wrp-shelf-0d0239__number { font-size: 1.75rem; }

    .st-hero-9995ec__grid { grid-template-columns: 1fr !important; }
    .st-hero-9995ec--numbered .st-hero-9995ec__grid { grid-template-columns: 1fr !important; }

    .blk-link-2945c__grid { grid-template-columns: 1fr !important; }
    .blk-link-2945c__row { grid-template-columns: 1fr !important; gap: 0.75rem; }
    .blk-link-2945c__list-item { flex-direction: column; text-align: center; }

    .wp-form-c09e__grid { grid-template-columns: 1fr !important; }

    .mn-body-985b7c__split-grid { grid-template-columns: 1fr !important; }

    .pnl-1c509c0__grid { grid-template-columns: 1fr !important; }
    .pnl-1c509c0__list-item { flex-direction: column; gap: 0.5rem; }
    .pnl-1c509c0__inline-grid { flex-direction: column; }

    .mod-31b60e__grid { grid-template-columns: 1fr 1fr !important; }
    .mod-31b60e__item:not(:last-child)::after { display: none; }

    .hd-stack-c12dd22__grid { grid-template-columns: 1fr !important; }
    .hd-stack-c12dd22--featured .hd-stack-c12dd22__grid { grid-template-columns: 1fr !important; }
    .hd-stack-c12dd22--horizontal .hd-stack-c12dd22__row { flex-direction: column; align-items: center; text-align: center; }
    .hd-stack-c12dd22--horizontal .hd-stack-c12dd22__avatar { margin: 0 auto; }
    .hd-stack-c12dd22--masonry .hd-stack-c12dd22__grid { column-count: 1; }
    .hd-stack-c12dd22--sidebar .hd-stack-c12dd22__layout { grid-template-columns: 1fr !important; }
    .hd-stack-c12dd22--sidebar .hd-stack-c12dd22__side { position: static; }
    .hd-stack-c12dd22--sidebar .hd-stack-c12dd22__side h2 { text-align: center; }
    .hd-stack-c12dd22--sidebar .hd-stack-c12dd22__side::after { margin: 1rem auto; }
    .hd-stack-c12dd22--stack .hd-stack-c12dd22__card { flex-direction: column; text-align: center; }
    .hd-stack-c12dd22--stack .hd-stack-c12dd22__author { text-align: center; }

    .wp-cec2c__grid { grid-template-columns: 1fr 1fr !important; }

    .ft-flow-c231a9__grid { grid-template-columns: 1fr !important; }

    .pnl-inner-b10fe__faq-grid { grid-template-columns: 1fr !important; }

    .box-aside-01cab__grid { grid-template-columns: 1fr 1fr !important; }
    .box-aside-01cab--list .box-aside-01cab__card { flex-direction: column; text-align: center; }
    .box-aside-01cab--list .box-aside-01cab__photo { width: 100%; }
    .mn-core-11c7767__form { flex-direction: column; }
    .cp-content-4b22241__grid { grid-template-columns: 1fr 1fr !important; }
    .blk-grid-b8a0__grid { grid-template-columns: 1fr !important; }
    .blk-grid-b8a0__table { font-size: 0.85rem; overflow-x: auto; display: block; }
    .el-rail-44707d7__grid { grid-template-columns: 1fr !important; }
    .el-rail-44707d7--case .el-rail-44707d7__item { grid-template-columns: 1fr !important; }
    .cmp-body-214bfd__item img { max-height: 30px; }

    .el-col-25040b__grid { grid-template-columns: 1fr !important; }
    .el-col-25040b__bottom { flex-direction: column; text-align: center; }

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

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

    .mod-31b60e__grid { grid-template-columns: 1fr !important; }
    .wp-cec2c__grid { grid-template-columns: 1fr !important; }

    .wrp-shelf-0d0239__grid { flex-direction: column; align-items: center; }
    .wrp-shelf-0d0239--bar .wrp-shelf-0d0239__bar { flex-direction: column; }
    .wrp-shelf-0d0239--bar .wrp-shelf-0d0239__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .wrp-shelf-0d0239--bar .wrp-shelf-0d0239__item:last-child { border-bottom: none; }

    .ft-content-347483__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-base-be8e3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
@media (max-width: 600px) {
    .mn-base-be8e3 { grid-template-columns: 1fr !important; }
}

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

/* Content utility: list */
.lay-panel-0406 {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.lay-panel-0406 li {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.6;
}
.lay-panel-0406 li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); top: 0.6em;
    position: absolute; left: 0;
    font-size: 1em;
}

/* Content utility: highlight */
.el-frame-aca08 {
    padding: 1.25rem;
    background: var(--color-primary-light);
    border-top: 4px solid var(--color-primary);
    border-radius: 0 0 1.25rem 1.25rem;
    margin: 1.5rem 0;
}
.el-frame-aca08 p:last-child { margin-bottom: 0; }