/*
Theme Name: plover
Description: A clean and modern theme
Version: 8.6
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&display=swap');

:root {
    --brand-color: hsl(175, 60%, 42%);
    --brand-dark: hsl(175, 60%, 27%);
    --brand-light: hsl(175, 40%, 85%);
    --accent-color: hsl(205, 60%, 52%);
    --accent-hover: hsl(205, 60%, 47%);
    --bg-main: #0f172a;
    --bg-alt: #1e293b;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --border-color: rgba(255,255,255,0.1);
    --card-bg: #1e293b;
    --ff-body: 'Outfit', 'Segoe UI', sans-serif;
    --ff-heading: 'Outfit', 'Segoe UI', sans-serif;
    --radius: 12px;
    --shadow: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.4);
    --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: 300;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    text-wrap: balance;
}
h1 { font-size: clamp(1.88rem, 3.8vw + 0.75rem, 3.53rem); }
h2 { font-size: clamp(1.44rem, 2.9vw + 0.58rem, 2.64rem); }
h3 { font-size: clamp(1.18rem, 1.5vw + 0.47rem, 1.55rem); }
h4 { font-size: clamp(0.90rem, 1.1vw + 0.36rem, 1.13rem); }
h5 { font-size: clamp(0.93rem, 1.0vw + 0.37rem, 1.08rem); }
h6 { font-size: clamp(0.88rem, 0.8vw + 0.35rem, 1.04rem); }

p { margin-bottom: 1rem; }

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

/* === Layout === */
.pg-outer-2533 {
    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 > .pg-outer-2533 > h2 { text-align: center; margin-bottom: 0.5rem; }
.l-section > .pg-outer-2533 > .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 === */
.el-b3ea5 {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 6px 0;
}
.el-b3ea5 .pg-outer-2533 { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.el-b3ea5 a { color: rgba(255,255,255,0.85); }
.el-b3ea5 a:hover { color: #fff; }

/* === Header === */
.wrp-strip-1965 {
    background: var(--brand-dark);
    color: #fff;
    padding: 1.1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    
}
.wrp-strip-1965 .pg-outer-2533 { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.wrp-strip-1965__brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.wrp-strip-1965__logo { max-height: 52px; width: auto; }
.wrp-strip-1965__brand-name { font-family: var(--ff-heading); font-weight: 700; font-size: 1.4rem; color: #fff; }
.wrp-strip-1965__nav { display: flex; gap: 1.25rem; list-style: none; align-items: center; }
.wrp-strip-1965__nav li { list-style: none; }
.wrp-strip-1965__nav a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 1rem; white-space: nowrap; }
.wrp-strip-1965__nav a:hover { color: #fff; }
.wrp-strip-1965__nav a { position: relative; padding-bottom: 4px; }
.wrp-strip-1965__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;
}
.wrp-strip-1965__nav a:hover::after { width: 100%; left: 0; }
.wrp-strip-1965__more-menu { position: relative; }
.wrp-strip-1965__more-menu > a { cursor: pointer; }
.wrp-strip-1965__more-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: var(--brand-dark);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    z-index: 100;
    list-style: none;
}
.wrp-strip-1965__more-menu.open .sub-menu { display: block; }
.wrp-strip-1965__more-menu .sub-menu li { list-style: none; }
.wrp-strip-1965__more-menu .sub-menu a {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    font-size: 0.9rem;
}
.wrp-strip-1965__more-menu .sub-menu a:hover { background: rgba(255,255,255,0.1); }
.wrp-strip-1965--white .wrp-strip-1965__more-menu .sub-menu { background: var(--bg-main); border: 1px solid var(--border-color); }
.wrp-strip-1965--white .wrp-strip-1965__more-menu .sub-menu a:hover { background: var(--bg-alt); }
.wrp-strip-1965__actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.wrp-strip-1965__phone a { color: #fff; font-weight: 600; font-size: 1.05rem; white-space: nowrap; }
.wrp-strip-1965__phone a:hover { color: var(--accent-color); }
.wrp-strip-1965__cta {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    text-transform: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
}
.wrp-strip-1965__cta:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }
.wrp-strip-1965__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) === */
.wrp-strip-1965--white { background: var(--bg-main); color: var(--text-main); border-bottom: 1px solid var(--border-color); box-shadow: none; }
.wrp-strip-1965--white .wrp-strip-1965__brand-name { color: var(--text-main); }
.wrp-strip-1965--white .wrp-strip-1965__nav a { color: var(--text-main); opacity: 0.75; }
.wrp-strip-1965--white .wrp-strip-1965__nav a:hover { color: var(--brand-color); opacity: 1; }
.wrp-strip-1965--white .wrp-strip-1965__phone a { color: var(--text-main); }
.wrp-strip-1965--white .wrp-strip-1965__burger { color: var(--text-main); }

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

/* === Hero === */
.pg-grid-98860 {
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-dark) 100%);
    color: #fff;
    padding: 3rem 0 2.5rem; min-height: 70vh; display: flex; align-items: center;
    background-size: cover;
    background-position: center;
}
.pg-grid-98860 > .pg-outer-2533 { width: 100%; }
.pg-grid-98860 {
    background: radial-gradient(ellipse at center, var(--brand-color) 0%, var(--brand-dark) 80%) !important;
}
.pg-grid-98860--split > .pg-outer-2533 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.pg-grid-98860--split .pg-grid-98860__buttons { justify-content: flex-start; }

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

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

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

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

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

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

