/*
Theme Name: zenflow-yoga
Description: Lightweight multipurpose theme
Version: 5.6
*/

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

:root {
    --color-primary: hsl(165, 60%, 36%);
    --color-primary-dark: hsl(165, 60%, 21%);
    --color-primary-light: hsl(165, 40%, 85%);
    --color-accent: hsl(195, 60%, 46%);
    --color-accent-hover: hsl(195, 60%, 41%);
    --color-bg: #0f172a;
    --color-bg-alt: #1e293b;
    --color-text: #e2e8f0;
    --color-text-light: #94a3b8;
    --color-border: rgba(255,255,255,0.1);
    --color-card: #1e293b;
    --font-main: 'Outfit', 'Segoe UI', sans-serif;
    --font-head: '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 */
    --clr-main: var(--color-primary);
    --clr-main-dark: var(--color-primary-dark);
    --clr-main-light: var(--color-primary-light);
    --clr-accent: var(--color-accent);
    --clr-accent-hover: var(--color-accent-hover);
    --clr-surface: var(--color-bg);
    --clr-surface-alt: var(--color-bg-alt);
    --clr-body: var(--color-text);
    --clr-body-light: var(--color-text-light);
    --clr-border: var(--color-border);
    --clr-card: var(--color-card);
    --type-body: var(--font-main);
    --type-heading: var(--font-head);
    --brand-color: var(--color-primary);
    --brand-dark: var(--color-primary-dark);
    --brand-light: var(--color-primary-light);
    --accent-color: var(--color-accent);
    --accent-hover: var(--color-accent-hover);
    --bg-main: var(--color-bg);
    --bg-alt: var(--color-bg-alt);
    --text-main: var(--color-text);
    --text-muted: var(--color-text-light);
    --border-color: var(--color-border);
    --card-bg: var(--color-card);
    --ff-body: var(--font-main);
    --ff-heading: var(--font-head);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    text-wrap: balance;
}
h1 { font-size: clamp(2.04rem, 4.1vw + 0.82rem, 3.83rem); }
h2 { font-size: clamp(1.44rem, 2.9vw + 0.58rem, 2.64rem); }
h3 { font-size: clamp(1.21rem, 1.6vw + 0.48rem, 1.58rem); }
h4 { font-size: clamp(1.02rem, 1.2vw + 0.41rem, 1.28rem); }
h5 { font-size: clamp(0.93rem, 1.0vw + 0.37rem, 1.08rem); }
h6 { font-size: clamp(0.85rem, 0.8vw + 0.34rem, 1.00rem); }

p { margin-bottom: 1rem; }

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