/* === Hero: photo-grid variant === */
.pg-grid-98860--photo-grid .pg-grid-98860__photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.pg-grid-98860__photo-image { border-radius: var(--radius); overflow: hidden; }
.pg-grid-98860__photo-image img { width: 100%; height: auto; display: block; }

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

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

/* === Stats === */
.wp-dd1467a { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.wp-dd1467a > .pg-outer-2533 > h2 { text-align: center; margin-bottom: 1.5rem; }
.wp-dd1467a__grid { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; text-align: center; }
.wp-dd1467a__item { min-width: 120px; }
.wp-dd1467a__number { font-size: 2.25rem; font-weight: 700; font-family: var(--ff-heading); color: var(--brand-color); line-height: 1.2; }
.wp-dd1467a__label { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.2rem; }

/* Stats variant: cards */
.wp-dd1467a--cards .wp-dd1467a__grid { gap: 1.25rem; }
.wp-dd1467a--cards .wp-dd1467a__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 */
.wp-dd1467a--bar { padding: 0; }
.wp-dd1467a__bar {
    display: flex;
    background: var(--brand-color);
    color: #fff;
    padding: 1.25rem 0;
}
.wp-dd1467a--bar .wp-dd1467a__item { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 1rem; }
.wp-dd1467a--bar .wp-dd1467a__item:last-child { border-right: none; }
.wp-dd1467a--bar .wp-dd1467a__number { color: #fff; font-size: 2rem; }
.wp-dd1467a--bar .wp-dd1467a__label { color: rgba(255,255,255,0.8); }

/* === Body / Block === */
.hd-flow-2db82a { padding: clamp(2rem, 4vw, 3.5rem) 0; }

.pnl-grid-e33dcfd {
    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);
}
.pnl-grid-e33dcfd:hover { box-shadow: var(--shadow-hover); border-color: var(--brand-light); transform: translateY(-2px); }
.pnl-grid-e33dcfd__icon { margin-bottom: 0.75rem; }
.pnl-grid-e33dcfd__icon img { width: 48px; height: 48px; }

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

/* Adv variant: list */
.wrp-view-21a6c84--list .wrp-view-21a6c84__grid { grid-template-columns: 1fr; gap: 1rem; }
.wrp-view-21a6c84--list .wrp-view-21a6c84__item { display: flex; gap: 1.25rem; text-align: left; align-items: flex-start; }
.wrp-view-21a6c84--list .wrp-view-21a6c84__icon { flex-shrink: 0; }
.wrp-view-21a6c84--list .wrp-view-21a6c84__text p { margin-bottom: 0; }

/* Adv variant: numbered */
.wrp-view-21a6c84--numbered .wrp-view-21a6c84__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.wrp-view-21a6c84--numbered .wrp-view-21a6c84__item { display: flex; gap: 1rem; text-align: left; padding: 1.25rem; }
.wrp-view-21a6c84__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);
}
.wrp-view-21a6c84--numbered .wrp-view-21a6c84__text p { margin-bottom: 0; }

/* Adv variant: bordered */
.wrp-view-21a6c84--bordered .wrp-view-21a6c84__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;
}
.wrp-view-21a6c84--bordered .wrp-view-21a6c84__item:hover { border-left-color: var(--accent-color); }

/* === Tariffs === */
.mod-strip-cb5f3f { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.mod-strip-cb5f3f > .pg-outer-2533 > h2 { text-align: center; margin-bottom: 1.5rem; }
.mod-strip-cb5f3f__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.mod-strip-cb5f3f__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);
}
.mod-strip-cb5f3f__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.mod-strip-cb5f3f__card--highlighted { border-color: var(--brand-color); box-shadow: 0 0 0 2px var(--brand-light); position: relative; }
.mod-strip-cb5f3f__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; }
.mod-strip-cb5f3f__price { font-size: 1.75rem; font-weight: 700; color: var(--brand-color); margin: 0.5rem 0; }
.mod-strip-cb5f3f__features { list-style: none; padding: 0; margin: 0.75rem 0; text-align: left; }
.mod-strip-cb5f3f__features li { padding: 0.35rem 0; border-bottom: 1px solid var(--border-color); font-size: 0.9rem; }

/* Tariff variant: horizontal */
.mod-strip-cb5f3f--horizontal .mod-strip-cb5f3f__grid { display: none; }
.mod-strip-cb5f3f__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);
}
.mod-strip-cb5f3f__row--hl { border-color: var(--brand-color); background: var(--brand-light); }
.mod-strip-cb5f3f__row-head .mod-strip-cb5f3f__price { font-size: 1.4rem; margin: 0.25rem 0; }
.mod-strip-cb5f3f__row-body .mod-strip-cb5f3f__features { margin: 0; }
.mod-strip-cb5f3f__row-body .mod-strip-cb5f3f__features li { display: inline; }
.mod-strip-cb5f3f__row-body .mod-strip-cb5f3f__features li::after { content: ' \00B7  '; }
.mod-strip-cb5f3f__row-body .mod-strip-cb5f3f__features li:last-child::after { content: ''; }

/* Tariff variant: minimal */
.mod-strip-cb5f3f--minimal .mod-strip-cb5f3f__grid { display: none; }
.mod-strip-cb5f3f__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}
.mod-strip-cb5f3f--minimal .mod-strip-cb5f3f__price { font-size: 1.25rem; white-space: nowrap; margin: 0; }

/* === Benefits === */
.wrp-link-7c489 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.wrp-link-7c489 > .pg-outer-2533 > h2 { text-align: center; margin-bottom: 1.5rem; }
.wrp-link-7c489__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.wrp-link-7c489__item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.wrp-link-7c489__item h3 { margin-bottom: 0.2rem; }

/* Benefits variant: checklist */
.wrp-link-7c489--checklist .wrp-link-7c489__grid { display: none; }
.wrp-link-7c489__list { max-width: 700px; margin: 0 auto; }
.wrp-link-7c489__check-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-start;
}
.wrp-link-7c489__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;
}
.wrp-link-7c489__check-item p { margin: 0.25rem 0 0; color: var(--text-muted); font-size: 0.9rem; }

/* Benefits variant: icons */
.wrp-link-7c489--icons .wrp-link-7c489__item { flex-direction: column; text-align: center; align-items: center; }
.wrp-link-7c489__icon-big { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }
.wrp-link-7c489__icon-big img { width: 56px; height: 56px; }