/* === Layout === */
.pg-card-72da18 {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* === Section wrapper === */
.wrp-block-cdefb0f {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.wrp-block-cdefb0f > .pg-card-72da18 > h2 { text-align: center; margin-bottom: 0.5rem; }
.wrp-block-cdefb0f > .pg-card-72da18 > .sec-text { 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 === */
.sec-text {
    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 === */
.wp-block-8237 {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 6px 0;
}
.wp-block-8237 .pg-card-72da18 { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.wp-block-8237 a { color: rgba(255,255,255,0.85); }
.wp-block-8237 a:hover { color: #fff; }

/* === Header === */
.ui-hero-0a56c0 {
    background: var(--color-primary-dark);
    color: #fff;
    padding: 0.4rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
}
.ui-hero-0a56c0 .pg-card-72da18 { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.ui-hero-0a56c0__brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.ui-hero-0a56c0__logo { max-height: 36px; width: auto; }
.ui-hero-0a56c0__brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: #fff; }
.ui-hero-0a56c0__row-brand .ui-hero-0a56c0__brand-name { color: var(--color-text); }
.ui-hero-0a56c0__nav { display: flex; gap: 0; list-style: none; align-items: center; }
.ui-hero-0a56c0__nav li { display: flex; align-items: center; list-style: none; }
.ui-hero-0a56c0__nav a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.85rem; white-space: nowrap; }
.ui-hero-0a56c0__nav a:hover { color: #fff; }
.ui-hero-0a56c0__nav a.current-menu-item { opacity: 1; color: #fff; }

.ui-hero-0a56c0__nav li + li::before { content: '|'; margin: 0 0.6rem; opacity: 0.4; }

.ui-hero-0a56c0__actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.ui-hero-0a56c0__phone a { color: #fff; font-weight: 600; font-size: 1.05rem; white-space: nowrap; }
.ui-hero-0a56c0__phone a:hover { color: var(--color-accent); }
.ui-hero-0a56c0__cta {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-accent);
    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);
}
.ui-hero-0a56c0__cta:hover { background: var(--color-accent-hover); color: #fff; transform: translateY(-1px); }
.ui-hero-0a56c0__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) === */
.ui-hero-0a56c0--white { background: var(--color-bg); color: var(--color-text); border-bottom: 1px solid var(--color-border); box-shadow: none; }
.ui-hero-0a56c0--white .ui-hero-0a56c0__brand-name { color: var(--color-text); }
.ui-hero-0a56c0--white .ui-hero-0a56c0__nav a { color: var(--color-text); opacity: 0.75; }
.ui-hero-0a56c0--white .ui-hero-0a56c0__nav a:hover { color: var(--color-primary); opacity: 1; }
.ui-hero-0a56c0--white .ui-hero-0a56c0__phone a { color: var(--color-text); }
.ui-hero-0a56c0--white .ui-hero-0a56c0__burger { color: var(--color-text); }

/* === Primary nav submenu (dropdown navMode) === */
.ui-hero-0a56c0__nav li { position: relative; }
.ui-hero-0a56c0__nav .sub-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 200px; background: var(--color-bg, #fff); border: 1px solid var(--color-border, #e5e5e5); box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-radius: 4px; padding: 0.5rem 0; z-index: 100; list-style: none; }
.ui-hero-0a56c0__nav li:hover > .sub-menu { display: block; }
.ui-hero-0a56c0__nav .sub-menu li { max-width: none; }
.ui-hero-0a56c0__nav .sub-menu a { display: block; padding: 0.4rem 1rem; color: var(--color-text, #333); font-size: 0.88rem; white-space: nowrap; }
.ui-hero-0a56c0__nav .sub-menu a:hover { background: var(--color-bg-alt, #f5f5f5); color: var(--color-primary); }

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


/* === Hero === */
.st-0bad {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    padding: 3rem 0 2.5rem; min-height: 70vh; display: flex; align-items: center;
    background-size: cover;
    background-position: center;
}
.st-0bad > .pg-card-72da18 { width: 100%; }
.st-0bad {
    background: radial-gradient(ellipse at center, var(--color-primary) 0%, var(--color-primary-dark) 80%) !important;
}

.st-0bad--split > .pg-card-72da18 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.st-0bad--split .st-0bad__buttons { justify-content: flex-start; }

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

/* === Hero light variant (portal / hh.ru style) === */
.st-0bad--light { background: var(--color-bg); color: var(--color-text); }
.st-0bad--light .st-0bad__title { color: var(--color-text); }
.st-0bad--light .st-0bad__eyebrow { color: var(--color-primary); opacity: 1; }
.st-0bad--light .st-0bad__subtitle { opacity: 1; }
.st-0bad--light .st-0bad__subtitle p { color: var(--color-text-light); }
.st-0bad--light .st-0bad__btn--secondary { border-color: var(--color-border); color: var(--color-text); }
.st-0bad--light .st-0bad__btn--secondary:hover { border-color: var(--color-primary); color: var(--color-primary); background: transparent; }

/* === Hero: stats-row variant === */
.st-0bad__stats-row { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); }
.st-0bad__stat { text-align: center; }
.st-0bad__stat-value { display: block; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.2; }
.st-0bad__stat-label { font-size: 0.85rem; opacity: 0.75; display: block; margin-top: 0.25rem; }
.st-0bad--light .st-0bad__stats-row { border-top-color: var(--color-border); }
.st-0bad--light .st-0bad__stat-value { color: var(--color-primary); }
.st-0bad--light .st-0bad__stat-label { color: var(--color-text-light); opacity: 1; }

/* === Hero: feature-cards variant === */
.st-0bad__features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; text-align: center; }
.st-0bad__feature-card { background: rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.5rem 1rem; transition: transform var(--transition), box-shadow var(--transition); }
.st-0bad__feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.st-0bad__feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.st-0bad__feature-card h3 { font-size: 1rem; margin: 0 0 0.5rem; color: #fff; }
.st-0bad__feature-card p { font-size: 0.85rem; opacity: 0.8; margin: 0; line-height: 1.5; }
.st-0bad--light .st-0bad__feature-card { background: var(--color-card); border: 1px solid var(--color-border); }
.st-0bad--light .st-0bad__feature-card h3 { color: var(--color-text); }
.st-0bad--light .st-0bad__feature-card p { color: var(--color-text-light); opacity: 1; }

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

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

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

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

/* === Hero: badges-row variant === */
.st-0bad__badges-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.st-0bad__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 10px 18px; background: rgba(255,255,255,0.12); border-radius: 40px; font-size: 0.9rem; font-weight: 500; transition: background var(--transition); }
.st-0bad__badge:hover { background: rgba(255,255,255,0.2); }
.st-0bad__badge-icon { font-size: 1.2rem; }
.st-0bad--light .st-0bad__badge { background: var(--color-card); border: 1px solid var(--color-border); color: var(--color-text); }
.st-0bad--light .st-0bad__badge:hover { border-color: var(--color-primary); }

/* === Hero: saas-metrics variant === */
.st-0bad--saas-metrics > .pg-card-72da18 { text-align: left; }
.st-0bad__metrics-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.st-0bad__metrics-text .st-0bad__buttons { justify-content: flex-start; }
.st-0bad__metrics-grid { display: grid; gap: 1rem; }
.st-0bad__metric-card {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius); padding: 1.25rem;
}
.st-0bad__metric-card h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.st-0bad__metric-card p { margin: 0; font-size: 0.9rem; opacity: 0.85; }
.st-0bad__metric-icon {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 0.75rem;
}
.st-0bad__metric-icon--0 { background: hsla(165,60%,36%,0.12); }
.st-0bad__metric-icon--1 { background: hsla(195,60%,50%,0.12); }
.st-0bad__metric-icon--2 { background: hsla(165,60%,85%,0.15); }
.st-0bad--light .st-0bad__metric-card { background: var(--color-card); border-color: var(--color-border); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.st-0bad--light .st-0bad__metric-card h3 { color: var(--color-text); }
.st-0bad--light .st-0bad__metric-card p { color: var(--color-text-light); }

/* === Stats === */
.lay-outer-7de3c2 { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.lay-outer-7de3c2 > .pg-card-72da18 > h2 { text-align: center; margin-bottom: 1.5rem; }
.lay-outer-7de3c2__grid { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; text-align: center; }
.lay-outer-7de3c2__item { min-width: 120px; }
.lay-outer-7de3c2__number { font-size: 2.25rem; font-weight: 700; font-family: var(--font-head); color: var(--color-primary); line-height: 1.2; }
.lay-outer-7de3c2__label { font-size: 0.9rem; color: var(--color-text-light); margin-top: 0.2rem; }

/* Stats variant: cards */
.lay-outer-7de3c2--cards .lay-outer-7de3c2__grid { gap: 1.25rem; }
.lay-outer-7de3c2--cards .lay-outer-7de3c2__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 */
.lay-outer-7de3c2--bar { padding: 0; }
.lay-outer-7de3c2__bar {
    display: flex;
    background: var(--color-primary-dark);
    color: #fff;
    padding: 1.25rem 0;
}
.lay-outer-7de3c2--bar .lay-outer-7de3c2__item { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 1rem; }
.lay-outer-7de3c2--bar .lay-outer-7de3c2__item:last-child { border-right: none; }
.lay-outer-7de3c2--bar .lay-outer-7de3c2__number { color: #fff; font-size: 2rem; }
.lay-outer-7de3c2--bar .lay-outer-7de3c2__label { color: rgba(255,255,255,0.8); }

/* === Body / Block === */
.cp-outer-8538b { padding: clamp(2rem, 4vw, 3.5rem) 0; }

.mod-item-0dfa2c {
    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);
}
.mod-item-0dfa2c:hover { box-shadow: var(--shadow-hover); border-color: var(--color-primary-light); transform: translateY(-2px); }
.mod-item-0dfa2c__icon { margin-bottom: 0.75rem; }
.mod-item-0dfa2c__icon img { width: 48px; height: 48px; }

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

/* Adv variant: list */
.crd-body-4bee--list .crd-body-4bee__grid { grid-template-columns: 1fr; gap: 1rem; }
.crd-body-4bee--list .crd-body-4bee__item { display: flex; gap: 1.25rem; text-align: left; align-items: flex-start; }
.crd-body-4bee--list .crd-body-4bee__icon { flex-shrink: 0; }
.crd-body-4bee--list .crd-body-4bee__text p { margin-bottom: 0; }

/* Adv variant: numbered */
.crd-body-4bee--numbered .crd-body-4bee__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.crd-body-4bee--numbered .crd-body-4bee__item { display: flex; gap: 1rem; text-align: left; padding: 1.25rem; }
.crd-body-4bee__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);
}
.crd-body-4bee--numbered .crd-body-4bee__text p { margin-bottom: 0; }

/* Adv variant: bordered */
.crd-body-4bee--bordered .crd-body-4bee__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;
}
.crd-body-4bee--bordered .crd-body-4bee__item:hover { border-left-color: var(--color-accent); }

/* === Tariffs === */
.blk-wrap-a44d { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.blk-wrap-a44d > .pg-card-72da18 > h2 { text-align: center; margin-bottom: 1.5rem; }
.blk-wrap-a44d__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.blk-wrap-a44d__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-wrap-a44d__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.blk-wrap-a44d__card--highlighted { border-color: var(--color-primary); box-shadow: 0 0 0 2px var(--color-primary-light); position: relative; }
.blk-wrap-a44d__badge {
    position: absolute; top: -12px; right: 16px;
    background: #dcfce7; color: #166534;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    padding: 4px 10px; border-radius: 6px; letter-spacing: 0.5px;
}
.blk-wrap-a44d__price { font-size: 1.75rem; font-weight: 700; color: var(--color-primary); margin: 0.5rem 0; }
.blk-wrap-a44d__features { list-style: none; padding: 0; margin: 0.75rem 0; text-align: left; }
.blk-wrap-a44d__features li { padding: 0.35rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.9rem; }

/* Tariff variant: horizontal */
.blk-wrap-a44d--horizontal .blk-wrap-a44d__grid { display: none; }
.blk-wrap-a44d__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-wrap-a44d__row--hl { border-color: var(--color-primary); background: var(--color-primary-light); }
.blk-wrap-a44d__row-head .blk-wrap-a44d__price { font-size: 1.4rem; margin: 0.25rem 0; }
.blk-wrap-a44d__row-body .blk-wrap-a44d__features { margin: 0; }
.blk-wrap-a44d__row-body .blk-wrap-a44d__features li { display: inline; }
.blk-wrap-a44d__row-body .blk-wrap-a44d__features li::after { content: ' \00B7  '; }
.blk-wrap-a44d__row-body .blk-wrap-a44d__features li:last-child::after { content: ''; }

/* Tariff variant: minimal */
.blk-wrap-a44d--minimal .blk-wrap-a44d__grid { display: none; }
.blk-wrap-a44d__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-wrap-a44d--minimal .blk-wrap-a44d__price { font-size: 1.25rem; white-space: nowrap; margin: 0; }

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

/* Benefits variant: checklist */
.bl-stack-4d949--checklist .bl-stack-4d949__grid { display: none; }
.bl-stack-4d949__list { max-width: 700px; margin: 0 auto; }
.bl-stack-4d949__check-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: flex-start;
}
.bl-stack-4d949__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;
}
.bl-stack-4d949__check-item p { margin: 0.25rem 0 0; color: var(--color-text-light); font-size: 0.9rem; }

/* Benefits variant: icons */
.bl-stack-4d949--icons .bl-stack-4d949__item { flex-direction: column; text-align: center; align-items: center; }
.bl-stack-4d949__icon-big { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }
.bl-stack-4d949__icon-big img { width: 56px; height: 56px; }

/* === FAQ === */
.cp-outer-8538b#faq { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.cp-outer-8538b#faq h2, .cp-outer-8538b > .pg-card-72da18 > h2 { text-align: center; margin-bottom: 1.5rem; }

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

/* FAQ details/accordion */
details.mod-item-0dfa2c { cursor: pointer; }
details.mod-item-0dfa2c summary { font-weight: 600; }
details.mod-item-0dfa2c[open] summary { color: var(--color-primary); }

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

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

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

/* === Products === */
.mn-stack-e6fac { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.mn-stack-e6fac > .pg-card-72da18 > h2 { text-align: center; margin-bottom: 1.5rem; }
.mn-stack-e6fac__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.mn-stack-e6fac__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);
}
.mn-stack-e6fac__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.mn-stack-e6fac__card-body { padding: 1.25rem; }

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

/* Products variant: inline */
.mn-stack-e6fac--inline .mn-stack-e6fac__grid { display: none; }
.mn-stack-e6fac__inline-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.mn-stack-e6fac__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;
}
.mn-stack-e6fac__inline-item:hover { border-color: var(--color-primary); }
.mn-stack-e6fac__inline-item span { font-size: 0.85rem; color: var(--color-text-light); margin-top: 0.25rem; }

/* === Steps === */
.el-core-2a64c { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.el-core-2a64c > .pg-card-72da18 > h2 { text-align: center; margin-bottom: 1.5rem; }
.el-core-2a64c__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; counter-reset: step; position: relative; }
.el-core-2a64c__item { text-align: center; position: relative; }
.el-core-2a64c__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);
}
.el-core-2a64c__item h3 { font-size: 1.1rem; }
.el-core-2a64c__item p { font-size: 0.9rem; color: var(--color-text-light); margin: 0; }
/* Connector line between steps */
.el-core-2a64c__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 */
.ui-hero-0a56c0--transparent ~ main > .st-0bad { padding-top: calc(80px + 2rem); }
/* Transparent header on non-hero pages (single, subpages): push first child down */
.ui-hero-0a56c0--transparent ~ main > .pg-card-72da18:first-child { padding-top: calc(80px + 2rem); }
.ui-hero-0a56c0--transparent ~ main > .cp-outer-8538b:first-child { padding-top: calc(80px + 2rem); }

/* === Testimonials === */
.hd-form-c30c { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.hd-form-c30c > .pg-card-72da18 > h2 { text-align: center; margin-bottom: 1.5rem; }
.hd-form-c30c__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.hd-form-c30c__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-form-c30c__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-form-c30c__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-form-c30c__author { display: flex; gap: 0.75rem; align-items: center; }
.hd-form-c30c__avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.hd-form-c30c__avatar img { width: 100%; height: 100%; object-fit: cover; }
.hd-form-c30c__position { display: block; color: var(--color-text-light); font-size: 0.9rem; }
.hd-form-c30c__cite { display: block; font-style: normal; margin-top: 0.75rem; color: var(--color-text-light); }
.hd-form-c30c__cite strong { color: var(--color-text); }
.hd-form-c30c__meta { color: var(--color-text-light); font-size: 0.9rem; }
.hd-form-c30c__meta strong { color: var(--color-text); }

/* -- test-bubble -- */
.hd-form-c30c--bubble .hd-form-c30c__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-form-c30c--bubble .hd-form-c30c__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-form-c30c--bubble .hd-form-c30c__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-form-c30c--bubble .hd-form-c30c__card { background: none; border: none; box-shadow: none; padding: 0; }
.hd-form-c30c--bubble .hd-form-c30c__quote { padding-left: 0; margin: 0; }
.hd-form-c30c--bubble .hd-form-c30c__quote::before { display: none; }
.hd-form-c30c--bubble .hd-form-c30c__author { padding-left: 0.5rem; }

/* -- test-minimal -- */
.hd-form-c30c--minimal { text-align: center; }
.hd-form-c30c--minimal .pg-card-72da18 > h2 { margin-bottom: 2rem; }
.hd-form-c30c--minimal .hd-form-c30c__list { max-width: 700px; margin: 0 auto; }
.hd-form-c30c--minimal .hd-form-c30c__item { padding: 2rem 0; border-bottom: 1px solid var(--color-border); }
.hd-form-c30c--minimal .hd-form-c30c__item:last-child { border-bottom: none; }
.hd-form-c30c--minimal .hd-form-c30c__quote { font-size: 1.1rem; padding-left: 0; }
.hd-form-c30c--minimal .hd-form-c30c__quote::before { display: none; }

/* -- test-featured -- */
.hd-form-c30c--featured .hd-form-c30c__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.hd-form-c30c--featured .hd-form-c30c__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-form-c30c--featured .hd-form-c30c__card--feat .hd-form-c30c__avatar { width: 72px; height: 72px; }

/* -- test-horizontal -- */
.hd-form-c30c--horizontal .hd-form-c30c__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-form-c30c--horizontal .hd-form-c30c__row:last-child { margin-bottom: 0; }
.hd-form-c30c--horizontal .hd-form-c30c__avatar { width: 64px; height: 64px; border-radius: 8px; flex-shrink: 0; overflow: hidden; }
.hd-form-c30c--horizontal .hd-form-c30c__avatar img { border-radius: 8px; }
.hd-form-c30c--horizontal .hd-form-c30c__content { flex: 1; }
.hd-form-c30c--horizontal .hd-form-c30c__quote { padding-left: 0; margin-bottom: 0.75rem; }
.hd-form-c30c--horizontal .hd-form-c30c__quote::before { display: none; }

/* -- test-accent -- */
.hd-form-c30c--accent .hd-form-c30c__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-form-c30c--accent .hd-form-c30c__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-form-c30c--accent .hd-form-c30c__quote::before { display: none; }
.hd-form-c30c--accent .hd-form-c30c__quote { padding-left: 0; }

/* -- test-large-avatar -- */
.hd-form-c30c--lg-avatar .hd-form-c30c__card { text-align: center; }
.hd-form-c30c--lg-avatar .hd-form-c30c__avatar { width: 80px; height: 80px; margin: 0 auto 1rem; }
.hd-form-c30c--lg-avatar .hd-form-c30c__quote { padding-left: 0; text-align: center; }
.hd-form-c30c--lg-avatar .hd-form-c30c__quote::before { position: static; display: block; text-align: center; margin-bottom: -0.5rem; }
.hd-form-c30c--lg-avatar .hd-form-c30c__meta { margin-top: 0.75rem; }

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

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

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

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

/* === Gallery === */
.itm-list-e8b6d { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.itm-list-e8b6d > .pg-card-72da18 > h2 { text-align: center; margin-bottom: 1.5rem; }
.itm-list-e8b6d__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0.75rem; }
.itm-list-e8b6d__item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.itm-list-e8b6d__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.itm-list-e8b6d__item:hover img { transform: scale(1.05); }
.itm-list-e8b6d__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 0.85rem;
    text-align: center;
}

/* === Blog === */
.itm-grid-8ec0a { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.itm-grid-8ec0a > .pg-card-72da18 > h2 { text-align: center; margin-bottom: 1.5rem; }
.itm-grid-8ec0a__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.itm-grid-8ec0a__thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 0.75rem; }
.itm-grid-8ec0a__thumb img { width: 100%; height: 180px; object-fit: cover; display: block; }
.itm-grid-8ec0a__date { font-size: 0.8rem; color: var(--color-text-light); display: block; margin-bottom: 0.25rem; }
.itm-grid-8ec0a__excerpt { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; }
.itm-grid-8ec0a__more { font-size: 0.85rem; color: var(--color-primary); text-decoration: none; font-weight: 500; }
.itm-grid-8ec0a__more:hover { text-decoration: underline; }
/* Blog: list variant */
.itm-grid-8ec0a--list .itm-grid-8ec0a__item { display: flex; gap: 1.25rem; padding: 1rem 0; border-bottom: 1px solid var(--color-border); }
.itm-grid-8ec0a--list .itm-grid-8ec0a__thumb { flex-shrink: 0; width: 200px; margin: 0; }
.itm-grid-8ec0a--list .itm-grid-8ec0a__thumb img { height: 130px; }
.itm-grid-8ec0a--list .itm-grid-8ec0a__item-body h3 { margin: 0 0 0.25rem; font-size: 1.1rem; }
.itm-grid-8ec0a--list .itm-grid-8ec0a__item-body h3 a { color: var(--color-text); text-decoration: none; }
.itm-grid-8ec0a--list .itm-grid-8ec0a__item-body h3 a:hover { color: var(--color-primary); }
/* Blog: cards variant */
.itm-grid-8ec0a--cards .itm-grid-8ec0a__card { display: flex; flex-direction: column; }
.itm-grid-8ec0a--cards .itm-grid-8ec0a__card-body { flex: 1; display: flex; flex-direction: column; padding: 1rem 0; }
.itm-grid-8ec0a--cards .itm-grid-8ec0a__card-body h3 { margin: 0.25rem 0 0.5rem; font-size: 1.05rem; }
.itm-grid-8ec0a--cards .itm-grid-8ec0a__card-body h3 a { color: var(--color-text); text-decoration: none; }
.itm-grid-8ec0a--cards .itm-grid-8ec0a__card-body h3 a:hover { color: var(--color-primary); }
.itm-grid-8ec0a--cards .itm-grid-8ec0a__more { margin-top: auto; }
/* Blog: minimal variant */
.itm-grid-8ec0a--minimal .itm-grid-8ec0a__list { list-style: none; padding: 0; }
.itm-grid-8ec0a--minimal .itm-grid-8ec0a__list li { padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); display: flex; justify-content: space-between; align-items: center; }
.itm-grid-8ec0a--minimal .itm-grid-8ec0a__list a { color: var(--color-text); text-decoration: none; font-weight: 500; }
.itm-grid-8ec0a--minimal .itm-grid-8ec0a__list a:hover { color: var(--color-primary); }

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

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

/* === Code Showcase (CSS-only tabs) === */.pg-c74b { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.pg-c74b > .pg-card-72da18 > h2 { text-align: center; margin-bottom: 0.5rem; }
.pg-c74b__panel { position: relative; max-width: 720px; margin: 2rem auto 0; }
.pg-c74b__radio { display: none; }
.pg-c74b__tabs { display: flex; gap: 5px; }
.pg-c74b__tab-btn { padding: 10px 25px; font-size: 0.9rem; font-weight: 600; color: var(--color-text-light); background: var(--color-bg-alt); border-radius: 8px 8px 0 0; cursor: pointer; transition: background var(--transition), color var(--transition); }
.pg-c74b__code-block { display: none; background: #1e293b; border-radius: 0 8px 8px 8px; overflow-x: auto; }
.pg-c74b__code-block pre { color: #f1f5f9; padding: 25px; font-size: 0.85rem; line-height: 1.6; margin: 0; font-family: 'SFMono-Regular',Consolas,'Liberation Mono',Menlo,monospace; }
.pg-c74b__code-block code { white-space: pre; }
.pg-c74b__radio:nth-of-type(1):checked ~ .pg-c74b__code-block--curl { display: block; }
.pg-c74b__radio:nth-of-type(2):checked ~ .pg-c74b__code-block--python { display: block; }
.pg-c74b__radio:nth-of-type(3):checked ~ .pg-c74b__code-block--php { display: block; }
.pg-c74b__radio:nth-of-type(1):checked ~ .pg-c74b__tabs .pg-c74b__tab-btn:nth-of-type(1),
.pg-c74b__radio:nth-of-type(2):checked ~ .pg-c74b__tabs .pg-c74b__tab-btn:nth-of-type(2),
.pg-c74b__radio:nth-of-type(3):checked ~ .pg-c74b__tabs .pg-c74b__tab-btn:nth-of-type(3) {
    background: #1e293b; color: #fff;
}
/* === Categories === */
.wp-top-bfdd46 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.wp-top-bfdd46 > .pg-card-72da18 > h2 { text-align: center; margin-bottom: 0.5rem; }
.wp-top-bfdd46__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.wp-top-bfdd46__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; }
.wp-top-bfdd46__card:hover { border-color: var(--color-primary); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.wp-top-bfdd46__item { text-decoration: none; color: var(--color-text); transition: background var(--transition); }
.wp-top-bfdd46__item:hover { background: var(--color-bg-alt); }
.wp-top-bfdd46--icons .wp-top-bfdd46__item { text-decoration: none; color: var(--color-text); transition: color var(--transition); }
.wp-top-bfdd46--icons .wp-top-bfdd46__item:hover { color: var(--color-primary); }

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

/* === Comparison === */
.ft-area-56314e { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.ft-area-56314e > .pg-card-72da18 > h2 { text-align: center; margin-bottom: 0.5rem; }
.ft-area-56314e__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.ft-area-56314e__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); }
.ft-area-56314e__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.ft-area-56314e__card h3 { margin: 0 0 0.75rem; font-size: 1.1rem; }
.ft-area-56314e__rating { color: var(--color-accent); font-size: 1.1rem; margin-bottom: 0.75rem; }
.ft-area-56314e__pros, .ft-area-56314e__cons { font-size: 0.9rem; margin-bottom: 0.5rem; }
.ft-area-56314e__table { width: 100%; border-spacing: 0; border-collapse: collapse; }
.ft-area-56314e__table th { font-weight: 600; color: var(--color-text); background: var(--color-bg-alt); }
.ft-area-56314e__table td, .ft-area-56314e__table th { padding: 0.75rem; border-bottom: 1px solid var(--color-border); text-align: left; }
.ft-area-56314e__table tr:hover td { background: var(--color-bg-alt); }
.ft-area-56314e__wrapper { overflow-x: auto; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid var(--color-border); }
.ft-area-56314e__th-feature, .ft-area-56314e__td-feature { position: sticky; left: 0; z-index: 1; background: var(--color-bg); box-shadow: 2px 0 5px rgba(0,0,0,0.05); }
.ft-area-56314e__th-feature { z-index: 2; background: var(--color-bg-alt); }
.ft-area-56314e__th-hl { background: var(--color-primary-light); border-top: 3px solid var(--color-primary); color: var(--color-primary-dark); }
.ft-area-56314e__td-hl { background: var(--color-primary-light); }
.ft-area-56314e--list .ft-area-56314e__item { padding: 1.25rem 0; border-bottom: 1px solid var(--color-border); }

/* === Projects === */
.crd-form-13b29 { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.crd-form-13b29 > .pg-card-72da18 > h2 { text-align: center; margin-bottom: 0.5rem; }
.crd-form-13b29__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.crd-form-13b29__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); }
.crd-form-13b29__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.crd-form-13b29__card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.crd-form-13b29__card-body { padding: 1.25rem; }
.crd-form-13b29__card-body h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.crd-form-13b29__card-body p { font-size: 0.9rem; color: var(--color-text-light); margin: 0; }
.crd-form-13b29__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; }
.crd-form-13b29--case .crd-form-13b29__grid { grid-template-columns: 1fr; gap: 2rem; }
.crd-form-13b29--case .crd-form-13b29__item { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; }
.crd-form-13b29--case .crd-form-13b29__item img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.crd-form-13b29--minimal .crd-form-13b29__grid { grid-template-columns: 1fr; }
.crd-form-13b29--minimal .crd-form-13b29__item { padding: 1rem 0; border-bottom: 1px solid var(--color-border); }

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

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

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

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

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

/* === Section modifier utility classes === */
.mod--soft { background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%) !important; }
.layer--accent {
    background: var(--color-primary-light) !important;
    --color-text: #1e293b; --color-text-light: #475569; --color-card: #fff;
    --clr-body: #1e293b; --clr-body-light: #475569; --clr-card: #fff;
    --text-main: #1e293b; --text-muted: #475569; --card-bg: #fff;
    --color-border: rgba(0,0,0,0.12); --clr-border: rgba(0,0,0,0.12); --border-color: rgba(0,0,0,0.12);
}
/* Ensure text contrast on light background overrides */
.layer--accent, .layer--accent p, .layer--accent li, .layer--accent span, .layer--accent h2, .layer--accent h3 { color: #1e293b !important; }
.layer--accent .lay-outer-7de3c2__number { color: var(--color-primary-dark) !important; }
.layer--accent .lay-outer-7de3c2__label { color: var(--color-text-light) !important; }
.layer--accent .lay-outer-7de3c2__bar { background: var(--color-primary-dark) !important; color: #fff !important; }
.layer--accent .lay-outer-7de3c2__bar .lay-outer-7de3c2__number, .layer--accent .lay-outer-7de3c2__bar .lay-outer-7de3c2__label { color: #fff !important; }
.alt--fade { background: rgba(255,255,255,0.7) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
/* Glass: ensure child elements with dark bg keep their bg, text on glass stays dark */
.alt--fade > .pg-card-72da18 { color: #1e293b; }
.alt--fade h2, .alt--fade h3, .alt--fade p, .alt--fade span { color: #1e293b; }
.alt--fade .lay-outer-7de3c2__number { color: var(--color-primary-dark); }
.alt--glow {
    background: var(--color-primary-dark) !important;
    color: #fff;
    /* Override ALL CSS var sets so child elements auto-adapt on dark bg */
    /* Set A canonical */
    --color-card: rgba(255,255,255,0.08);
    --color-bg: transparent;
    --color-bg-alt: rgba(255,255,255,0.04);
    --color-text: #fff;
    --color-text-light: rgba(255,255,255,0.75);
    --color-border: rgba(255,255,255,0.15);
    --color-primary: var(--color-accent);
    --color-primary-dark: var(--color-accent);
    --color-primary-light: rgba(255,255,255,0.12);
    /* Set B canonical */
    --clr-card: rgba(255,255,255,0.08);
    --clr-surface: transparent;
    --clr-surface-alt: rgba(255,255,255,0.04);
    --clr-body: #fff;
    --clr-body-light: rgba(255,255,255,0.75);
    --clr-border: rgba(255,255,255,0.15);
    --clr-main: var(--clr-accent);
    --clr-main-dark: var(--clr-accent);
    --clr-main-light: rgba(255,255,255,0.12);
    /* Set C canonical */
    --card-bg: rgba(255,255,255,0.08);
    --bg-main: transparent;
    --bg-alt: rgba(255,255,255,0.04);
    --text-main: #fff;
    --text-muted: rgba(255,255,255,0.75);
    --border-color: rgba(255,255,255,0.15);
    --brand-color: var(--accent-color);
    --brand-dark: var(--accent-color);
    --brand-light: rgba(255,255,255,0.12);
}
.alt--glow h2, .alt--glow h3 { color: #fff; }
.alt--glow p, .alt--glow li, .alt--glow span { color: rgba(255,255,255,0.9); }
.alt--glow a { color: var(--color-accent); }
.alt--glow .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; }
.tile--outline { background: rgba(255,255,255,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); }
.box--raised { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.box--raised: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); }
.tile--plain { position: relative; padding-right: 2.5rem; cursor: pointer; transition: border-color 0.2s; }
.tile--plain::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; }
.tile--plain:hover { border-color: var(--color-primary); }
.tile--plain: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; }

    .wp-block-8237 .pg-card-72da18 { font-size: 0.8rem; flex-wrap: wrap; justify-content: center; text-align: center; }

    .ui-hero-0a56c0 .pg-card-72da18 { flex-wrap: wrap; }
    .ui-hero-0a56c0__nav { display: none; }
    .ui-hero-0a56c0__burger { display: block; }
    .ui-hero-0a56c0__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);
    }
    .ui-hero-0a56c0__nav--open a { padding: 8px 0; display: block; font-size: 1rem; }
    .ui-hero-0a56c0__nav .sub-menu { display: block; position: static; box-shadow: none; border: none; padding: 0 0 0 1rem; min-width: auto; background: transparent; }
    .ui-hero-0a56c0__nav .sub-menu a { color: inherit; font-size: 0.9rem; padding: 6px 0; opacity: 0.85; }
    .ui-hero-0a56c0--white .ui-hero-0a56c0__nav--open { background: var(--color-bg); border-bottom: 1px solid var(--color-border); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .ui-hero-0a56c0--white .ui-hero-0a56c0__nav--open a { color: var(--color-text); }
    .ui-hero-0a56c0__actions { width: 100%; justify-content: space-between; margin-top: 0.5rem; }
    .ui-hero-0a56c0__sec-links { justify-content: flex-start; font-size: 0.85rem; }
    .ui-hero-0a56c0__sec-nav--dropdown .ui-hero-0a56c0__sec-links { display: flex; position: static; box-shadow: none; border: none; flex-wrap: wrap; gap: 0.5rem; background: transparent; padding: 0; }
    .ui-hero-0a56c0__sec-nav--dropdown .ui-hero-0a56c0__sec-toggle { display: none; }
    .ui-hero-0a56c0__sec-nav--pills .ui-hero-0a56c0__sec-links { gap: 0.35rem; }
    .ui-hero-0a56c0__sec-nav--pills .ui-hero-0a56c0__sec-links a { font-size: 0.75rem; padding: 0.2rem 0.6rem; }

    .st-0bad--split > .pg-card-72da18 { grid-template-columns: 1fr !important; }
    .st-0bad--left-aligned > .pg-card-72da18 { grid-template-columns: 1fr !important; }
    .st-0bad__decor { min-height: auto; align-items: center; }
    .st-0bad__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    .st-0bad__buttons { flex-direction: column; }
    .st-0bad__buttons .st-0bad__btn { text-align: center; }
    .st-0bad__stats-row { gap: 1.5rem; }
    .st-0bad__features-grid { grid-template-columns: 1fr 1fr !important; }
    .st-0bad--checklist .st-0bad__check-grid { grid-template-columns: 1fr !important; }
    .st-0bad__badges-row { gap: 0.5rem; }
    .st-0bad__badge { padding: 8px 12px; font-size: 0.8rem; }
    .st-0bad__metrics-layout { grid-template-columns: 1fr; }

    .lay-outer-7de3c2--bar .lay-outer-7de3c2__bar { flex-wrap: wrap; }
    .lay-outer-7de3c2__grid { gap: 1.25rem; }
    .lay-outer-7de3c2__number { font-size: 1.75rem; }

    .crd-body-4bee__grid { grid-template-columns: 1fr !important; }
    .crd-body-4bee--numbered .crd-body-4bee__grid { grid-template-columns: 1fr !important; }

    .blk-wrap-a44d__grid { grid-template-columns: 1fr !important; }
    .blk-wrap-a44d__row { grid-template-columns: 1fr !important; gap: 0.75rem; }
    .blk-wrap-a44d__list-item { flex-direction: column; text-align: center; }

    .bl-stack-4d949__grid { grid-template-columns: 1fr !important; }

    .crd-inner-91504__split-grid { grid-template-columns: 1fr !important; }

    .mn-stack-e6fac__grid { grid-template-columns: 1fr !important; }
    .mn-stack-e6fac__list-item { flex-direction: column; gap: 0.5rem; }
    .mn-stack-e6fac__inline-grid { flex-direction: column; }

    .el-core-2a64c__grid { grid-template-columns: 1fr 1fr !important; }
    .el-core-2a64c__item:not(:last-child)::after { display: none; }

    .hd-form-c30c__grid { grid-template-columns: 1fr !important; }
    .hd-form-c30c--featured .hd-form-c30c__grid { grid-template-columns: 1fr !important; }
    .hd-form-c30c--horizontal .hd-form-c30c__row { flex-direction: column; align-items: center; text-align: center; }
    .hd-form-c30c--horizontal .hd-form-c30c__avatar { margin: 0 auto; }
    .hd-form-c30c--masonry .hd-form-c30c__grid { column-count: 1; }
    .hd-form-c30c--sidebar .hd-form-c30c__layout { grid-template-columns: 1fr !important; }
    .hd-form-c30c--sidebar .hd-form-c30c__side { position: static; }
    .hd-form-c30c--sidebar .hd-form-c30c__side h2 { text-align: center; }
    .hd-form-c30c--sidebar .hd-form-c30c__side::after { margin: 1rem auto; }
    .hd-form-c30c--stack .hd-form-c30c__card { flex-direction: column; text-align: center; }
    .hd-form-c30c--stack .hd-form-c30c__author { text-align: center; }

    .itm-list-e8b6d__grid { grid-template-columns: 1fr 1fr !important; }

    .itm-grid-8ec0a__grid { grid-template-columns: 1fr !important; }

    .cp-outer-8538b__faq-grid { grid-template-columns: 1fr !important; }

    .pg-wrap-f8532__grid { grid-template-columns: 1fr 1fr !important; }
    .pg-wrap-f8532--list .pg-wrap-f8532__card { flex-direction: column; text-align: center; }
    .pg-wrap-f8532--list .pg-wrap-f8532__photo { width: 100%; }
    .itm-3f42__form { flex-direction: column; }
    .wp-top-bfdd46__grid { grid-template-columns: 1fr 1fr !important; }
    .ft-area-56314e__grid { grid-template-columns: 1fr !important; }
    .ft-area-56314e__table { font-size: 0.85rem; overflow-x: auto; display: block; }
    .crd-form-13b29__grid { grid-template-columns: 1fr !important; }
    .crd-form-13b29--case .crd-form-13b29__item { grid-template-columns: 1fr !important; }
    .box-body-b7a716c__item img { max-height: 30px; }

    .cmp-ee4c5c4__grid { grid-template-columns: 1fr !important; }
    .cmp-ee4c5c4__col nav ul { column-count: 1; }
    .cmp-ee4c5c4__bottom { flex-direction: column; text-align: center; }

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

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

    .el-core-2a64c__grid { grid-template-columns: 1fr !important; }
    .itm-list-e8b6d__grid { grid-template-columns: 1fr !important; }

    .lay-outer-7de3c2__grid { flex-direction: column; align-items: center; }
    .lay-outer-7de3c2--bar .lay-outer-7de3c2__bar { flex-direction: column; }
    .lay-outer-7de3c2--bar .lay-outer-7de3c2__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .lay-outer-7de3c2--bar .lay-outer-7de3c2__item:last-child { border-bottom: none; }

    .st-0bad__title { font-size: clamp(1.5rem, 7vw, 2rem); }

    .btn { width: 100%; text-align: center; }
    .btn-primary { width: 100%; text-align: center; }
    .btn-outline { width: 100%; text-align: center; }
}
/* Content utility: grid */
.hd-flow-197d6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
@media (max-width: 600px) {
    .hd-flow-197d6 { grid-template-columns: 1fr !important; }
}

/* Content utility: card */
.wrp-part-deee {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: var(--color-card);
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    border: 1px solid var(--color-border);
    transition: all 0.25s ease;
}
.wrp-part-deee h3,
.wrp-part-deee h4 { margin: 0 0 0.5rem; }
.wrp-part-deee p:last-child { margin-bottom: 0; }
.wrp-part-deee:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

/* Content utility: list */
.bl-area-376e8f {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.bl-area-376e8f li {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.6;
}
.bl-area-376e8f li::before {
    content: '\203A'; color: var(--color-accent); font-weight: 700;
    position: absolute; left: 0;
    font-size: 1em;
}

/* Content utility: highlight */
.blk-4dfbe {
    color: #1e293b;
    padding: 2rem;
    background: var(--color-primary-light);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 1.25rem 1.25rem 0;
    margin: 1.5rem 0;
}
.blk-4dfbe p, .blk-4dfbe b, .blk-4dfbe strong, .blk-4dfbe span { color: #1e293b; }
.blk-4dfbe p:last-child { margin-bottom: 0; }