/* === FAQ === */
.hd-flow-2db82a#faq { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.hd-flow-2db82a#faq h2, .hd-flow-2db82a > .pg-outer-2533 > h2 { text-align: center; margin-bottom: 1.5rem; }

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

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

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

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

/* CTA variant: split */
.box-cell-0728a--split { text-align: left; }
.box-cell-0728a__split-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: center; }
.box-cell-0728a__split-action { text-align: center; }

/* === Products === */
.cmp-cta-e967557 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.cmp-cta-e967557 > .pg-outer-2533 > h2 { text-align: center; margin-bottom: 1.5rem; }
.cmp-cta-e967557__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.cmp-cta-e967557__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);
}
.cmp-cta-e967557__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.cmp-cta-e967557__card-body { padding: 1.25rem; }

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

/* Products variant: inline */
.cmp-cta-e967557--inline .cmp-cta-e967557__grid { display: none; }
.cmp-cta-e967557__inline-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cmp-cta-e967557__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;
}
.cmp-cta-e967557__inline-item:hover { border-color: var(--brand-color); }
.cmp-cta-e967557__inline-item span { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

/* === Steps === */
.bl-rail-48addd3 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.bl-rail-48addd3 > .pg-outer-2533 > h2 { text-align: center; margin-bottom: 1.5rem; }
.bl-rail-48addd3__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; counter-reset: step; position: relative; }
.bl-rail-48addd3__item { text-align: center; position: relative; }
.bl-rail-48addd3__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);
}
.bl-rail-48addd3__item h3 { font-size: 1.1rem; }
.bl-rail-48addd3__item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
/* Connector line between steps */
.bl-rail-48addd3__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 */
.wrp-strip-1965--transparent ~ main > .pg-grid-98860 { padding-top: calc(80px + 2rem); }

/* === Testimonials === */
.wp-text-7587 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.wp-text-7587 > .pg-outer-2533 > h2 { text-align: center; margin-bottom: 1.5rem; }
.wp-text-7587__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.wp-text-7587__card {
    padding: 1.5rem;
    background: var(--card-bg);
    border: var(--border-w) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.wp-text-7587__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;
}
.wp-text-7587__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; }
.wp-text-7587__author { display: flex; gap: 0.75rem; align-items: center; }
.wp-text-7587__avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.wp-text-7587__avatar img { width: 100%; height: 100%; object-fit: cover; }
.wp-text-7587__position { display: block; color: var(--text-muted); font-size: 0.9rem; }
.wp-text-7587__cite { display: block; font-style: normal; margin-top: 0.75rem; color: var(--text-muted); }
.wp-text-7587__cite strong { color: var(--text-main); }
.wp-text-7587__meta { color: var(--text-muted); font-size: 0.9rem; }
.wp-text-7587__meta strong { color: var(--text-main); }

/* -- test-bubble -- */
.wp-text-7587--bubble .wp-text-7587__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;
}
.wp-text-7587--bubble .wp-text-7587__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);
}
.wp-text-7587--bubble .wp-text-7587__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);
}
.wp-text-7587--bubble .wp-text-7587__card { background: none; border: none; box-shadow: none; padding: 0; }
.wp-text-7587--bubble .wp-text-7587__quote { padding-left: 0; margin: 0; }
.wp-text-7587--bubble .wp-text-7587__quote::before { display: none; }
.wp-text-7587--bubble .wp-text-7587__author { padding-left: 0.5rem; }

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

/* -- test-featured -- */
.wp-text-7587--featured .wp-text-7587__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.wp-text-7587--featured .wp-text-7587__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));
}
.wp-text-7587--featured .wp-text-7587__card--feat .wp-text-7587__avatar { width: 72px; height: 72px; }

/* -- test-horizontal -- */
.wp-text-7587--horizontal .wp-text-7587__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;
}
.wp-text-7587--horizontal .wp-text-7587__row:last-child { margin-bottom: 0; }
.wp-text-7587--horizontal .wp-text-7587__avatar { width: 64px; height: 64px; border-radius: 8px; flex-shrink: 0; overflow: hidden; }
.wp-text-7587--horizontal .wp-text-7587__avatar img { border-radius: 8px; }
.wp-text-7587--horizontal .wp-text-7587__content { flex: 1; }
.wp-text-7587--horizontal .wp-text-7587__quote { padding-left: 0; margin-bottom: 0.75rem; }
.wp-text-7587--horizontal .wp-text-7587__quote::before { display: none; }

/* -- test-accent -- */
.wp-text-7587--accent .wp-text-7587__card {
    border-left: 3px solid var(--brand-color);
    background: color-mix(in srgb, var(--brand-color) 4%, var(--card-bg));
    position: relative;
    overflow: hidden;
}
.wp-text-7587--accent .wp-text-7587__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;
}
.wp-text-7587--accent .wp-text-7587__quote::before { display: none; }
.wp-text-7587--accent .wp-text-7587__quote { padding-left: 0; }

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

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

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

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

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

/* === Gallery === */
.sec-hub-5468 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.sec-hub-5468 > .pg-outer-2533 > h2 { text-align: center; margin-bottom: 1.5rem; }
.sec-hub-5468__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0.75rem; }
.sec-hub-5468__item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.sec-hub-5468__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.sec-hub-5468__item:hover img { transform: scale(1.05); }
.sec-hub-5468__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 === */
.mn-75f1e6e { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.mn-75f1e6e > .pg-outer-2533 > h2 { text-align: center; margin-bottom: 1.5rem; }
.mn-75f1e6e__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.mn-75f1e6e__thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 0.75rem; }
.mn-75f1e6e__thumb img { width: 100%; height: 180px; object-fit: cover; display: block; }
.mn-75f1e6e__date { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 0.25rem; }
.mn-75f1e6e__excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.mn-75f1e6e__more { font-size: 0.85rem; color: var(--brand-color); text-decoration: none; font-weight: 500; }
.mn-75f1e6e__more:hover { text-decoration: underline; }
/* Blog: list variant */
.mn-75f1e6e--list .mn-75f1e6e__item { display: flex; gap: 1.25rem; padding: 1rem 0; border-bottom: 1px solid var(--border-color); }
.mn-75f1e6e--list .mn-75f1e6e__thumb { flex-shrink: 0; width: 200px; margin: 0; }
.mn-75f1e6e--list .mn-75f1e6e__thumb img { height: 130px; }
.mn-75f1e6e--list .mn-75f1e6e__item-body h3 { margin: 0 0 0.25rem; font-size: 1.1rem; }
.mn-75f1e6e--list .mn-75f1e6e__item-body h3 a { color: var(--text-main); text-decoration: none; }
.mn-75f1e6e--list .mn-75f1e6e__item-body h3 a:hover { color: var(--brand-color); }
/* Blog: cards variant */
.mn-75f1e6e--cards .mn-75f1e6e__card { display: flex; flex-direction: column; }
.mn-75f1e6e--cards .mn-75f1e6e__card-body { flex: 1; display: flex; flex-direction: column; padding: 1rem 0; }
.mn-75f1e6e--cards .mn-75f1e6e__card-body h3 { margin: 0.25rem 0 0.5rem; font-size: 1.05rem; }
.mn-75f1e6e--cards .mn-75f1e6e__card-body h3 a { color: var(--text-main); text-decoration: none; }
.mn-75f1e6e--cards .mn-75f1e6e__card-body h3 a:hover { color: var(--brand-color); }
.mn-75f1e6e--cards .mn-75f1e6e__more { margin-top: auto; }
/* Blog: minimal variant */
.mn-75f1e6e--minimal .mn-75f1e6e__list { list-style: none; padding: 0; }
.mn-75f1e6e--minimal .mn-75f1e6e__list li { padding: 0.75rem 0; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
.mn-75f1e6e--minimal .mn-75f1e6e__list a { color: var(--text-main); text-decoration: none; font-weight: 500; }
.mn-75f1e6e--minimal .mn-75f1e6e__list a:hover { color: var(--brand-color); }

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

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

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

/* === Newsletter === */
.itm-block-e5071e { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.itm-block-e5071e h2 { text-align: center; margin-bottom: 0.5rem; }
.itm-block-e5071e p { text-align: center; color: var(--text-muted); margin-bottom: 1.5rem; }
.itm-block-e5071e__form { display: flex; gap: 0.75rem; max-width: 500px; margin: 0 auto; }
.itm-block-e5071e__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; }
.itm-block-e5071e__form button { white-space: nowrap; }
.itm-block-e5071e--full { background: var(--bg-alt); }
.itm-block-e5071e--card > .pg-outer-2533 { background: var(--card-bg); border-radius: var(--radius); padding: 2rem; max-width: 600px; margin: 0 auto; box-shadow: var(--shadow); }
.itm-block-e5071e--inline .itm-block-e5071e__form { max-width: 700px; }

/* === Comparison === */
.lay-top-46caf3 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.lay-top-46caf3 > .pg-outer-2533 > h2 { text-align: center; margin-bottom: 0.5rem; }
.lay-top-46caf3__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.lay-top-46caf3__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); }
.lay-top-46caf3__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.lay-top-46caf3__card h3 { margin: 0 0 0.75rem; font-size: 1.1rem; }
.lay-top-46caf3__rating { color: var(--accent-color); font-size: 1.1rem; margin-bottom: 0.75rem; }
.lay-top-46caf3__pros, .lay-top-46caf3__cons { font-size: 0.9rem; margin-bottom: 0.5rem; }
.lay-top-46caf3__table { width: 100%; border-spacing: 0; border-collapse: collapse; }
.lay-top-46caf3__table th { font-weight: 600; color: var(--text-main); background: var(--bg-alt); }
.lay-top-46caf3__table td, .lay-top-46caf3__table th { padding: 0.75rem; border-bottom: 1px solid var(--border-color); text-align: left; }
.lay-top-46caf3__table tr:hover td { background: var(--bg-alt); }
.lay-top-46caf3--list .lay-top-46caf3__item { padding: 1.25rem 0; border-bottom: 1px solid var(--border-color); }

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

/* === Entry content === */
.blk-group-f6a508 { line-height: 1.8; }
.blk-group-f6a508 p { margin-bottom: 1rem; }
.blk-group-f6a508 h2, .blk-group-f6a508 h3, .blk-group-f6a508 h4 { margin: 1.5rem 0 0.75rem; }
.blk-group-f6a508 img { max-width: 100%; height: auto; border-radius: var(--radius); }
.blk-group-f6a508 ul, .blk-group-f6a508 ol { margin: 0 0 1rem 1.5rem; }
.blk-group-f6a508 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 === */
.wp-card-b8389c { padding: clamp(1.5rem, 3vw, 2.5rem) 0; }
.wp-card-b8389c__strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1rem, 3vw, 2.5rem); }
.wp-card-b8389c__item { display: inline-flex; align-items: center; }
.wp-card-b8389c__item img { max-height: 40px; width: auto; filter: grayscale(1); opacity: 0.6; transition: all var(--transition); }
.wp-card-b8389c__item:hover img { filter: grayscale(0); opacity: 1; }
.wp-card-b8389c__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 === */
.box-text-faa024a {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.8);
    padding: 2rem 0 1.25rem;
    margin-top: 0;
}
.box-text-faa024a__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 1.25rem; }
.box-text-faa024a__col h3 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.box-text-faa024a__col p { font-size: 0.9rem; margin-bottom: 0.4rem; }
.box-text-faa024a__col a { color: rgba(255,255,255,0.7); }
.box-text-faa024a__col a:hover { color: #fff; }
.box-text-faa024a__col ul { list-style: none; padding: 0; }
.box-text-faa024a__col ul li { margin-bottom: 0.35rem; }
.box-text-faa024a__col nav ul { list-style: none; padding: 0; }
.box-text-faa024a__col nav ul li { margin-bottom: 0.35rem; }
.box-text-faa024a__col nav a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.box-text-faa024a__col nav a:hover { color: #fff; }
.box-text-faa024a__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; }
.box-text-faa024a__social { display: flex; gap: 0.75rem; }
.box-text-faa024a__social a { color: rgba(255,255,255,0.7); }
.box-text-faa024a__social a:hover { color: #fff; }

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

/* Footer: custom HTML */
.box-text-faa024a__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: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
}
.btn:hover { background: var(--brand-color); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-primary {
    background: var(--brand-color);
    color: #fff;
    border-color: var(--brand-color);
}
.btn-primary:hover { background: var(--accent-color); border-color: var(--accent-color); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-outline {
    background: transparent;
    color: var(--brand-color);
    border: 2px solid var(--brand-color);
}
.btn-outline:hover { background: var(--brand-color); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

/* === Section modifier utility classes === */
.mod--grad { background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-alt) 100%) !important; }
.bg--gradient { background: var(--brand-light) !important; }
/* Ensure text contrast on potentially dark primary-light (low-saturation palettes) */
.bg--gradient p, .bg--gradient li, .bg--gradient span { color: var(--text-main); }
.bg--gradient .block-subtitle { color: var(--text-muted); }
.layer--accent { background: rgba(255,255,255,0.7) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.alt--fade {
    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-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--fade h2, .alt--fade h3 { color: #fff; }
.alt--fade p, .alt--fade li, .alt--fade span { color: rgba(255,255,255,0.9); }
.alt--fade a { color: var(--accent-color); }
.alt--fade .block-subtitle { color: rgba(255,255,255,0.7); }

/* === Card modifier utility classes === */
.item--shadow { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.box--chevron { 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); }
.tile--shadow { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.tile--shadow:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.tile--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; }

    .el-b3ea5 .pg-outer-2533 { font-size: 0.8rem; flex-wrap: wrap; justify-content: center; text-align: center; }

    .wrp-strip-1965 .pg-outer-2533 { flex-wrap: wrap; }
    .wrp-strip-1965__nav { display: none; }
    .wrp-strip-1965__burger { display: block; }
    .wrp-strip-1965__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);
    }
    .wrp-strip-1965__nav--open a { padding: 8px 0; display: block; font-size: 1rem; }
    .wrp-strip-1965__nav .sub-menu { position: static !important; box-shadow: none !important; padding-left: 1rem; background: transparent !important; border: none !important; }
    .wrp-strip-1965__nav .sub-menu a { font-size: 0.9rem; opacity: 0.85; }
    .wrp-strip-1965__nav--dropdown .sub-menu { display: block !important; }
    .wrp-strip-1965__more-menu .sub-menu { display: block !important; }
    .wrp-strip-1965--white .wrp-strip-1965__nav--open { background: var(--bg-main); border-bottom: 1px solid var(--border-color); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .wrp-strip-1965--white .wrp-strip-1965__nav--open a { color: var(--text-main); }
    .wrp-strip-1965__actions { width: 100%; justify-content: space-between; margin-top: 0.5rem; }
    .wrp-strip-1965__sec-links { justify-content: flex-start; font-size: 0.85rem; }

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

    .wp-dd1467a--bar .wp-dd1467a__bar { flex-wrap: wrap; }
    .wp-dd1467a__grid { gap: 1.25rem; }
    .wp-dd1467a__number { font-size: 1.75rem; }

    .wrp-view-21a6c84__grid { grid-template-columns: 1fr !important; }
    .wrp-view-21a6c84--numbered .wrp-view-21a6c84__grid { grid-template-columns: 1fr !important; }

    .mod-strip-cb5f3f__grid { grid-template-columns: 1fr !important; }
    .mod-strip-cb5f3f__row { grid-template-columns: 1fr !important; gap: 0.75rem; }
    .mod-strip-cb5f3f__list-item { flex-direction: column; text-align: center; }

    .wrp-link-7c489__grid { grid-template-columns: 1fr !important; }

    .box-cell-0728a__split-grid { grid-template-columns: 1fr !important; }

    .cmp-cta-e967557__grid { grid-template-columns: 1fr !important; }
    .cmp-cta-e967557__list-item { flex-direction: column; gap: 0.5rem; }
    .cmp-cta-e967557__inline-grid { flex-direction: column; }

    .bl-rail-48addd3__grid { grid-template-columns: 1fr 1fr !important; }
    .bl-rail-48addd3__item:not(:last-child)::after { display: none; }

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

    .sec-hub-5468__grid { grid-template-columns: 1fr 1fr !important; }

    .mn-75f1e6e__grid { grid-template-columns: 1fr !important; }

    .hd-flow-2db82a__faq-grid { grid-template-columns: 1fr !important; }

    .lay-group-a12981c__grid { grid-template-columns: 1fr 1fr !important; }
    .lay-group-a12981c--list .lay-group-a12981c__card { flex-direction: column; text-align: center; }
    .lay-group-a12981c--list .lay-group-a12981c__photo { width: 100%; }
    .itm-block-e5071e__form { flex-direction: column; }
    .mn-wrap-1e2c__grid { grid-template-columns: 1fr 1fr !important; }
    .lay-top-46caf3__grid { grid-template-columns: 1fr !important; }
    .lay-top-46caf3__table { font-size: 0.85rem; overflow-x: auto; display: block; }
    .bl-body-00e067__grid { grid-template-columns: 1fr !important; }
    .bl-body-00e067--case .bl-body-00e067__item { grid-template-columns: 1fr !important; }
    .wp-card-b8389c__item img { max-height: 30px; }

    .box-text-faa024a__grid { grid-template-columns: 1fr !important; }
    .box-text-faa024a__bottom { flex-direction: column; text-align: center; }

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

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

    .bl-rail-48addd3__grid { grid-template-columns: 1fr !important; }
    .sec-hub-5468__grid { grid-template-columns: 1fr !important; }

    .wp-dd1467a__grid { flex-direction: column; align-items: center; }
    .wp-dd1467a--bar .wp-dd1467a__bar { flex-direction: column; }
    .wp-dd1467a--bar .wp-dd1467a__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .wp-dd1467a--bar .wp-dd1467a__item:last-child { border-bottom: none; }

    .pg-grid-98860__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 */
.st-group-e29b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}
@media (max-width: 600px) {
    .st-group-e29b { grid-template-columns: 1fr !important; }
}

/* Content utility: card */
.ui-form-62cb7f {
    padding: 1.75rem;
    border-radius: 0.5rem;
    background: var(--card-bg);
    
    border: 1px solid var(--border-color);
    transition: all 0.25s ease;
}
.ui-form-62cb7f h3,
.ui-form-62cb7f h4 { margin: 0 0 0.5rem; }
.ui-form-62cb7f p:last-child { margin-bottom: 0; }
.ui-form-62cb7f:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }

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

/* Content utility: highlight */
.lay-aside-d5b6 {
    padding: 2rem;
    background: var(--brand-light);
    border-left: 5px solid var(--brand-color);
    border-radius: 0 0.5rem 0.5rem 0;
    margin: 1.5rem 0;
}
.lay-aside-d5b6 p:last-child { margin-bottom: 0; }

/* Content: catalog details/accordion */
details { margin-bottom: 0.75rem; border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; }
details summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    background: var(--card-bg);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
details summary::after { content: '+'; font-size: 1.25rem; color: var(--text-muted); }
details[open] summary::after { content: '−'; }
details summary::-webkit-details-marker { display: none; }
details > p, details > div { padding: 0.75rem 1.25rem; }

/* Content: catalog table */
.page-content table, .blk-group-f6a508 table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}
.page-content th, .blk-group-f6a508 th {
    background: var(--brand-color);
    color: #fff;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
}
.page-content td, .blk-group-f6a508 td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}
.page-content tr:hover td, .blk-group-f6a508 tr:hover td { background: var(--bg-alt); }