/* XCOM CSS bundle: main — auto-generated, do not edit */

/* main.css */
/* XCOM theme — core front CSS (forms = separate bundle; payments = single file). */
/* _root.css */
:root {
	--primary: #00aeef;
	--primary-dark: #0090c8;
	--primary-light: #00c4ff;
	--primary-glow: rgba(0, 174, 239, 0.45);
	--primary-soft: rgba(0, 174, 239, 0.08);
	--primary-soft-strong: rgba(0, 174, 239, 0.1);
	--primary-border: rgba(0, 174, 239, 0.2);
	--primary-border-accent: rgba(0, 174, 239, 0.22);
	--primary-shadow: 0 4px 14px rgba(0, 174, 239, 0.1);
	--accent: #ff651b;
	--dark: #0f1419;
	--text: #0f1419;
	--text-muted: #5c6678;
	--text-caption: #8a93a3;
	--text-faint: #9aa3b2;
	--primary-tint: #5ec8ef;
	--bg: #f4f6f9;
	--bg-muted: #eceef1;
	--surface: #ffffff;
	--surface-soft: #fafbfc;
	--surface-hover: #f9fafb;
	--border: rgba(15, 20, 25, 0.08);
	--border-subtle: rgba(15, 20, 25, 0.06);
	--border-hover: rgba(15, 20, 25, 0.14);
	--icon-bg: #f0f2f5;
	--icon-bg-hover: #e8ebf0;
	--icon-color: #8b95a5;
	--icon-color-hover: #5c6678;
	--status-online: #15803d;
	--status-online-dot: #22c55e;
	--status-offline: #b91c1c;
	--status-offline-dot: #ef4444;
	--radius: 12px;
	--radius-lg: 20px;
	--radius-card: 15px;
	--btn-height: 52px;
	--font-heading: "Montserrat", "Segoe UI", "Noto Sans", system-ui, sans-serif;
	--font-body: "Montserrat", "Segoe UI", "Noto Sans", system-ui, sans-serif;
	--container-max: 1180px;
	--container-pad: 20px;
	--section-pad-y: 52px;
	--section-pad-y-mobile: 42px;
	--content-pad-block-start: var(--section-pad-y);
	--content-pad-block-end: var(--section-pad-y);
	--header-top-h: 46px;
	--header-inner-h: 72px;
	--header-h: calc(var(--header-inner-h) + var(--header-top-h));
	--shadow-sm: 0 2px 8px rgba(15, 20, 25, 0.04);
	--shadow-md: 0 8px 32px rgba(15, 20, 25, 0.08);
	--shadow-xs: 0 1px 2px rgba(15, 20, 25, 0.04);
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 15px;
	scroll-behavior: smooth;
	height: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

@supports (scrollbar-gutter: stable) {
	html {
		scrollbar-gutter: stable;
	}
}

body {
	margin: 0;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	min-height: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	color: var(--text);
	background: var(--bg);
	font-family: var(--font-body);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s var(--ease);
}

a:hover {
	color: var(--primary-dark);
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	margin: 0;
	letter-spacing: -0.02em;
}

.container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
	box-sizing: border-box;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}


/* _sections.css */
/* Section surfaces — vertical rhythm: layout/_content.css */
.section--white {
	background: var(--surface);
}

.section--muted {
	background: var(--bg);
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	margin-bottom: 16px;
	background: var(--primary-soft-strong);
	color: var(--primary);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.section-label::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 8px var(--primary-glow);
}

.text-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	line-height: 1.15;
	font-weight: 800;
}

.text-desc {
	font-size: 1.05rem;
	color: var(--text-muted);
	margin: 14px 0 0;
	line-height: 1.65;
}

/* Reveal */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.7s var(--ease),
		transform 0.7s var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border: none;
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	cursor: pointer;
	transition:
		transform 0.2s var(--ease),
		box-shadow 0.2s var(--ease),
		background 0.2s var(--ease),
		border-color 0.2s var(--ease),
		color 0.2s var(--ease);
	text-align: center;
	text-decoration: none;
	box-shadow: var(--shadow-sm);
	box-sizing: border-box;
}

.btn:hover {
	box-shadow: var(--shadow-md);
}

.btn:active {
	transform: translateY(1px);
}

.btn--primary {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: #fff;
	box-shadow: 0 8px 24px var(--primary-glow);
}

.btn--primary:hover {
	color: #fff;
	box-shadow: 0 12px 32px var(--primary-glow);
}

.btn--outline {
	background: transparent;
	border: 1.5px solid var(--border);
	box-shadow: none;
}

.btn--outline:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: var(--surface-hover);
}

.btn--full {
	width: 100%;
}

.btn--lowercase {
	text-transform: lowercase;
}


/* _card.css */
/* Card */
.card {
	background: var(--surface);
	border-radius: var(--radius-card);
	padding: 20px;
	margin-bottom: var(--section-pad-y, 52px);
	border: 1px solid var(--border);
	box-sizing: border-box;
}

.card > *:last-child,
.card-auto-wrap > *:last-child,
.card p:last-child,
.card-auto-wrap p:last-child,
.card-auto-wrap p:last-of-type,
.card-auto-wrap p:only-child,
.card-auto-wrap p:only-of-type,
.page-content .card-auto-wrap p:last-child,
.entry-content .card-auto-wrap p:last-child,
.page-content .card-auto-wrap p:last-of-type,
.entry-content .card-auto-wrap p:last-of-type,
.page-content .card-auto-wrap p:only-child,
.entry-content .card-auto-wrap p:only-child,
.page-content .card-auto-wrap > *:last-child,
.entry-content .card-auto-wrap > *:last-child {
	margin-bottom: 0 !important;
}

.card--compact {
	padding: 20px;
	margin-bottom: 0;
}

.card--center {
	text-align: center;
}

.card--stack {
	display: flex;
	flex-direction: column;
	position: relative;
}

.card--interactive {
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.card--interactive:hover {
	border-color: var(--border-hover);
	box-shadow: var(--shadow-sm);
}

.card--soft,
.xcom-care-block {
	background: var(--surface-soft);
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	box-shadow: var(--shadow-xs);
}

.card__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: auto;
}

.card--featured {
	border: 2px solid var(--primary);
}

.card--featured:hover,
.card--featured.card--interactive:hover {
	border-color: var(--primary);
}

.card--featured::after {
	content: "РЕКОМЕНДУЕМ";
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary);
	color: #fff;
	padding: 2px 12px;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	border-radius: 4px;
}

body.lang-kk .card--featured::after {
	content: "ҰСЫНАМЫЗ";
}

.card-title {
	margin-top: 0;
	margin-bottom: 25px;
	padding-bottom: 5px;
	color: var(--text);
	font-weight: 600;
	font-size: 1.5rem;
	border-bottom: 2px solid var(--primary);
	display: inline-block;
}

@media (max-width: 767px) {
	.card {
		padding: 20px;
	}

	.card--compact {
		padding: 20px;
	}
}

/* Global XCOM Block Component System */
.xcom-block {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	margin: 0;
}

.entry-content > .xcom-block:last-of-type,
.page-content > .xcom-block:last-of-type {
	margin-bottom: 0;
}

.xcom-block-title,
.entry-content .xcom-block-title,
.page-content .xcom-block-title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--text);
}

.xcom-card {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 24px;
	box-sizing: border-box;
	background: var(--surface, #ffffff);
	border: 1px solid var(--border, #e2e8f0);
	border-radius: var(--radius, 12px);
	box-shadow: var(--shadow-sm, 0 1px 3px rgba(15, 23, 42, 0.04));
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.xcom-card--interactive:hover {
	border-color: rgba(0, 174, 239, 0.35);
	box-shadow: var(--shadow-sm, 0 4px 14px rgba(15, 20, 25, 0.06));
}

.xcom-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 20px;
	background: rgba(0, 174, 239, 0.1);
	color: var(--primary, #00aeef);
	font-weight: 700;
	font-size: 0.8125rem;
	line-height: 1.2;
}


/* _feature-list.css */
/* Card / section body content */
.feature-list {
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.7;
}

.feature-list h3,
.feature-list h4,
.feature-list .contentheading {
	margin: 20px 0 10px;
	color: var(--text);
	font-weight: 600;
	font-size: 1.1rem;
}

.feature-list h3,
.feature-list h4 {
	display: flex;
	align-items: center;
	break-after: avoid;
	page-break-after: avoid;
}

.feature-list > *:first-child {
	margin-top: 0;
}

.feature-list p {
	margin: 0 0 15px;
	break-inside: avoid;
}

.feature-list ul,
.feature-list ol {
	list-style: revert;
	padding-left: 1.25em;
	margin: 0 0 20px;
}

.feature-list li {
	margin-bottom: 8px;
	break-inside: avoid;
}

.feature-list li > ul,
.feature-list li > ol {
	margin-top: 8px;
	margin-bottom: 0;
}

.feature-list strong {
	font-weight: 600;
	color: var(--text);
}

.feature-list a {
	font-weight: 500;
}

.feature-list--grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

@media (max-width: 767px) {
	.feature-list--grid {
		grid-template-columns: 1fr;
	}
}


/* _archive-box.css */
/* Muted archive / secondary section */
.archive-box {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	background: var(--bg-muted);
	padding: clamp(16px, 4vw, 30px);
	border-radius: var(--radius);
	margin-top: 40px;
	border: 1px solid var(--border);
	overflow: hidden;
}

.archive-box h3 {
	font-size: 1rem;
	color: var(--text-muted);
	text-transform: uppercase;
	margin: 0 0 5px;
	letter-spacing: 1px;
	overflow-wrap: break-word;
	word-break: break-word;
}

.archive-box p {
	color: var(--text-muted);
	font-size: 0.85rem;
	margin-bottom: 25px;
	overflow-wrap: break-word;
	word-break: break-word;
}

.archive-tariffs-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	/* min(100%, 280px) prevents grid blowout on narrow screens / long i18n text */
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	gap: 15px;
	width: 100%;
	min-width: 0;
}

.archive-tariffs-list li {
	background: var(--surface);
	color: var(--text);
	padding: 20px;
	border-radius: var(--radius);
	font-size: 0.95rem;
	border: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
	transition: box-shadow 0.2s var(--ease);
}

.archive-tariffs-list li:hover {
	box-shadow: var(--shadow-sm);
}

.archive-name {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1 1 auto;
}

.archive-name strong {
	color: var(--text);
	font-weight: 600;
	margin-bottom: 2px;
	overflow-wrap: break-word;
}

.archive-speed {
	color: var(--text-muted);
	font-size: 0.85rem;
}

.archive-price {
	font-weight: 600;
	color: var(--text);
	font-size: 1.05rem;
	flex: 0 1 auto;
	min-width: 0;
	text-align: right;
	overflow-wrap: break-word;
}

@media (max-width: 767px) {
	.archive-box {
		padding: 20px;
	}

	.archive-tariffs-list {
		grid-template-columns: 1fr;
	}

	.archive-tariffs-list li {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.archive-box {
		padding: 20px;
	}

	.archive-tariffs-list li {
		padding: 20px;
		gap: 10px;
	}

	.archive-price {
		font-size: 0.95rem;
	}
}


/* _table.css */
/* Shared tables */
.feature-list table,
.card table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
	font-size: 0.95rem;
}

.feature-list table th,
.feature-list table td,
.card table th,
.card table td {
	padding: 12px;
	border-bottom: 1px solid var(--border);
	text-align: left;
	vertical-align: top;
}

.feature-list table th,
.card table th {
	color: var(--text);
	background: var(--bg);
	font-weight: 700;
}


/* _tabs.css */
/* Tabs — underline style by default (tariffs, FAQ, connect, news, any .tabs) */
.tabs,
.tabs--underline,
.xcom-tariffs-tabs-nav,
.faq-tabs,
.xcom-connect-form__tabs,
.xcom-news-list__filters {
	display: flex;
	justify-content: center;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0 auto var(--section-pad-y, 52px);
	border-bottom: 1px solid var(--border);
	flex-wrap: wrap;
	gap: 16px 28px;
	box-sizing: border-box;
}

.tabs .tabs__btn,
.tabs--underline .tabs__btn,
.xcom-tariffs-tab-btn,
.faq-tabs .tabs__btn,
.xcom-connect-form__tabs .tabs__btn,
.xcom-news-list__filters .tabs__btn {
	flex: 0 1 auto;
	max-width: 100%;
	background: transparent;
	border: none;
	border-radius: 0;
	color: var(--text-muted);
	padding: 14px 8px 16px;
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	letter-spacing: 0.02em;
	white-space: normal;
	overflow-wrap: break-word;
	word-break: normal;
	hyphens: auto;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.tabs .tabs__btn:hover,
.tabs--underline .tabs__btn:hover,
.xcom-tariffs-tab-btn:hover,
.faq-tabs .tabs__btn:hover,
.xcom-connect-form__tabs .tabs__btn:hover,
.xcom-news-list__filters .tabs__btn:hover {
	color: var(--text);
	border-bottom-color: transparent;
}

.tabs .tabs__btn.is-active,
.tabs--underline .tabs__btn.is-active,
.xcom-tariffs-tab-btn.is-active,
.faq-tabs .tabs__btn.is-active,
.xcom-connect-form__tabs .tabs__btn.is-active,
.xcom-news-list__filters .tabs__btn.is-active,
.xcom-news-list__filters .tabs__btn[aria-current="page"] {
	color: var(--primary);
	border-bottom-color: var(--primary);
	font-weight: 700;
}

.tabs .tabs__btn.is-active:hover,
.tabs--underline .tabs__btn.is-active:hover,
.xcom-tariffs-tab-btn.is-active:hover,
.faq-tabs .tabs__btn.is-active:hover,
.xcom-connect-form__tabs .tabs__btn.is-active:hover,
.xcom-news-list__filters .tabs__btn.is-active:hover,
.xcom-news-list__filters .tabs__btn[aria-current="page"]:hover {
	color: var(--primary);
	border-bottom-color: var(--primary);
}

/* Tablet / phone: scrollable horizontal tabs */
@media (max-width: 991px) {
	.tabs,
	.tabs--underline,
	.xcom-tariffs-tabs-nav,
	.faq-tabs,
	.xcom-connect-form__tabs,
	.xcom-news-list__filters {
		flex-wrap: nowrap;
		gap: 8px;
		margin-bottom: var(--section-pad-y, 42px);
		justify-content: center;
		overflow-x: auto;
		overflow-y: hidden;
		touch-action: pan-x;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 2px; /* Prevent box-shadow/border clipping */
		width: 100%;
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}

	.tabs::-webkit-scrollbar,
	.tabs--underline::-webkit-scrollbar,
	.xcom-tariffs-tabs-nav::-webkit-scrollbar,
	.faq-tabs::-webkit-scrollbar,
	.xcom-connect-form__tabs::-webkit-scrollbar,
	.xcom-news-list__filters::-webkit-scrollbar {
		display: none;
	}

	.tabs .tabs__btn,
	.tabs--underline .tabs__btn,
	.xcom-tariffs-tab-btn,
	.faq-tabs .tabs__btn,
	.xcom-connect-form__tabs .tabs__btn,
	.xcom-news-list__filters .tabs__btn {
		flex: 0 0 auto;
		min-width: max-content;
		padding: 10px 12px 12px;
		font-size: 0.875rem;
		letter-spacing: 0.01em;
		line-height: 1.3;
		white-space: nowrap;
	}
}

/* Narrow phones down to 344px */
@media (max-width: 480px) {
	.tabs .tabs__btn,
	.tabs--underline .tabs__btn,
	.xcom-tariffs-tab-btn,
	.faq-tabs .tabs__btn,
	.xcom-connect-form__tabs .tabs__btn,
	.xcom-news-list__filters .tabs__btn {
		padding: 10px 10px 12px;
		font-size: 0.8125rem;
		letter-spacing: 0;
	}
}


/* _tariff-card.css */
/* Tariff cards */
.tariff-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
	gap: 24px;
	margin-bottom: var(--section-pad-y, 52px);
	width: 100%;
	min-width: 0;
}

.card--tariff h3 {
	font-size: 1.25rem;
	color: var(--text);
	margin: 0 0 10px;
	font-weight: 600;
	letter-spacing: -0.5px;
}

.card--tariff .speed {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary);
	line-height: 1;
	margin: 20px 0;
	letter-spacing: -1px;
}

.card--tariff .speed span {
	font-size: 1rem;
	color: var(--text-muted);
	font-weight: 400;
	letter-spacing: normal;
}

.card--tariff .speed-workdays {
	background: var(--surface-hover);
	padding: 12px;
	border-radius: 6px;
	font-size: 0.9rem;
	color: var(--text-muted);
	margin-bottom: 20px;
	border: 1px solid var(--border-subtle);
}

.card--tariff .speed-workdays strong {
	color: var(--text);
	font-weight: 600;
}

.card--tariff .speed-workdays small {
	display: block;
	color: var(--text-faint);
	margin-top: 4px;
	font-size: 0.8rem;
}

.card--tariff .price {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 30px;
}

.card--tariff .price span {
	font-size: 0.95rem;
	color: var(--text-muted);
	font-weight: 400;
}

.card--tariff .card--tariff__hit,
.entry-content .card--tariff .card--tariff__hit,
.page-content .card--tariff .card--tariff__hit,
.editor-styles-wrapper .card--tariff .card--tariff__hit {
	display: block;
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
	color: inherit !important;
	font-weight: inherit !important;
	cursor: pointer;
}

.card--tariff .card--tariff__hit:hover,
.card--tariff .card--tariff__hit:focus,
.card--tariff .card--tariff__hit:active,
.entry-content .card--tariff .card--tariff__hit:hover,
.page-content .card--tariff .card--tariff__hit:hover,
.editor-styles-wrapper .card--tariff .card--tariff__hit:hover {
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
	color: inherit !important;
}

.card--tariff .card--tariff__hit:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 3px;
	border-radius: 4px;
}


/* _icon-button.css */
/* Icon buttons */
.icon-btn,
.inst__btn,
.tg__btn,
.mail__btn,
.phone__drop__social a,
.xcom-care-link__icon,
.xcom-care-chip__icon,
.xcom-care-icon,
.footer__soc-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: none;
	border-radius: 10px;
	background: var(--icon-bg);
	color: var(--icon-color);
	transition:
		color 0.2s var(--ease),
		background 0.2s var(--ease),
		transform 0.2s var(--ease);
}

.icon-btn--sm,
.inst__btn,
.tg__btn,
.mail__btn,
.phone__drop__social a {
	width: 28px;
	height: 28px;
	border-radius: 8px;
}

.icon-btn--md,
.xcom-care-link__icon,
.footer__soc-link {
	width: 40px;
	height: 40px;
}

.xcom-care-link__icon {
	width: 34px;
	height: 34px;
}

.xcom-care-icon {
	width: 34px;
	height: 34px;
}

.icon-btn--chip,
.xcom-care-chip__icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
}

.icon-btn:hover,
.inst__btn:hover,
.tg__btn:hover,
.mail__btn:hover,
.phone__drop__social a:hover,
.xcom-care-link:hover .xcom-care-link__icon,
.xcom-care-chip:hover .xcom-care-chip__icon,
.xcom-wa-dropdown:hover .xcom-care-chip__icon,
.xcom-wa-dropdown:focus-within .xcom-care-chip__icon,
.xcom-care-icon:hover,
.footer__soc-link:hover {
	color: var(--icon-color-hover);
	background: var(--icon-bg-hover);
}


button.footer__soc-link,
button.icon-btn {
	appearance: none;
	font: inherit;
	padding: 0;
	cursor: pointer;
}

.inst__btn svg,
.tg__btn svg,
.mail__btn svg,
.phone__drop__social a svg,
.inst__btn .bi,
.tg__btn .bi,
.mail__btn .bi,
.phone__drop__social a .bi {
	width: 14px;
	height: 14px;
	font-size: 14px;
	line-height: 1;
}

.xcom-care-link__icon svg,
.xcom-care-chip__icon svg,
.xcom-care-icon svg,
.footer__soc-link svg,
.xcom-care-link__icon .bi,
.xcom-care-chip__icon .bi,
.xcom-care-icon .bi,
.footer__soc-link .bi {
	width: 18px;
	height: 18px;
	font-size: 18px;
	line-height: 1;
}


/* _copy-btn.css */
/* Shared Copy Button component (.xcom-btn-copy, .btn-copy, .btn--copy) */
.xcom-btn-copy,
.btn-copy,
.btn--copy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 0;
	padding: 6px 12px;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--text-muted, #64748b);
	background: var(--surface, #ffffff);
	border: 1px solid var(--border, #e2e8f0);
	border-radius: var(--radius-sm, 8px);
	cursor: pointer;
	text-transform: none;
	transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.1s ease;
	user-select: none;
	-webkit-user-select: none;
}

.xcom-btn-copy svg,
.btn-copy svg,
.btn--copy svg {
	flex-shrink: 0;
	width: 13px;
	height: 13px;
	stroke-width: 2px;
	transition: stroke 0.18s ease, transform 0.18s ease;
}

.xcom-btn-copy:hover:not(:disabled),
.btn-copy:hover:not(:disabled),
.btn--copy:hover:not(:disabled) {
	color: var(--primary, #00aeef);
	background: var(--primary-soft, rgba(0, 174, 239, 0.08));
	border-color: var(--primary-border, rgba(0, 174, 239, 0.25));
	box-shadow: 0 2px 6px rgba(0, 174, 239, 0.12);
}

.xcom-btn-copy:active:not(:disabled),
.btn-copy:active:not(:disabled),
.btn--copy:active:not(:disabled) {
	transform: scale(0.97);
}

.xcom-btn-copy.is-copied,
.btn-copy.is-copied,
.btn--copy.is-copied {
	color: var(--primary, #00aeef);
	background: var(--primary-soft, rgba(0, 174, 239, 0.08));
	border-color: var(--primary-border, rgba(0, 174, 239, 0.35));
}

.xcom-btn-copy.is-failed,
.btn-copy.is-failed,
.btn--copy.is-failed {
	color: #dc2626;
	background: rgba(239, 68, 68, 0.1);
	border-color: rgba(239, 68, 68, 0.3);
}

.xcom-btn-copy:disabled,
.btn-copy:disabled,
.btn--copy:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}


/* _toast.css */
/* Shared front toast — top-right, site tokens. JS: window.xcomToast.show() */

#xcom-toast-container {
	position: fixed;
	top: calc(16px + var(--wp-admin-bar-offset, 0px) + env(safe-area-inset-top, 0px));
	right: max(16px, env(safe-area-inset-right, 0px));
	z-index: 10050;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	width: min(calc(100vw - 32px), 380px);
	pointer-events: none;
}

.xcom-toast {
	pointer-events: auto;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	padding: 14px 12px 14px 14px;
	background: var(--surface, #ffffff);
	color: var(--text, #0f1419);
	border: 1px solid var(--border, rgba(15, 20, 25, 0.08));
	border-left-width: 3px;
	border-left-color: var(--primary, #00aeef);
	border-radius: var(--radius, 12px);
	box-shadow: var(--shadow-md, 0 8px 32px rgba(15, 20, 25, 0.08));
	font-family: var(--font-body, "Montserrat", system-ui, sans-serif);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.01em;
	opacity: 0;
	transform: translateX(18px);
	transition:
		opacity 0.28s var(--ease, cubic-bezier(0.4, 0, 0.2, 1)),
		transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.xcom-toast.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.xcom-toast.is-hiding {
	opacity: 0;
	transform: translateX(14px);
}

.xcom-toast--success {
	border-left-color: var(--primary, #00aeef);
}

.xcom-toast--info,
.xcom-toast--loading {
	border-left-color: var(--primary, #00aeef);
}

.xcom-toast--error {
	border-left-color: var(--status-offline-dot, #ef4444);
}

.xcom-toast__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: var(--primary-soft, rgba(0, 174, 239, 0.08));
	color: var(--primary, #00aeef);
}

.xcom-toast--error .xcom-toast__icon {
	background: rgba(239, 68, 68, 0.1);
	color: var(--status-offline, #b91c1c);
}

.xcom-toast__icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.xcom-toast--loading .xcom-toast__icon svg {
	animation: xcom-toast-spin 0.8s linear infinite;
}

.xcom-toast__text {
	flex: 1;
	min-width: 0;
	padding-top: 6px;
	word-break: break-word;
}

.xcom-toast__close {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin: -2px -4px 0 0;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--text-caption, #8a93a3);
	cursor: pointer;
	transition: color 0.15s var(--ease, ease), background-color 0.15s var(--ease, ease);
}

.xcom-toast__close:hover,
.xcom-toast__close:focus-visible {
	color: var(--text, #0f1419);
	background: var(--icon-bg, #f0f2f5);
	outline: none;
}

.xcom-toast__close svg {
	width: 14px;
	height: 14px;
	display: block;
}

@keyframes xcom-toast-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.xcom-toast {
		transform: none;
		transition: opacity 0.15s linear;
	}

	.xcom-toast--loading .xcom-toast__icon svg {
		animation: none;
	}
}


/* _status.css */
/* Online / offline status */
.status-dot,
.xcom-care-chip__dot,
.xcom-wa-dropdown__item-dot,
.wa__dot,
.footer__soc-status {
	flex-shrink: 0;
	border-radius: 50%;
}

.status-dot--online,
.xcom-care-chip__dot--online,
.xcom-wa-dropdown__item-dot--online,
.wa__status-link--online .wa__dot,
.footer__soc-status--online {
	background: var(--status-online-dot);
}

.status-dot--offline,
.xcom-care-chip__dot--offline,
.xcom-wa-dropdown__item-dot--offline,
.wa__status-link--offline .wa__dot,
.footer__soc-status--offline {
	background: var(--status-offline-dot);
}

.status-text--online,
.xcom-care-chip__status--online,
.xcom-wa-dropdown__item-state--online,
.wa__status-link-state--online {
	color: var(--status-online);
}

.status-text--offline,
.xcom-care-chip__status--offline,
.xcom-wa-dropdown__item-state--offline,
.wa__status-link-state--offline {
	color: var(--status-offline);
}

.xcom-care-chip__dot,
.wa__dot {
	width: 7px;
	height: 7px;
}

.wa__dot {
	width: 8px;
	height: 8px;
	display: inline-block;
}

.wa__status-link--online .wa__dot {
	box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.wa__status-link--offline .wa__dot {
	box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.xcom-care-chip__dot--online,
.xcom-wa-dropdown__item-dot--online {
	box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.xcom-care-chip__dot--offline,
.xcom-wa-dropdown__item-dot--offline {
	box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
}

.xcom-wa-dropdown__item-dot {
	width: 8px;
	height: 8px;
}

.footer__soc-status {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 9px;
	height: 9px;
	border: 2px solid var(--surface);
	box-shadow: 0 0 0 1px var(--border);
	pointer-events: none;
}


/* _header.css */
/* Global tap highlight fix for mobile */
*,
*::before,
*::after {
	-webkit-tap-highlight-color: transparent;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow:
		0 1px 0 var(--border),
		var(--shadow-sm);
	transition:
		background 0.3s var(--ease),
		box-shadow 0.3s var(--ease),
		backdrop-filter 0.3s;
}

/* WordPress admin bar — offset synced in header.js via --wp-admin-bar-offset */
body.admin-bar {
	--wp-admin-bar-offset: 32px;
}

/* Keep toolbar above fixed header / flash (body is flex). */
#wpadminbar {
	position: fixed !important;
	top: 0 !important;
	left: 0;
	right: 0;
	z-index: 999999 !important;
}

html.admin-bar {
	scroll-padding-top: calc(var(--header-h) + var(--wp-admin-bar-offset));
}

body.admin-bar .header {
	top: var(--wp-admin-bar-offset);
	transition:
		background 0.3s var(--ease),
		box-shadow 0.3s var(--ease),
		backdrop-filter 0.3s,
		top 0.2s var(--ease);
}

body.admin-bar .mobile-menu {
	padding-top: calc(var(--mobile-menu-top, calc(var(--header-h) + var(--wp-admin-bar-offset))) + 24px);
}

body.admin-bar .site-main {
	padding-top: calc(var(--header-h) + 32px);
}

@media screen and (max-width: 782px) {
	body.admin-bar {
		--wp-admin-bar-offset: 46px;
	}

	body.admin-bar .site-main {
		padding-top: calc(var(--header-h) + 46px);
	}
}

.header.header--over-hero:not(.is-scrolled) {
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: none;
}

.header.header--over-hero:not(.is-scrolled) .header__nav a,
.header.header--over-hero:not(.is-scrolled) .header__nav .header__more-toggle {
	color: rgba(255, 255, 255, 0.7);
}

.header.header--over-hero:not(.is-scrolled) .header__nav a:hover,
.header.header--over-hero:not(.is-scrolled) .header__nav .header__more-toggle:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.header.header--over-hero:not(.is-scrolled) .header__burger {
	background: rgba(255, 255, 255, 0.1);
}

.header.header--over-hero:not(.is-scrolled) .header__burger span {
	background: #fff;
}

.header.header--over-hero:not(.is-scrolled) .btn--outline {
	border-color: rgba(255, 255, 255, 0.25);
	color: #fff;
	background: transparent;
	box-shadow: none;
}

.header.header--over-hero:not(.is-scrolled) .btn--outline:hover {
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}

.site-main {
	flex: 1 0 auto;
	padding-top: var(--header-h);
	width: 100%;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: var(--header-inner-h);
}

.header__logo {
	flex-shrink: 0;
}

.header__logo img {
	height: 26px;
	width: auto;
}

.header__nav {
	display: none;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	min-width: 0;
	gap: 4px;
	margin-left: 40px; /* Держит безопасную дистанцию от логотипа */
}

/* Скрываем меню до первого расчёта Priority+ (см. priority-nav.js). */
@media (min-width: 1024px) {
	.header__nav.header__nav--priority-pending {
		visibility: hidden;
	}
}

.header__nav a,
.header__nav .header__more-toggle {
	padding: 10px 16px;
	color: var(--text-muted);
	font-weight: 500;
	font-size: 14px;
	border-radius: 999px;
	white-space: nowrap;
	transition:
		color 0.2s,
		background 0.2s;
}

.header__nav .header__more-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: none;
	background: transparent;
	cursor: pointer;
	font-family: inherit;
	line-height: inherit;
}

.header__nav a:hover,
.header__link:hover,
.header__nav .header__more-toggle:hover {
	color: var(--primary-dark);
	background: rgba(0, 174, 239, 0.08);
}

.header__nav .header__link.is-active,
.header__nav .header__item.is-active > .header__link,
.header__nav .header__item.current-menu-item > .header__link,
.header__nav .header__item.current-menu-ancestor > .header__link,
.header__nav .header__item.current-menu-parent > .header__link,
.header__nav .current-menu-item > a,
.header__nav .current_page_item > a,
.header__nav a[aria-current="page"],
.header__nav .header__item--more.is-active > .header__more-toggle,
.header__nav .header__item--more.current-menu-ancestor > .header__more-toggle,
.header__submenu .is-active > a,
.header__submenu a.is-active,
.header__submenu .current-menu-item > a {
	color: var(--primary);
	background: rgba(0, 174, 239, 0.1);
	font-weight: 600;
}

.header__item {
	position: relative;
	flex-shrink: 0;
}

.header__item--more {
	display: none;
}

.header__item--more.is-visible {
	display: block;
}

.header__more-chevron {
	display: block;
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	opacity: 0.7;
}

.header__submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: max-content;
	max-width: min(320px, calc(100vw - 32px));
	margin: 0;
	padding: 14px 8px 8px;
	list-style: none;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	z-index: 20;
}

/* Visible card below the hover-bridge (padding-top keeps cursor in the item) */
.header__submenu::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
}

.header__submenu > * {
	position: relative;
	z-index: 1;
}

.header__item--has-children:hover > .header__submenu,
.header__item--has-children:focus-within > .header__submenu,
.header__item--has-children.is-open > .header__submenu,
.header__item--more.is-open > .header__submenu {
	display: block;
}

.header__item--more > .header__submenu--more {
	right: 0;
	left: auto;
	min-width: max-content;
	max-width: min(320px, calc(100vw - 32px));
	max-height: min(70vh, 480px);
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 14px 8px 8px;
}

.header__submenu--more > .header__item {
	display: block;
	width: 100%;
}

.header__submenu--more > .header__item > .header__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 13px;
	white-space: normal;
	line-height: 1.4;
}

/* Nested (2nd level) inside «Ещё»: accordion under the parent */
.header__submenu--more > .header__item--has-children > .header__link::after {
	content: "";
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	opacity: 0.55;
	transition: transform 0.2s var(--ease);
}

.header__submenu--more > .header__item--has-children.is-expanded > .header__link::after,
.header__submenu--more > .header__item--has-children:hover > .header__link::after,
.header__submenu--more > .header__item--has-children:focus-within > .header__link::after {
	transform: rotate(-135deg);
	opacity: 0.9;
}

.header__submenu--more > .header__item--has-children > .header__submenu {
	position: static;
	display: none;
	min-width: 0;
	margin: 0 0 4px;
	padding: 0 0 4px 8px;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: transparent;
}

.header__submenu--more > .header__item--has-children > .header__submenu::before {
	display: none;
}

.header__submenu--more > .header__item--has-children:hover > .header__submenu,
.header__submenu--more > .header__item--has-children:focus-within > .header__submenu,
.header__submenu--more > .header__item--has-children.is-expanded > .header__submenu {
	display: block;
}

.header__submenu--more > .header__item--has-children > .header__submenu a {
	padding: 8px 14px;
}

.header__submenu a {
	display: block;
	padding: 10px 14px;
	border-radius: 8px;
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 500;
	white-space: normal;
	line-height: 1.4;
	transition:
		color 0.2s,
		background 0.2s;
}

.header__submenu a:hover {
	color: var(--primary-dark);
	background: rgba(0, 174, 239, 0.08);
}

.header__actions {
	display: none;
	align-items: center;
	flex-shrink: 0;
	gap: 10px;
}

.header__burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: none;
	background: rgba(15, 20, 25, 0.06);
	border-radius: 12px;
	cursor: pointer;
}

/* Burger must sit above the top pay bar so taps are not stolen by «Оплатить». */
@media (max-width: 1023px) {
	.header__inner {
		position: relative;
		z-index: 15;
	}

	.header__burger {
		position: relative;
		z-index: 16;
		isolation: isolate;
		-webkit-tap-highlight-color: transparent;
		touch-action: manipulation;
	}
}

.header__burger span {
	display: block;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transform-origin: center;
	transition:
		transform 0.3s var(--ease),
		opacity 0.3s var(--ease),
		visibility 0.3s;
}

.header__burger.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.header__burger.is-open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
	visibility: hidden;
}

.header__burger.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
	display: none;
	position: fixed;
	inset: 0;
	box-sizing: border-box;
	padding: 20px 24px 20px;
	padding-top: calc(var(--mobile-menu-top, var(--header-h)) + 20px);
	background: #fff;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	overflow: hidden;
	z-index: 999;
}

.mobile-menu.is-open {
	display: flex;
	flex-direction: column;
	animation: mobileMenuIn 0.25s var(--ease);
}

@keyframes mobileMenuIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.mobile-menu__nav {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(148, 163, 184, 0.6) transparent;
	padding-bottom: 8px;
	transition:
		-webkit-mask-image 0.25s ease,
		mask-image 0.25s ease;
}

.mobile-menu.has-scroll-bottom .mobile-menu__nav {
	-webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 32px), transparent 100%);
	mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 32px), transparent 100%);
}

.mobile-menu__scroll-arrow {
	position: absolute;
	left: 50%;
	bottom: 122px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 20px;
	color: rgba(148, 163, 184, 0.75);
	background: transparent;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.25s ease;
	z-index: 20;
}

.mobile-menu.has-scroll-bottom .mobile-menu__scroll-arrow {
	opacity: 1;
}

.mobile-menu__scroll-arrow svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	animation: subtleScrollChevron 1.8s infinite ease-in-out;
}

@keyframes subtleScrollChevron {
	0%,
	100% {
		transform: translateY(0);
		opacity: 0.5;
	}
	50% {
		transform: translateY(4px);
		opacity: 0.95;
	}
}

.mobile-menu__nav::-webkit-scrollbar {
	width: 4px;
	height: 0;
}

.mobile-menu__nav::-webkit-scrollbar:horizontal {
	display: none;
	height: 0;
}

.mobile-menu__nav::-webkit-scrollbar-track {
	background: transparent;
}

.mobile-menu__nav::-webkit-scrollbar-thumb {
	background: rgba(148, 163, 184, 0.6);
	border-radius: 999px;
}

.mobile-menu__link,
.mobile-menu__sublink {
	display: block;
	color: var(--text);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s;
	-webkit-tap-highlight-color: transparent;
}

.mobile-menu__link:focus,
.mobile-menu__link:active,
.mobile-menu__sublink:focus,
.mobile-menu__sublink:active {
	outline: none;
	background: transparent;
}

.mobile-menu__link {
	padding: 18px 8px;
	margin: 0 -8px;
	font-size: 17px;
	line-height: 1.3;
	border-bottom: 1px solid var(--border);
	transition:
		color 0.2s,
		background 0.2s;
	border-radius: 12px;
}
.mobile-menu__link:active,
.mobile-menu__toggle.mobile-menu__row:active {
	background: rgba(0, 174, 239, 0.04);
}

.mobile-menu__link.is-active,
.mobile-menu__toggle.mobile-menu__row.is-active,
.mobile-menu__group.is-active > .mobile-menu__toggle,
.mobile-menu__sublink.is-active,
.mobile-menu__submenu .current-menu-item > a {
	color: var(--primary);
}

.mobile-menu__group {
	border-bottom: 1px solid var(--border);
}

.mobile-menu__row {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.mobile-menu__toggle.mobile-menu__row {
	padding: 18px 8px;
	margin: 0 -8px;
	border: none;
	background: transparent;
	font-family: var(--font-body);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--text);
	text-align: left;
	cursor: pointer;
	transition:
		color 0.2s,
		background 0.2s;
	-webkit-tap-highlight-color: transparent;
	border-radius: 12px;
}

.mobile-menu__toggle:focus,
.mobile-menu__toggle:active {
	outline: none;
	background: transparent;
	box-shadow: none;
}

.mobile-menu__label {
	flex: 1;
	min-width: 0;
}

.mobile-menu__group.is-open .mobile-menu__toggle {
	color: var(--primary);
}

.mobile-menu__chevron {
	flex-shrink: 0;
	display: block;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--text-muted);
	border-bottom: 2px solid var(--text-muted);
	transform: rotate(45deg);
	transition:
		transform 0.25s var(--ease),
		border-color 0.2s;
}

.mobile-menu__group.is-open .mobile-menu__chevron {
	transform: rotate(-135deg);
	border-color: var(--primary);
}

.mobile-menu__submenu {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0 0 14px 20px;
}

.mobile-menu__group.is-open .mobile-menu__submenu {
	display: block;
}

.mobile-menu__sublink {
	padding: 10px 0;
	font-size: 15px;
	font-weight: 500;
	color: var(--text-muted);
	line-height: 1.35;
}

.mobile-menu__sublink:hover {
	color: var(--primary);
}

.mobile-menu__actions {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 10px;
	margin-top: 0;
	padding-top: 14px;
	background: #fff;
	position: relative;
	z-index: 10;
	box-shadow:
		0 -12px 24px #fff,
		0 -1px 0 var(--border);
}

body.mobile-menu-open {
	overflow: hidden;
}

/* Keep --header-top-h at the expanded size so height can interpolate.
   Collapsed offset for the page is synced from measured header height in header.js. */

/* Top Bar */
.header__top-op {
	background: #ffffff;
	border-bottom: 1px solid var(--border);
	height: var(--header-top-h);
	overflow: visible;
	transition:
		height 0.32s var(--ease),
		opacity 0.32s var(--ease),
		border-color 0.32s var(--ease),
		background-color 0.32s var(--ease);
	position: relative;
	z-index: 10;
}

.header__top-op .container {
	height: 100%;
}

.header.is-scrolled .header__top-op {
	height: 0;
	opacity: 0;
	border-bottom-color: transparent;
	background-color: transparent;
	pointer-events: none;
	overflow: hidden;
}

/* Keep pay popup usable while typing — do not collapse top bar over it. */
.header.is-scrolled.has-pay-open .header__top-op {
	height: var(--header-top-h);
	opacity: 1;
	border-bottom-color: var(--border);
	background-color: #ffffff;
	pointer-events: auto;
	overflow: visible;
}

.header__top {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
	min-height: var(--header-top-h);
	gap: 10px;
	position: relative;
	transition: transform 0.32s var(--ease);
}

.header.is-scrolled .header__top {
	transform: translateY(-8px);
}

.header.is-scrolled.has-pay-open .header__top {
	transform: none;
}

.header__top-op.has-pay-open,
.header__top-op.has-phone-open,
.header__top-op.has-lang-open {
	overflow: visible;
	z-index: 20;
}

/* PC / tablet (single row): pay with contacts + lang on the right. */
.header__top__pay {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	position: static;
	z-index: 1;
	min-width: 0;
	pointer-events: auto;
}

.header__top__pay-input-wrap {
	position: relative;
	display: inline-block;
	width: 190px;
	max-width: 28vw;
	vertical-align: top;
}

.header__top__pay-input {
	box-sizing: border-box;
	width: 100%;
	height: 30px;
	padding: 0 10px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--surface, #fff);
	color: var(--text, #1a1a1a);
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	outline: none;
	transition:
		border-color 0.2s var(--ease),
		box-shadow 0.2s var(--ease);
}

.header__top__pay-input::placeholder {
	color: var(--text-muted);
	font-weight: 400;
}

.header__top__pay-input:hover {
	border-color: var(--primary-border-accent, rgba(0, 174, 239, 0.22));
}

.header__top__pay-input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.12);
}

.header__top__pay-btn {
	appearance: none;
	box-sizing: border-box;
	height: 30px;
	padding: 0 12px;
	border: 0;
	border-radius: 8px;
	background: var(--primary);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	transition:
		background 0.2s var(--ease),
		transform 0.15s var(--ease);
}

.header__top__pay-btn:hover {
	background: var(--primary-dark, #0090c8);
}

.header__top__pay-btn:active {
	transform: translateY(1px);
}

/* Phone Selector */
.header__top__phone {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 100%;
}

.phone__dropdown-wrap {
	display: flex;
	align-items: center;
	gap: 6px;
	height: 100%;
	position: relative;
}

.phone__link {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	flex-shrink: 0;
	transition:
		color 0.2s var(--ease),
		background 0.2s;
	user-select: none;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	outline: none;
	padding: 4px 8px;
	margin: 0 -8px;
	border-radius: 8px;
}

.phone__link:hover,
.phone__dropdown-wrap.is-open .phone__link {
	color: var(--primary);
}

.phone__link:active {
	background: rgba(0, 174, 239, 0.08);
}

.phone__chevron-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	cursor: pointer;
	padding: 6px 8px;
	font-size: 11px;
	transition:
		color 0.2s var(--ease),
		transform 0.2s var(--ease),
		background 0.2s;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	outline: none;
	border-radius: 8px;
}

.phone__chevron-toggle svg {
	width: 12px;
	height: 12px;
	display: block;
	transition: transform 0.2s var(--ease);
}

.phone__chevron-toggle:hover,
.phone__chevron-toggle.is-active,
.phone__dropdown-wrap.is-open .phone__chevron-toggle {
	color: var(--primary);
}

.phone__chevron-toggle:active {
	background: rgba(0, 174, 239, 0.08);
}

.phone__chevron-toggle.is-active i,
.phone__chevron-toggle.is-active svg,
.phone__dropdown-wrap.is-open .phone__chevron-toggle svg {
	transform: rotate(180deg);
}

/* Phone Dropdown */
.phone__dropdown {
	position: absolute;
	top: calc(100% + 4px);
	right: 0;
	width: 330px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition:
		opacity 0.2s var(--ease),
		visibility 0.2s,
		transform 0.2s var(--ease);
}

.phone__drop__main-phone {
	padding-bottom: 12px;
}

.phone__dropdown .xcom-care-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--primary);
	font-weight: 700;
	font-size: 16px;
	transition: color 0.2s;
}

.phone__dropdown .xcom-care-link:hover {
	color: var(--primary);
}

.phone__dropdown.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.phone__drop__city,
.phone__drop__provider,
.phone__drop__wa {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.phone__drop__citylinks,
.phone__drop__providerlinks {
	display: flex;
	gap: 12px;
	border-bottom: 1px solid var(--border);
	padding-bottom: 6px;
}

.citylink,
.providerlink {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--text-muted);
	position: relative;
	padding-bottom: 4px;
	transition: color 0.2s;
}

.citylink:hover,
.providerlink:hover {
	color: var(--text);
}

.citylink.active,
.providerlink.active {
	color: var(--primary);
}

.citylink.active::after,
.providerlink.active::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--primary);
	border-radius: 99px;
}

.phone__drop__city__num,
.phone__drop__provider__num {
	font-size: 17px;
	font-weight: 700;
	color: var(--text);
	display: inline-block;
	transition:
		color 0.2s,
		background 0.2s;
	text-decoration: none;
	padding: 4px 8px;
	margin: 0 -8px;
	border-radius: 8px;
	-webkit-tap-highlight-color: transparent;
	outline: none;
}

.phone__drop__city__num:hover,
.phone__drop__provider__num:hover {
	color: var(--primary);
}

.phone__drop__city__num:active,
.phone__drop__provider__num:active {
	background: rgba(0, 174, 239, 0.08);
}

/* WhatsApp status */
.phone__drop__wa {
	border-top: 1px solid var(--border);
	padding-top: 12px;
}

.wa__status-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 10px 14px;
	background: #f8f9fb;
	border: 1px solid transparent;
	border-radius: 10px;
	color: var(--text);
	transition:
		background 0.2s,
		border-color 0.2s,
		transform 0.2s,
		box-shadow 0.2s,
		color 0.2s;
	text-decoration: none;
}

.wa__status-link-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
}

.wa__status-link-label {
	font-weight: 700;
	font-size: 15px;
	color: inherit;
}

.wa__status-link-state {
	font-size: 11px;
	font-weight: 700;
	text-transform: lowercase;
}

.wa__status-link:hover {
	color: var(--primary);
	background: rgba(0, 174, 239, 0.08);
	border-color: transparent;
	box-shadow: none;
}

/* Dropdown Emails */
.phone__drop__email {
	display: flex;
	flex-direction: column;
	gap: 8px;
	border-top: 1px solid var(--border);
	padding-top: 12px;
}

.email__title {
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.email__title--wa {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.email__line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13.5px;
}

.email__name {
	color: var(--text-muted);
}

.email__link a {
	color: var(--text);
	font-weight: 600;
	transition:
		color 0.2s,
		background 0.2s;
	text-decoration: none;
	padding: 4px 8px;
	margin: 0 -8px;
	border-radius: 8px;
}

.email__link a:hover {
	color: var(--primary-dark);
}

.email__link a:active {
	background: rgba(0, 174, 239, 0.08);
}

/* Dropdown Socials */
.phone__drop__social {
	display: flex;
	gap: 16px;
	justify-content: center;
	border-top: 1px solid var(--border);
	padding-top: 14px;
	margin-top: 4px;
}

.phone__drop__social a {
	font-size: 18px;
	color: var(--text-muted);
	transition:
		color 0.2s,
		transform 0.2s;
}

.phone__drop__social a:hover {
	color: var(--primary-dark);
}

/* Lang Switcher */
.header__top__lang {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	z-index: 2;
}

#language {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	-webkit-tap-highlight-color: transparent;
	outline: none;
}

.current-lang {
	color: var(--text-muted);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 6px 10px;
	border-radius: 8px;
	transition:
		color 0.2s,
		background 0.2s;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	outline: none;
}

.current-lang:hover,
#language.is-open .current-lang {
	color: var(--primary);
}

.current-lang:active {
	background: rgba(0, 174, 239, 0.08);
}

.current-lang i,
.current-lang svg {
	flex-shrink: 0;
	width: 12px;
	height: 12px;
	font-size: 10px;
	display: block;
	transition: transform 0.2s var(--ease);
}

#language.is-open .current-lang i,
#language.is-open .current-lang svg {
	transform: rotate(180deg);
}

#language ul {
	position: absolute;
	top: calc(100% + 4px);
	right: 0;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	padding: 6px;
	min-width: 90px;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition:
		opacity 0.15s var(--ease),
		visibility 0.15s,
		transform 0.15s var(--ease);
	display: flex;
	flex-direction: column;
	gap: 4px;
}

#language.is-open ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#language ul li {
	padding: 8px 16px;
	color: var(--text-muted);
	cursor: pointer;
	transition:
		background 0.15s,
		color 0.15s;
	text-align: center;
	font-weight: 500;
	border-radius: 6px;
}

#language ul li:hover,
#language ul li.active {
	background: rgba(0, 174, 239, 0.08);
	color: var(--primary);
	font-weight: 600;
}

/* Hover States for Desktop */
@media (min-width: 992px) {
	.header__top__lang:hover #language ul {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
	.header__top__lang:hover .current-lang i,
	.header__top__lang:hover .current-lang svg {
		transform: rotate(180deg);
	}
	.header__top__lang:hover .current-lang {
		color: var(--primary);
	}
}

/* Tablet / mobile: 2 rows — contacts+lang right; pay centered full width below. */
@media (max-width: 767px) {
	:root {
		--header-top-h: 96px;
		--header-h: calc(var(--header-inner-h) + var(--header-top-h));
	}

	.header__top-op {
		height: var(--header-top-h);
	}

	.header__top {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto auto;
		grid-template-areas:
			". phone lang"
			"pay pay pay";
		align-items: center;
		align-content: center;
		column-gap: 10px;
		row-gap: 8px;
		height: 100%;
		width: 100%;
		min-width: 0;
		box-sizing: border-box;
		padding: 8px 0 12px;
	}

	.header__top__phone {
		grid-area: phone;
		justify-self: end;
		gap: 10px;
		z-index: 2;
		min-width: 0;
	}

	.header__top__lang {
		grid-area: lang;
		justify-self: end;
		z-index: 2;
	}

	.header__top__pay {
		grid-area: pay;
		width: 100%;
		max-width: none;
		justify-content: stretch;
		gap: 6px;
	}

	.header__top__pay-input-wrap {
		flex: 1 1 auto;
		display: block;
		position: relative;
		width: auto;
		max-width: none;
	}

	.header__top__pay-input {
		width: 100%;
		max-width: none;
	}

	.header__top__pay-btn {
		flex: 0 0 auto;
	}

	/* Stay anchored under the contract field (absolute), not viewport-fixed. */
	.header__top__pay-dropdown.is-open {
		z-index: 1200;
	}

	.header__top__pay-dropdown.is-open.has-equal-body {
		height: auto;
	}

	.header__top__pay-dropdown-body,
	.header__top__pay-found-list,
	.header__top__pay-authorized-list {
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		scrollbar-width: none !important;
		-ms-overflow-style: none !important;
	}

	.header__top__pay-dropdown-body::-webkit-scrollbar,
	.header__top__pay-found-list::-webkit-scrollbar,
	.header__top__pay-authorized-list::-webkit-scrollbar {
		display: none !important;
		width: 0 !important;
		height: 0 !important;
	}

	.header__top__phone,
	.phone__dropdown-wrap {
		overflow: visible;
	}

	/* Open menus must paint above .header__inner (burger z-index 15). */
	.header__top-op.has-pay-open,
	.header__top-op.has-phone-open,
	.header__top-op.has-lang-open {
		overflow: visible;
		z-index: 20;
	}

	/* Keep phone panel inside the viewport; top synced in header.js below the trigger. */
	.phone__dropdown {
		position: fixed;
		top: var(--phone-dropdown-top, calc(var(--wp-admin-bar-offset, 0px) + var(--header-h, 120px) - var(--header-top-h, 96px) + 36px));
		left: max(10px, env(safe-area-inset-left, 0px));
		right: max(10px, env(safe-area-inset-right, 0px));
		width: auto;
		max-width: none;
		padding: 16px;
		z-index: 1200;
		transform: translateY(-8px);
	}

	.phone__dropdown.is-open {
		transform: translateY(0);
	}

	.phone__link {
		font-size: 13px;
		padding: 4px 6px;
		margin: 0 -6px;
	}

	.inst__btn,
	.tg__btn,
	.mail__btn {
		width: 26px;
		height: 26px;
		border-radius: 6px;
	}

	.inst__btn svg,
	.tg__btn svg,
	.mail__btn svg,
	.inst__btn .bi,
	.tg__btn .bi,
	.mail__btn .bi {
		width: 12px;
		height: 12px;
		font-size: 12px;
	}

	.header__top__pay-input,
	.header__top__pay-btn {
		height: 32px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	:root {
		--header-top-h: 92px;
		--header-h: calc(var(--header-inner-h) + var(--header-top-h));
	}

	.header__top {
		column-gap: 10px;
		row-gap: 8px;
		padding: 8px 0 12px;
	}

	.header__top__phone {
		gap: 10px;
	}

	.phone__dropdown-wrap {
		gap: 6px;
	}

	.phone__link {
		font-size: 13px;
	}

	.inst__btn,
	.tg__btn,
	.mail__btn {
		width: 28px;
		height: 28px;
	}

	.header__top__pay {
		max-width: none;
		padding-inline: 0;
	}

	.header__top__pay-btn {
		padding: 0 10px;
		font-size: 12px;
	}
}

@media (max-width: 374px) {
	:root {
		--header-top-h: 88px;
		--header-h: calc(var(--header-inner-h) + var(--header-top-h));
		--container-pad: 12px;
	}

	.header__top {
		column-gap: 10px;
		row-gap: 8px;
		padding: 8px 0 10px;
	}

	.header__top__phone {
		gap: 5px;
	}

	.phone__dropdown-wrap {
		gap: 6px;
	}

	.phone__link {
		font-size: 12px;
	}

	.inst__btn,
	.tg__btn,
	.mail__btn {
		width: 28px;
		height: 28px;
	}

	.header__top__pay-input,
	.header__top__pay-btn {
		height: 30px;
		font-size: 12px;
	}

	.header__top__pay-btn {
		padding: 0 10px;
	}
}

@media (max-width: 344px) {
	:root {
		--header-top-h: 86px;
		--header-h: calc(var(--header-inner-h) + var(--header-top-h));
		--container-pad: 10px;
	}

	.phone__link {
		font-size: 11px;
		letter-spacing: -0.02em;
		padding: 4px 4px;
		margin: 0 -4px;
	}

	.phone__dropdown-wrap {
		gap: 2px;
	}

	.phone__chevron-toggle {
		padding: 4px 4px;
	}

	.header__top__pay-input::placeholder {
		font-size: 11px;
	}
}

@media (max-width: 337px) {
	.phone__link {
		font-size: 10.5px;
		letter-spacing: -0.03em;
		padding: 4px 2px;
		margin: 0 -2px;
	}

	.header__top__phone {
		gap: 4px;
	}
}

/* Header Top Pay Dropdown Styling */
.header__top__pay-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	background: var(--surface, #ffffff);
	border: 1px solid var(--border, #e2e8f0);
	border-radius: var(--radius, 12px);
	box-shadow:
		0 10px 25px -5px rgba(0, 0, 0, 0.1),
		0 8px 10px -6px rgba(0, 0, 0, 0.1);
	padding: 0;
	margin: 0;
	list-style: none;
	z-index: 1001;
	transform: translateY(-10px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.25s var(--ease, ease),
		transform 0.25s var(--ease, ease),
		visibility 0.25s;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.header__top__pay-dropdown.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	max-height: min(75vh, 500px);
	overflow: hidden;
	overflow-x: hidden;
}

.header__top__pay-dropdown.is-open.has-equal-body {
	height: auto;
}

.header__top__pay-dropdown-body {
	flex: 0 0 auto;
	min-height: 0;
	overflow: hidden;
	padding: 12px 12px 8px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.header__top__pay-dropdown-body--equal {
	flex: 0 0 auto;
	min-height: 0;
	gap: 8px;
	padding-bottom: 12px;
}

.header__top__pay-dropdown-body--equal .header__top__pay-section--found,
.header__top__pay-dropdown-body--equal .header__top__pay-section--authorized {
	flex: 0 0 auto;
	min-height: 0;
}

.header__top__pay-dropdown-body--equal .header__top__pay-dropdown-user {
	flex: 0 0 auto;
	margin: 0;
	padding: 8px 0;
	border-top: 1px solid var(--border, #e2e8f0);
	border-bottom: 0;
}

.header__top__pay-dropdown-footer {
	flex: 0 0 auto;
	margin-top: 0;
	padding: 10px 12px 12px;
	border-top: 1px solid var(--border, #e2e8f0);
	background: var(--surface, #ffffff);
	border-radius: 0 0 var(--radius, 12px) var(--radius, 12px);
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 0;
	overflow: visible;
}

.header__top__pay-dropdown-footer:only-child {
	border-top: 0;
	flex: 0 0 auto;
	padding: 12px;
}

.header__top__pay-section {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.header__top__pay-section--found,
.header__top__pay-section--authorized {
	flex: 0 0 auto;
	min-height: 0;
	overflow: visible;
}

.header__top__pay-dropdown-body > .header__top__pay-section:only-of-type {
	flex: 0 0 auto;
	min-height: 0;
}

.header__top__pay-section--loading,
.header__top__pay-dropdown-body > .header__top__pay-section--loading:only-of-type {
	flex: 0 0 auto;
	min-height: 0;
	overflow: visible;
}

.header__top__pay-section--loading .header__top__pay-dropdown-item-loading {
	padding: 8px 0;
}

.header__top__pay-section-title {
	flex: 0 0 auto;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: lowercase;
	color: var(--text-muted, #718096);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 0 8px;
	margin: 0;
	border-bottom: 1px solid var(--border, #edf2f7);
	background: var(--surface, #ffffff);
}

.header__top__pay-section-title-text {
	flex: 1 1 auto;
	min-width: 0;
}

.header__top__pay-found-list,
.header__top__pay-authorized-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 0 0 auto;
	max-height: 220px;
	min-height: 0;
	min-width: 0;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	padding-right: 4px;
	scrollbar-width: thin;
	scrollbar-color: #cbd5e1 transparent;
}

.header__top__pay-found-list::-webkit-scrollbar,
.header__top__pay-authorized-list::-webkit-scrollbar {
	display: block !important;
	width: 5px;
	height: 5px;
}

.header__top__pay-found-list::-webkit-scrollbar-track,
.header__top__pay-authorized-list::-webkit-scrollbar-track {
	background: transparent;
}

.header__top__pay-found-list::-webkit-scrollbar-thumb,
.header__top__pay-authorized-list::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 4px;
}

.header__top__pay-found-list::-webkit-scrollbar-thumb:hover,
.header__top__pay-authorized-list::-webkit-scrollbar-thumb:hover {
	background: #94a3b8;
}

.header__top__pay-found-list > *,
.header__top__pay-authorized-list > * {
	flex: 0 0 auto;
}

.header__top__pay-section-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ade80;
	display: inline-block;
}

.header__top__pay-divider {
	display: flex;
	align-items: center;
	text-align: center;
	margin: 8px 0;
	color: var(--text-muted, #94a3b8);
	font-size: 0.6875rem;
	font-weight: 600;
}

.header__top__pay-divider::before,
.header__top__pay-divider::after {
	content: "";
	flex: 1;
	border-bottom: 1px solid var(--border, #edf2f7);
}

.header__top__pay-divider span {
	padding: 0 6px;
	background: var(--surface, #ffffff);
	text-transform: lowercase;
}

.header__top__pay-item-tag {
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--primary, #00aeef);
	background: rgba(0, 174, 239, 0.1);
	padding: 1px 6px;
	border-radius: 4px;
	text-transform: uppercase;
}

.header__top__pay-dropdown-user {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 0 0 auto;
	padding: 0;
	margin: 0;
	border-bottom: 0;
}

.header__top__pay-user-phone {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--text, #1a1a1a);
}

.header__top__pay-logout-btn {
	padding: 3px 8px;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--status-offline, #e11d48);
	background: rgba(225, 29, 72, 0.08);
	border: 1px solid rgba(225, 29, 72, 0.16);
	border-radius: 6px;
	cursor: pointer;
	text-transform: lowercase;
	transition:
		background 0.15s,
		color 0.15s;
}

.header__top__pay-logout-btn:hover {
	background: #e11d48;
	color: #ffffff;
}

.header__top__pay-auth {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: left;
}

.header__top__pay-auth--loading .header__top__pay-dropdown-item-loading {
	padding: 10px 0 4px;
	margin: 0;
}

.header__top__pay-auth-header {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: lowercase;
	color: var(--text-muted, #718096);
	letter-spacing: 0.02em;
	margin: 0;
	padding: 0;
}

.header__top__pay-auth-subtext {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text, #1a1a1a);
	margin: 0;
	padding: 0;
	line-height: 1.3;
	word-break: keep-all;
}

.header__top__pay-auth-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
}

.header__top__pay-auth-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
}

.header__top__pay-auth-back-btn {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 4px 0;
	background: none;
	border: none;
	border-radius: 0;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--primary, #00aeef);
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
	text-align: center;
	text-transform: lowercase;
	box-sizing: border-box;
	transition:
		color 0.15s,
		opacity 0.15s;
}

.header__top__pay-auth-back-btn:hover {
	color: var(--primary-dark, #0088cc);
	background: none;
	border: none;
	opacity: 0.85;
}

.header__top__pay-auth-input {
	box-sizing: border-box;
	width: 100%;
	height: 36px;
	padding: 0 12px;
	margin: 0;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.2;
	border: 1px solid var(--border, #cbd5e1);
	border-radius: 8px;
	background: var(--surface-soft, #f8fafc);
	color: var(--text, #1a1a1a);
	outline: none;
	transition:
		border-color 0.2s var(--ease, ease),
		box-shadow 0.2s var(--ease, ease);
}

.header__top__pay-auth-input::placeholder {
	color: var(--text, #1a1a1a);
	font-size: 0.9375rem;
	font-weight: 400;
	opacity: 1;
}

.header__top__pay-auth-input::-webkit-input-placeholder {
	color: var(--text, #1a1a1a);
	font-size: 0.9375rem;
	font-weight: 400;
	opacity: 1;
}

.header__top__pay-auth-input::-moz-placeholder {
	color: var(--text, #1a1a1a);
	font-size: 0.9375rem;
	font-weight: 400;
	opacity: 1;
}

.header__top__pay-auth-input:focus {
	outline: none;
	border-color: var(--primary, #00aeef);
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.12);
}

.header__top__pay-auth-input.is-invalid {
	border-color: #e11d48;
	box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}

.header__top__pay-auth-error {
	font-size: 0.75rem;
	font-weight: 500;
	color: #e11d48;
	line-height: 1.3;
	margin: 2px 0 0;
}

.header__top__pay-auth-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 36px;
	margin: 0;
	background: var(--primary, #00aeef);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
	text-transform: lowercase;
	transition:
		background 0.15s,
		transform 0.15s;
}

.header__top__pay-btn-spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: header-pay-spin 1.3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
	flex-shrink: 0;
}

.header__top__pay-auth-btn:hover {
	background: var(--primary-dark, #0088cc);
}

.header__top__pay-auth--disabled {
	opacity: 0.55;
	pointer-events: none;
}

.header__top__pay-auth-input:disabled,
.header__top__pay-auth-btn:disabled {
	cursor: not-allowed;
	opacity: 0.85;
}

.header__top__pay-auth-btn:disabled:hover {
	background: var(--primary, #00aeef);
}

.header__top__pay-dropdown-header {
	padding: 6px 16px 8px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-muted, #718096);
	border-bottom: 1px solid var(--border, #e2e8f0);
	margin-bottom: 6px;
	text-align: left;
}

.header__top__pay-divider-line {
	height: 1px;
	background: var(--border-subtle, #edf2f7);
	margin: 12px 0;
}

.header__top__pay-dropdown-item {
	padding: 8px 12px;
	margin: 0;
	min-height: 36px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text, #1a1a1a);
	cursor: pointer;
	border-radius: var(--radius, 12px);
	border: 1px solid transparent;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition:
		background 0.18s var(--ease, ease),
		color 0.18s var(--ease, ease),
		border-color 0.18s var(--ease, ease),
		box-shadow 0.18s var(--ease, ease);
	text-align: left;
	box-sizing: border-box;
	flex: 0 0 auto;
}

.header__top__pay-dropdown-item--rich {
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	gap: 3px;
	flex: 0 0 auto;
	flex-shrink: 0;
	min-height: auto;
	height: auto;
	min-width: 0;
	max-width: none;
	width: auto;
	padding: 9px 12px;
	line-height: 1.25;
	overflow: visible;
}

.header__top__pay-contract-main {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem;
	width: 100%;
	min-width: 0;
	line-height: 1.35;
}

.header__top__pay-contract-number {
	font-size: 0.875rem;
	font-weight: 700;
	color: inherit;
	letter-spacing: 0.01em;
	line-height: 1.35;
	flex: 0 1 auto;
	min-width: 0;
	padding-inline-end: 0.2em;
}

.header__top__pay-contract-date {
	font-size: 0.6875rem;
	font-weight: 500;
	color: var(--text-muted, #718096);
	white-space: nowrap;
	flex: 0 0 auto;
	line-height: 1.35;
	margin-inline-start: auto;
	padding-inline-start: 0.35em;
	letter-spacing: 0.015em;
	transition:
		color 0.18s var(--ease, ease),
		opacity 0.18s var(--ease, ease);
}

.header__top__pay-contract-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-width: 0;
	line-height: 1.3;
}

.header__top__pay-contract-tarif {
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--text-muted, #64748b);
	line-height: 1.35;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition:
		color 0.18s var(--ease, ease),
		opacity 0.18s var(--ease, ease);
}

#header-pay-contracts-dropdown:not(.is-keyboard-nav) .header__top__pay-dropdown-item:hover,
.header__top__pay-dropdown-item.is-selected {
	background: var(--primary-soft-strong, rgba(0, 174, 239, 0.1));
	border-color: var(--primary-border-accent, rgba(0, 174, 239, 0.22));
	color: var(--primary-dark, #0088cc);
	box-shadow: none !important;
	outline: none;
}

#header-pay-contracts-dropdown:not(.is-keyboard-nav) .header__top__pay-dropdown-item:hover .header__top__pay-contract-date,
#header-pay-contracts-dropdown:not(.is-keyboard-nav) .header__top__pay-dropdown-item:hover .header__top__pay-contract-tarif,
.header__top__pay-dropdown-item.is-selected .header__top__pay-contract-date,
.header__top__pay-dropdown-item.is-selected .header__top__pay-contract-tarif {
	color: var(--primary, #00aeef);
	opacity: 0.9;
}



.header__top__pay-dropdown-item-loading {
	padding: 12px 16px;
	font-size: 13px;
	color: var(--text-muted, #718096);
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: flex-start;
}

.header__top__pay-dropdown-item-loading::before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(0, 174, 239, 0.2);
	border-top-color: var(--primary, #00aeef);
	border-right-color: rgba(0, 174, 239, 0.6);
	border-radius: 50%;
	animation: header-pay-spin 1.3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
	flex-shrink: 0;
}

@keyframes header-pay-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Badge Indicator for found contracts */
.header__top__pay-badge {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: #00aeef;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 20px;
	pointer-events: none;
	display: flex;
	align-items: center;
	gap: 6px;
	line-height: 1;
	box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.4);
	transition:
		opacity 0.3s,
		transform 0.2s,
		background-color 0.2s;
	z-index: 10;
}

.header__top__pay-badge.is-pulsing {
	animation: header-pay-badge-active-pulse 0.8s ease-in-out infinite;
}

.header__top__pay-badge::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #4ade80;
	border-radius: 50%;
	transition: background-color 0.2s;
}

.header__top__pay-badge.is-pulsing::before {
	background: #facc15;
}

@keyframes header-pay-badge-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.5);
	}
	70% {
		box-shadow: 0 0 0 6px rgba(0, 174, 239, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(0, 174, 239, 0);
	}
}

@keyframes header-pay-badge-active-pulse {
	0% {
		transform: translateY(-50%) scale(1);
		box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.8);
	}
	50% {
		transform: translateY(-50%) scale(1.12);
		box-shadow: 0 0 0 8px rgba(0, 174, 239, 0);
	}
	100% {
		transform: translateY(-50%) scale(1);
		box-shadow: 0 0 0 0 rgba(0, 174, 239, 0);
	}
}

.header__top__pay-input.has-contracts {
	padding-right: 55px !important;
	border-color: rgba(0, 174, 239, 0.5) !important;
}

/* iOS 14.0–14.4: flex gap missing — margin fallback for critical header rows. */
@supports not (gap: 1px) {
	.header__top > * + * {
		margin-left: 10px;
	}

	.header__top__pay > * + * {
		margin-left: 6px;
	}

	.header__top__phone > * + * {
		margin-left: 10px;
	}

	.phone__dropdown-wrap > * + * {
		margin-left: 6px;
	}

	.current-lang > * + * {
		margin-left: 6px;
	}
}


/* _flash.css */
/* Flash banners — top of fixed header, above header__top-op */

.xcom-flash {
	position: relative;
	z-index: 2;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
	flex-shrink: 0;
}

.xcom-flash[hidden] {
	display: none !important;
}

.xcom-flash__channel {
	position: relative;
	min-width: 0;
	transition: opacity 0.28s var(--ease, ease);
}

.xcom-flash__channel[hidden] {
	display: none;
}

.xcom-flash__channel.is-dismissing {
	opacity: 0;
	pointer-events: none;
}

.xcom-flash__item {
	border-bottom: 1px solid transparent;
	min-width: 0;
	opacity: 0;
	transform: translateY(8px);
	transition:
		opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}

.xcom-flash__item[hidden]:not(.is-leaving):not(.is-enter) {
	display: none !important;
}

.xcom-flash__item.is-active,
.xcom-flash__item.is-enter,
.xcom-flash__item.is-leaving {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
}

.xcom-flash__item.is-active {
	z-index: 1;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.xcom-flash__item.is-enter {
	z-index: 1;
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
}

.xcom-flash__item.is-leaving {
	opacity: 0;
	transform: translateY(-6px);
	pointer-events: none;
	z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
	.xcom-flash__channel,
	.xcom-flash__item {
		transition: none;
	}

	.xcom-flash__item.is-enter,
	.xcom-flash__item.is-leaving {
		transform: none;
	}
}

.xcom-flash__item--news {
	background: linear-gradient(90deg, rgba(0, 174, 239, 0.12) 0%, rgba(0, 174, 239, 0.06) 100%);
	border-bottom-color: rgba(0, 174, 239, 0.22);
	color: var(--text);
}

.xcom-flash__item--notification,
.xcom-flash__item--outages {
	background: linear-gradient(90deg, rgba(255, 101, 27, 0.14) 0%, rgba(255, 101, 27, 0.06) 100%);
	border-bottom-color: rgba(255, 101, 27, 0.45);
	color: var(--text);
}

.xcom-flash__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px 12px;
	padding-block: 8px;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
}

.xcom-flash__content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 12px;
	min-width: 0;
	flex: 1 1 auto;
}

.xcom-flash__badge {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	padding: 0.2em 0.65em;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1.3;
	flex-shrink: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.xcom-flash__item--news .xcom-flash__badge {
	background: var(--primary-soft);
	border: 1px solid var(--primary-border);
	color: var(--primary-dark);
}

.xcom-flash__item--notification .xcom-flash__badge,
.xcom-flash__item--outages .xcom-flash__badge {
	background: rgba(255, 101, 27, 0.12);
	border: 1px solid rgba(255, 101, 27, 0.45);
	color: var(--accent);
}

.xcom-flash__link {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 14px;
	min-width: 0;
	flex: 1 1 180px;
	text-decoration: none;
	border-bottom: none;
	color: inherit;
}

.xcom-flash__title {
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text);
	overflow-wrap: anywhere;
	word-break: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-width: 0;
	flex: 1 1 160px;
}

.xcom-flash__link:hover .xcom-flash__title {
	color: var(--primary-dark);
}

.xcom-flash__item--notification .xcom-flash__link:hover .xcom-flash__title,
.xcom-flash__item--outages .xcom-flash__link:hover .xcom-flash__title {
	color: var(--accent);
}

.xcom-flash__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--text-muted);
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
	transition:
		background 0.15s var(--ease),
		color 0.15s var(--ease);
}

.xcom-flash__close:hover {
	background: rgba(15, 20, 25, 0.06);
	color: var(--text);
}

.page-content .xcom-flash a,
.entry-content .xcom-flash a {
	border-bottom: none;
}

/* Tablet / large phones — keep compact single-row stack */
@media (max-width: 767px) {
	.xcom-flash__inner {
		align-items: center;
		gap: 6px 8px;
		padding-block: 6px;
	}

	.xcom-flash__content {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		gap: 4px 8px;
	}

	.xcom-flash__link {
		flex: 1 1 140px;
		min-width: 0;
		width: auto;
	}

	.xcom-flash__title {
		font-size: 0.8125rem;
		line-height: 1.3;
		-webkit-line-clamp: 2;
	}

	.xcom-flash__badge {
		font-size: 0.625rem;
		padding: 0.15em 0.5em;
	}

	.xcom-flash__close {
		width: 32px;
		height: 32px;
		font-size: 1.35rem;
		border-radius: 8px;
		flex-shrink: 0;
	}
}

/* Narrow phones */
@media (max-width: 480px) {
	.xcom-flash__inner {
		gap: 4px 6px;
		padding-block: 5px;
	}

	.xcom-flash__content {
		gap: 3px 6px;
	}

	.xcom-flash__title {
		font-size: 0.8125rem;
		-webkit-line-clamp: 2;
	}

	.xcom-flash__close {
		width: 30px;
		height: 30px;
		font-size: 1.25rem;
	}
}

/* Minimal viewport ~344px */
@media (max-width: 360px) {
	.xcom-flash__inner {
		gap: 4px;
		padding-block: 4px;
	}

	.xcom-flash__badge {
		font-size: 0.5625rem;
		padding: 0.12em 0.45em;
	}

	.xcom-flash__title {
		font-size: 0.75rem;
		line-height: 1.3;
	}

	.xcom-flash__close {
		width: 28px;
		height: 28px;
		font-size: 1.2rem;
		border-radius: 6px;
	}
}


/* _tooltip.css */
/* XCOM Global Custom Tooltip System [data-tooltip] */

[data-tooltip] {
	position: relative;
	cursor: pointer;
}

[data-tooltip]::before,
[data-tooltip]::after {
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(6px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 99999;
}

/* Tooltip Content Card */
[data-tooltip]::before {
	content: attr(data-tooltip);
	bottom: calc(100% + 8px);
	padding: 7px 12px;
	background: #0f172a;
	color: #ffffff;
	font-family: var(--font-body, system-ui, -apple-system, sans-serif);
	font-size: 0.78125rem;
	font-weight: 600;
	line-height: 1.35;
	white-space: normal;
	max-width: min(320px, 85vw);
	width: max-content;
	text-align: center;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Tooltip Arrow Indicator */
[data-tooltip]::after {
	content: '';
	bottom: calc(100% + 2px);
	border-width: 6px 6px 0 6px;
	border-style: solid;
	border-color: #0f172a transparent transparent transparent;
}

/* Hover and Focus triggers — only devices that can truly hover (not sticky tap). */
@media (hover: hover) and (pointer: fine) {
	[data-tooltip]:hover::before,
	[data-tooltip]:hover::after,
	[data-tooltip]:focus-visible::before,
	[data-tooltip]:focus-visible::after {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}
}

/* Floating Global Tooltip (JS positioned for scroll/overflow safety) */
.xcom-global-tooltip {
	position: fixed;
	z-index: 99999999 !important;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.15s cubic-bezier(0.16, 1, 0.3, 1), transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
	transform: translateX(-50%) translateY(4px);
}

.xcom-global-tooltip.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.xcom-global-tooltip__card {
	padding: 7px 12px;
	background: #0f172a;
	color: #ffffff;
	font-family: var(--font-body, system-ui, -apple-system, sans-serif);
	font-size: 0.78125rem;
	font-weight: 600;
	line-height: 1.35;
	white-space: normal;
	max-width: min(320px, 85vw);
	text-align: center;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.xcom-global-tooltip-spin {
	width: 13px;
	height: 13px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #ffffff;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	animation: xcom-tooltip-spin 0.6s linear infinite;
}

@keyframes xcom-tooltip-spin {
	to {
		transform: rotate(360deg);
	}
}

.xcom-global-tooltip__arrow {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
}

.xcom-global-tooltip.is-below .xcom-global-tooltip__arrow {
	top: -6px;
	bottom: auto;
	border-width: 0 6px 6px 6px;
	border-color: transparent transparent #0f172a transparent;
}

.xcom-global-tooltip.is-above .xcom-global-tooltip__arrow {
	bottom: -6px;
	top: auto;
	border-width: 6px 6px 0 6px;
	border-color: #0f172a transparent transparent transparent;
}


/* _error.css */
/* Error pages */
.error-page {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 0 auto;
	min-height: calc(100vh - var(--header-h) - 280px);
	min-height: calc(100dvh - var(--header-h) - 280px);
}

.error-page__inner {
	max-width: 640px;
	margin-inline: auto;
	text-align: center;
}

.error-page__code {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-size: clamp(4.5rem, 14vw, 7.5rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.04em;
	background: linear-gradient(135deg, var(--primary) 0%, #00c4ff 45%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.error-page .section-label {
	margin-bottom: 18px;
}

.error-page .text-desc {
	margin-left: auto;
	margin-right: auto;
	max-width: 46ch;
}

.error-page__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
}


/* _contacts.css */
/* Contacts page — single container grid with page header */
.page-slug-contacts .content-grid {
	padding-block: var(--section-pad-y);
}

.page-slug-contacts .entry-content,
.page-slug-contacts .page-content {
	max-width: none;
	width: 100%;
	margin-top: 0;
}

.page-slug-contacts .entry-content > .wp-block-heading {
	font-size: clamp(1.125rem, 2.5vw, 1.35rem);
	margin: clamp(28px, 4vw, 40px) 0 14px;
}

.page-slug-contacts .entry-content > .wp-block-heading:first-child {
	margin-top: 0;
}

.page-slug-contacts .entry-content > .wp-block-list {
	margin: 0 0 clamp(24px, 4vw, 36px);
	padding: 18px 20px;
	padding-left: 20px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	list-style: none;
}

.page-slug-contacts .entry-content > .wp-block-list li {
	padding: 10px 0;
	border-bottom: 1px solid var(--border);
}

.page-slug-contacts .entry-content > .wp-block-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.page-slug-contacts .entry-content > .wp-block-list li:first-child {
	padding-top: 0;
}

.page-slug-contacts .entry-content > .wp-block-image {
	margin: 0 0 clamp(24px, 4vw, 36px);
}

.page-slug-contacts .entry-content > .wp-block-image img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

@media (max-width: 767px) {
	.page-slug-contacts .entry-content > .wp-block-list {
		padding: 16px 18px;
		padding-left: 18px;
	}
}


/* _content.css */
/* Content */
.page-header {
	padding: var(--section-pad-y) 0 0;
	margin-bottom: var(--section-pad-y);
}

.page-header .entry-title {
	margin: 0;
}

.content-grid {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
	padding-block: var(--content-pad-block-start) var(--content-pad-block-end);
	box-sizing: border-box;
}

/*
 * Unified page-block rhythm (all top-level blocks):
 * - gap ABOVE each block = --section-pad-y (except the first — content-grid already pads)
 * - no extra bottom pad on blocks — content-grid pads the page end
 * Scripts after a block don't break :first-child.
 */
.entry-content > :is(
	.section,
	.faq,
	.xcom-banner-block,
	.xcom-tariffs-wrap,
	.xcom-connect-form-wrap,
	.xcom-o500-form-wrap,
	.xcom-job-form-wrap,
	.xcom-ntv-form-wrap,
	.xcom-care-block-wrap,
	.xcom-care-block,
	.xcom-block,
	.xcom-speedtest-wrap,
	.xcom-speedtest,
	.xcom-check-ip-wrap,
	.xcom-check-ip,
	.xcom-site-map-wrap,
	.xcom-site-map,
	.xcom-requisites,
	.xcom-balance-wrap,
	.xcom-balance,
	.xcom-login-wrap,
	.xcom-login,
	.xcom-payments-wrap,
	.xcom-payments,
	.xcom-news-list,
	.wp-block-xcom-care-block,
	.wp-block-xcom-faq,
	.wp-block-xcom-cameras,
	.wp-block-xcom-banner,
	.wp-block-xcom-tariffs,
	.wp-block-xcom-connect-form,
	.wp-block-xcom-o500-form,
	.wp-block-xcom-job-form,
	.wp-block-xcom-ntv-form,
	.wp-block-xcom-speedtest,
	.wp-block-xcom-check-ip,
	.wp-block-xcom-site-map,
	.wp-block-xcom-requisites,
	.wp-block-xcom-payments,
	.wp-block-xcom-news-list,
	.wp-block-xcom-balance,
	.wp-block-xcom-login
),
.page-content > :is(
	.section,
	.faq,
	.xcom-banner-block,
	.xcom-tariffs-wrap,
	.xcom-connect-form-wrap,
	.xcom-o500-form-wrap,
	.xcom-job-form-wrap,
	.xcom-ntv-form-wrap,
	.xcom-care-block-wrap,
	.xcom-care-block,
	.xcom-block,
	.xcom-speedtest-wrap,
	.xcom-speedtest,
	.xcom-check-ip-wrap,
	.xcom-check-ip,
	.xcom-site-map-wrap,
	.xcom-site-map,
	.xcom-requisites,
	.xcom-balance-wrap,
	.xcom-balance,
	.xcom-login-wrap,
	.xcom-login,
	.xcom-payments-wrap,
	.xcom-payments,
	.xcom-news-list,
	.wp-block-xcom-care-block,
	.wp-block-xcom-faq,
	.wp-block-xcom-cameras,
	.wp-block-xcom-banner,
	.wp-block-xcom-tariffs,
	.wp-block-xcom-connect-form,
	.wp-block-xcom-o500-form,
	.wp-block-xcom-job-form,
	.wp-block-xcom-ntv-form,
	.wp-block-xcom-speedtest,
	.wp-block-xcom-check-ip,
	.wp-block-xcom-site-map,
	.wp-block-xcom-requisites,
	.wp-block-xcom-payments,
	.wp-block-xcom-news-list,
	.wp-block-xcom-balance,
	.wp-block-xcom-login
) {
	margin-top: 0;
	margin-bottom: 0;
	padding-block-start: var(--section-pad-y);
	padding-block-end: 0;
	box-sizing: border-box;
}

.entry-content > :is(
	.section,
	.faq,
	.xcom-banner-block,
	.xcom-tariffs-wrap,
	.xcom-connect-form-wrap,
	.xcom-o500-form-wrap,
	.xcom-job-form-wrap,
	.xcom-ntv-form-wrap,
	.xcom-care-block-wrap,
	.xcom-care-block,
	.xcom-block,
	.xcom-speedtest-wrap,
	.xcom-speedtest,
	.xcom-check-ip-wrap,
	.xcom-check-ip,
	.xcom-site-map-wrap,
	.xcom-site-map,
	.xcom-requisites,
	.xcom-balance-wrap,
	.xcom-balance,
	.xcom-login-wrap,
	.xcom-login,
	.xcom-payments-wrap,
	.xcom-payments,
	.xcom-news-list,
	.wp-block-xcom-care-block,
	.wp-block-xcom-faq,
	.wp-block-xcom-cameras,
	.wp-block-xcom-banner,
	.wp-block-xcom-tariffs,
	.wp-block-xcom-connect-form,
	.wp-block-xcom-o500-form,
	.wp-block-xcom-job-form,
	.wp-block-xcom-ntv-form,
	.wp-block-xcom-speedtest,
	.wp-block-xcom-check-ip,
	.wp-block-xcom-site-map,
	.wp-block-xcom-requisites,
	.wp-block-xcom-payments,
	.wp-block-xcom-news-list,
	.wp-block-xcom-balance,
	.wp-block-xcom-login
):first-child,
.page-content > :is(
	.section,
	.faq,
	.xcom-banner-block,
	.xcom-tariffs-wrap,
	.xcom-connect-form-wrap,
	.xcom-o500-form-wrap,
	.xcom-job-form-wrap,
	.xcom-ntv-form-wrap,
	.xcom-care-block-wrap,
	.xcom-care-block,
	.xcom-block,
	.xcom-speedtest-wrap,
	.xcom-speedtest,
	.xcom-check-ip-wrap,
	.xcom-check-ip,
	.xcom-site-map-wrap,
	.xcom-site-map,
	.xcom-requisites,
	.xcom-balance-wrap,
	.xcom-balance,
	.xcom-login-wrap,
	.xcom-login,
	.xcom-payments-wrap,
	.xcom-payments,
	.xcom-news-list,
	.wp-block-xcom-care-block,
	.wp-block-xcom-faq,
	.wp-block-xcom-cameras,
	.wp-block-xcom-banner,
	.wp-block-xcom-tariffs,
	.wp-block-xcom-connect-form,
	.wp-block-xcom-o500-form,
	.wp-block-xcom-job-form,
	.wp-block-xcom-ntv-form,
	.wp-block-xcom-speedtest,
	.wp-block-xcom-check-ip,
	.wp-block-xcom-site-map,
	.wp-block-xcom-requisites,
	.wp-block-xcom-payments,
	.wp-block-xcom-news-list,
	.wp-block-xcom-balance,
	.wp-block-xcom-login
):first-child {
	padding-block-start: 0;
}

/* Last page blocks — no extra margin/padding before content-grid bottom / footer */
.entry-content > :last-of-type,
.page-content > :last-of-type {
	margin-bottom: 0 !important;
	padding-block-end: 0 !important;
}

.entry-content > .xcom-tariffs-wrap:last-of-type .xcom-tariffs-container,
.page-content > .xcom-tariffs-wrap:last-of-type .xcom-tariffs-container {
	padding-bottom: 0;
}

.xcom-tariffs-tab-pane > :last-of-type,
.xcom-tariffs-tab-pane > :last-child {
	margin-bottom: 0 !important;
}

.entry-content > .xcom-speedtest-wrap:last-of-type,
.entry-content > .xcom-speedtest:last-of-type,
.entry-content > .xcom-check-ip-wrap:last-of-type,
.entry-content > .xcom-check-ip:last-of-type,
.entry-content > .xcom-site-map-wrap:last-of-type,
.entry-content > .xcom-site-map:last-of-type,
.entry-content > .xcom-requisites:last-of-type,
.entry-content > .xcom-balance-wrap:last-of-type,
.entry-content > .xcom-login-wrap:last-of-type,
.entry-content > .xcom-connect-form-wrap:last-of-type,
.entry-content > .xcom-o500-form-wrap:last-of-type,
.entry-content > .xcom-job-form-wrap:last-of-type,
.entry-content > .xcom-ntv-form-wrap:last-of-type,
.page-content > .xcom-speedtest-wrap:last-of-type,
.page-content > .xcom-speedtest:last-of-type,
.page-content > .xcom-check-ip-wrap:last-of-type,
.page-content > .xcom-check-ip:last-of-type,
.page-content > .xcom-site-map-wrap:last-of-type,
.page-content > .xcom-site-map:last-of-type,
.page-content > .xcom-requisites:last-of-type,
.page-content > .xcom-balance-wrap:last-of-type,
.page-content > .xcom-login-wrap:last-of-type,
.page-content > .xcom-connect-form-wrap:last-of-type,
.page-content > .xcom-o500-form-wrap:last-of-type,
.page-content > .xcom-job-form-wrap:last-of-type,
.page-content > .xcom-ntv-form-wrap:last-of-type {
	margin-bottom: 0 !important;
}

.content-grid--archive {
	display: grid;
	gap: 24px;
}

.content-grid--archive > article {
	padding: 24px 28px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

/* Single news / post detail — page stays --bg, article is the card */
body.single {
	background: var(--bg);
}

.content-grid--single {
	max-width: min(800px, 100%);
}

/* article. — not body.single-post (WP body_class) */
article.single-post.card {
	padding: 0;
	margin-bottom: 0;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

article.single-post .post-thumbnail {
	margin: 0;
	border-radius: 0;
}

article.single-post .post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0;
}

article.single-post .entry-header {
	margin-bottom: 0;
	padding: clamp(20px, 4vw, 32px) clamp(20px, 4vw, 32px) 0;
}

.single-post__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.single-post__category {
	display: inline-flex;
	align-items: center;
	padding: 0.3em 0.85em;
	border-radius: 999px;
	background: var(--primary-soft);
	border: 1px solid var(--primary-border);
	color: var(--primary-dark);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition:
		background 0.2s var(--ease),
		color 0.2s var(--ease);
}

.single-post__category:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.single-post__category--notification {
	background: rgba(255, 101, 27, 0.1);
	border-color: rgba(255, 101, 27, 0.35);
	color: var(--accent);
}

.single-post__category--notification:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

article.single-post .entry-title {
	margin: 0;
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	line-height: 1.25;
	color: var(--text);
}

article.single-post .entry-meta {
	margin-top: 12px;
	font-size: 0.875rem;
	color: var(--text-muted);
}

article.single-post .entry-meta a {
	color: inherit;
	font-weight: 500;
}

.single-post__divider {
	margin: 20px clamp(20px, 4vw, 32px);
	border: 0;
	height: 1px;
	background: var(--border);
}

article.single-post .entry-content {
	margin: 0;
	padding: 0 clamp(20px, 4vw, 32px) clamp(28px, 4vw, 40px);
	font-size: 1rem;
	line-height: 1.7;
}

article.single-post .entry-footer {
	margin: 0;
	padding: 0 clamp(20px, 4vw, 32px) clamp(24px, 4vw, 32px);
	border-top: 1px solid var(--border);
	padding-top: 20px;
}

article.single-post .tags-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

article.single-post .tags-links__label {
	margin-right: 4px;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

article.single-post .tags-links a {
	display: inline-flex;
	align-items: center;
	padding: 0.3em 0.8em;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--bg);
	color: var(--text-muted);
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	transition:
		border-color 0.2s,
		color 0.2s,
		background 0.2s;
}

article.single-post .tags-links a:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: var(--primary-soft);
}

.entry-header {
	margin-bottom: var(--section-pad-y);
}

.entry-title,
.page-title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	line-height: 1.2;
}

.entry-title a {
	color: inherit;
	transition: color 0.2s;
}

.entry-title a:hover {
	color: var(--primary-dark);
}

.entry-meta,
.byline,
.posted-on,
.cat-links,
.tags-links {
	color: var(--text-muted);
	font-size: 14px;
}

.entry-content,
.page-content,
.entry-summary {
	line-height: 1.7;
}

/*
 * Full-width FAQ: внешний wrapper без padding, сетка — только .section.faq > .container.
 * Classes from body (xcom_content_layout_flags) — no :has() required.
 */
body.has-faq .content-grid {
	max-width: none;
	width: 100%;
	padding: 0;
}

body.has-faq-first .entry-content,
body.has-faq-first .page-content {
	margin-top: 0;
}

body.has-faq .entry-content,
body.has-faq .page-content {
	max-width: none;
	width: 100%;
}

.entry-content > .faq,
.entry-content > .section.faq,
.page-content > .faq,
.page-content > .section.faq {
	width: 100%;
	max-width: none;
	margin-inline: 0;
	margin-top: 0;
}

/* Standalone care block after FAQ */
body.has-faq .entry-content > .xcom-care-block-wrap,
body.has-faq .page-content > .xcom-care-block-wrap {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
	box-sizing: border-box;
}

/* FAQ pages zero content-grid padding — restore top pad on the first block */
body.has-faq .entry-content > :is(.faq, .section.faq, .xcom-care-block-wrap, .xcom-care-block):first-child,
body.has-faq .page-content > :is(.faq, .section.faq, .xcom-care-block-wrap, .xcom-care-block):first-child {
	padding-block-start: 0 !important;
}

/* FAQ pages bottom padding before footer (only on the last block at the end of page) */
body.has-faq .entry-content > :is(.faq, .section.faq, .xcom-care-block-wrap, .xcom-care-block):last-child,
body.has-faq .page-content > :is(.faq, .section.faq, .xcom-care-block-wrap, .xcom-care-block):last-child {
	padding-block-end: var(--section-pad-y) !important;
}
.entry-content > .wp-block-xcom-care-block,
body.has-faq .entry-content .wp-block-xcom-care-block {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
	box-sizing: border-box;
}

/* Standalone care block on regular pages */
body:not(.has-faq) .entry-content > .xcom-care-block-wrap,
body:not(.has-faq) .entry-content > .xcom-care-block,
body:not(.has-faq) .page-content > .xcom-care-block-wrap,
body:not(.has-faq) .page-content > .xcom-care-block {
	width: 100%;
	max-width: 100%;
	margin-inline: 0;
	box-sizing: border-box;
}

.entry-content > .xcom-care-block-wrap > .xcom-care-block,
.entry-content > .xcom-care-block,
.faq__intro .xcom-care-block {
	max-width: 100%;
}

.page-header + .content-grid {
	padding-top: 0;
}

.page-header + .content-grid .entry-content > :first-child,
.page-header + .content-grid .page-content > :first-child,
.page-header + .content-grid .entry-content > :is(.faq, .section.faq, .xcom-care-block-wrap, .xcom-care-block):first-child,
.page-header + .content-grid .page-content > :is(.faq, .section.faq, .xcom-care-block-wrap, .xcom-care-block):first-child {
	margin-top: 0 !important;
	padding-block-start: 0 !important;
}

.page-header + .content-grid .entry-content > .xcom-tariffs-wrap:first-child .xcom-tariffs-container,
.page-header + .content-grid .page-content > .xcom-tariffs-wrap:first-child .xcom-tariffs-container {
	padding-top: 0;
}

body.has-faq .page-header + .content-grid {
	margin-top: 0;
	padding: 0;
}

.entry-content > *:first-child,
.page-content > *:first-child {
	margin-top: 0;
}

.page-links {
	clear: both;
	margin: 1.5em 0;
}

.post-thumbnail {
	display: block;
	margin: 0 0 1.5em;
	border-radius: var(--radius);
	overflow: hidden;
}

.post-thumbnail img {
	display: block;
	width: 100%;
	height: auto;
}

.entry-footer,
.edit-link {
	margin-top: 1.5em;
	font-size: 14px;
}

.updated:not(.published) {
	display: none;
}

.no-results {
	padding-block: var(--section-pad-y);
}


/* _footer.css */
/* Footer */
.footer {
	flex-shrink: 0;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	margin-top: auto;
	background: #fff;
	box-shadow: 0 -1px 0 var(--border);
	padding: 48px 0 28px;
	overflow-x: clip;
}

.footer__grid {
	display: grid;
	gap: 28px;
	align-items: start;
	justify-items: center;
	text-align: center;
}

.footer__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 100%;
	min-width: 0;
	text-align: center;
}

.footer__logo {
	display: inline-flex;
	align-items: center;
	margin-bottom: 14px;
}

.footer__logo img {
	height: 28px;
	width: auto;
	max-width: 100%;
}

.footer__tagline {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
	color: var(--text-muted);
}

.footer__support {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	color: #5ec8ef;
}

.footer__middle {
	display: grid;
	gap: 28px;
	min-width: 0;
	width: 100%;
	justify-items: center;
}

.footer__col {
	min-width: 0;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.footer__title {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8a93a3;
}

.footer__title--spaced {
	margin-top: 24px;
}

.footer__nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.footer__nav a {
	display: block;
	padding: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--text);
	text-decoration: none;
	transition: color 0.2s var(--ease);
	text-align: center;
}

.footer__nav a:hover {
	color: var(--primary-dark);
}

.footer__text {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--text);
	overflow-wrap: anywhere;
}

.footer__text a {
	color: inherit;
	transition: color 0.2s;
}

.footer__text a:hover {
	color: var(--primary-dark);
}

.footer .xcom-map-btns {
	margin-top: 10px;
	padding-left: 0;
}

.footer__hours {
	margin: 0 auto;
	padding: 0;
	list-style: none;
	width: 100%;
	max-width: 280px;
	text-align: left;
}

.footer__hours li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(15, 20, 25, 0.08);
	font-size: 14px;
}

.footer__hours li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.footer__hours li:first-child {
	padding-top: 0;
}

.footer__hours li span:first-child {
	color: var(--text-muted);
	flex-shrink: 0;
}

.footer__hours li span:last-child {
	font-weight: 700;
	color: var(--text);
	text-align: right;
}

.footer__care {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 0;
	max-width: 100%;
	overflow: visible;
}

.footer__soc {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 14px;
	overflow: visible;
}

.footer__soc-link--has-status {
	position: relative;
}

.footer__phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
	max-width: 100%;
	color: var(--primary);
	font-size: clamp(16px, 4.6vw, 20px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	transition: opacity 0.2s;
}

.footer__phone:hover {
	opacity: 0.85;
}

.footer__phone svg,
.footer__phone .bi {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	font-size: 22px;
	line-height: 1;
}

.footer__phone span {
	overflow-wrap: anywhere;
}

.footer__mail {
	margin: 0;
}

.footer__mail a {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-muted);
	overflow-wrap: anywhere;
	transition: color 0.2s;
}

.footer__mail a:hover {
	color: var(--primary-dark);
}

.footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px 20px;
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid rgba(15, 20, 25, 0.08);
	text-align: center;
}

.footer__copy {
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	color: #9aa3b2;
	overflow-wrap: anywhere;
}

.footer__bottom-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 16px;
}

.footer__bottom-links a {
	font-size: 13px;
	font-weight: 500;
	color: #9aa3b2;
	transition: color 0.2s;
}

.footer__bottom-links a:hover {
	color: var(--primary-dark);
}

/* Tablet / phone */
@media (max-width: 1023px) {
	.footer .xcom-map-btns__row {
		justify-content: center;
	}
}

/* iOS 14.0–14.4: flex gap missing — margin fallback for critical footer rows. */
@supports not (gap: 1px) {
	.footer__soc > * + * {
		margin-left: 8px;
	}

	.footer__phone > * + * {
		margin-left: 8px;
	}

	.footer__bottom > * + * {
		margin-top: 10px;
	}

	.footer__bottom-links > * + * {
		margin-left: 16px;
	}

	.footer__hours li > * + * {
		margin-left: 12px;
	}
}


/* _faq.css */
/* FAQ section — vertical rhythm: layout/_content.css */

.faq__layout {
	display: grid;
	gap: var(--section-pad-y, 52px);
	align-items: start;
	text-align: left;
}

.faq__intro {
	overflow: visible;
}

.faq__intro .text-desc {
	margin-bottom: 24px;
}

.faq__contacts-link {
	margin-top: 12px;
}

.faq__contacts-link .btn {
	width: 100%;
	justify-content: center;
	text-align: center;
	background: #fff;
}

.faq__contacts-link .btn:hover {
	background: #fff;
}

/* WA list opens upward in FAQ so it stays inside the care card (no overlap with FAQ items). */
.faq .xcom-wa-dropdown::after {
	top: auto;
	bottom: 100%;
}

.faq .xcom-wa-dropdown__menu {
	top: auto;
	bottom: calc(100% + 4px);
	transform: translateY(-4px);
	transform-origin: bottom left;
}

.faq .xcom-wa-dropdown:hover .xcom-wa-dropdown__menu,
.faq .xcom-wa-dropdown:focus-within .xcom-wa-dropdown__menu {
	transform: translateY(0);
}

.faq__accordion {
	color: var(--text-muted);
	line-height: 1.6;
}

.faq-item--hidden {
	display: none !important;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	min-width: 0;
}

.faq-item {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border-left: 3px solid transparent;
	transition:
		border-color 0.2s var(--ease),
		border-left-color 0.2s var(--ease);
	contain: layout style;
	scroll-margin-top: calc(var(--header-h) + 16px);
}

.faq-item.is-open {
	border-color: rgba(0, 174, 239, 0.2);
	border-left-color: var(--primary);
	box-shadow: var(--shadow-md);
}

.faq-item__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 24px;
	border: none;
	background: transparent;
	text-align: left;
	font-family: var(--font-body);
	cursor: pointer;
}

.faq-item__meta {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	min-width: 0;
}

.faq-item__num {
	flex-shrink: 0;
	width: 36px;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 800;
	color: var(--primary);
	line-height: 1.4;
	opacity: 0.7;
	transition: opacity 0.3s;
}

.faq-item.is-open .faq-item__num {
	opacity: 1;
}

.faq-item__text {
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--text);
	line-height: 1.45;
}

.faq-item.is-open .faq-item__text {
	color: var(--primary);
}

.faq-item__icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	position: relative;
	border-radius: 50%;
	background: var(--bg);
	border: 1px solid var(--border);
	transition:
		transform 0.35s var(--ease),
		background 0.3s,
		border-color 0.3s;
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: var(--primary);
	border-radius: 1px;
	transform: translate(-50%, -50%);
	transition: background 0.3s;
}

.faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon {
	background: var(--primary);
	border-color: var(--primary);
	transform: rotate(180deg);
}

.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after {
	background: #fff;
}

.faq-item.is-open .faq-item__icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.faq-item__answer {
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;
	transition: grid-template-rows 0.36s var(--ease);
}

.faq-item.is-open .faq-item__answer {
	grid-template-rows: 1fr;
}

.faq-item:not(.is-open):not(.is-closing) .faq-item__answer-inner {
	content-visibility: hidden;
}

.faq-item__answer-inner {
	min-height: 0;
	padding: 0 24px 0 76px;
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.7;
}

.faq-item.is-open .faq-item__answer-inner {
	padding-bottom: 22px;
	content-visibility: visible;
}

.faq-item__answer ol {
	padding-left: 20px;
	list-style: decimal;
	margin-bottom: 12px;
}

.faq-item__answer ul {
	padding-left: 20px;
	list-style: disc;
	margin-bottom: 12px;
}

.faq-item__answer ul ul {
	list-style: circle;
	margin-top: 6px;
	margin-bottom: 0;
}

.faq-item__answer li {
	margin-bottom: 6px;
}

.connection-conditions__title {
	font-weight: 700;
	color: var(--text);
	margin-top: 16px;
	margin-bottom: 8px;
	font-size: 15px;
}

.faq-item__answer a {
	color: var(--primary);
	font-weight: 600;
}

.faq-item__answer a:hover {
	color: var(--primary-dark);
	text-decoration: underline;
}


/* _care-block.css */
/* Care contact block */
.xcom-care-block {
	position: relative;
	overflow: visible;
	width: 100%;
	padding: 18px 20px;
}

.xcom-care-block__header {
	margin-bottom: 12px;
}

.xcom-care-block__head {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.xcom-care-block__label {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--text);
}

.xcom-care-block__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--text);
}

.xcom-care-block__text {
	margin: 6px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-muted);
}

.xcom-care-block__direct {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.xcom-care-block__direct + .xcom-care-block__channels,
.xcom-care-block__header + .xcom-care-block__channels,
.xcom-care-block__channels + .xcom-care-block__schedule,
.xcom-care-block__direct + .xcom-care-block__schedule {
	margin-top: 14px;
}

.xcom-care-block__schedule {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(15, 20, 25, 0.06);
}

.xcom-care-block__schedule-group + .xcom-care-block__schedule-group {
	padding-top: 14px;
	border-top: 1px solid rgba(15, 20, 25, 0.06);
}

.xcom-care-block__schedule-title {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--text);
}

.xcom-care-block__schedule-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.entry-content .xcom-care-block__schedule-list,
.page-content .xcom-care-block__schedule-list,
.editor-styles-wrapper .xcom-care-block__schedule-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.xcom-care-block__schedule-list li {
	padding: 4px 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--text-muted);
}

.xcom-care-block__schedule-list li:first-child {
	padding-top: 0;
}

.xcom-care-block__schedule-list li:last-child {
	padding-bottom: 0;
}

.xcom-care-link {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	max-width: 100%;
	padding: 2px 0;
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
	color: var(--primary);
	text-decoration: none;
	transition: opacity 0.2s;
}

.xcom-care-link:hover {
	opacity: 0.82;
}

.xcom-care-block__direct .xcom-care-link {
	width: auto;
	max-width: 100%;
}

.xcom-care-block__direct .xcom-care-link__text {
	display: block;
	flex: 0 1 auto;
}

.xcom-care-link__text {
	overflow-wrap: anywhere;
}

.xcom-care-link--mail {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--primary);
}

.xcom-care-link--address {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--primary);
}

.xcom-care-address {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	min-width: 0;
}

.xcom-care-link--address:not(a) {
	cursor: default;
}

.xcom-care-link--address .xcom-care-link__text,
.xcom-care-link--address .xcom-care-link__label {
	font-weight: 600;
	color: inherit;
}

.xcom-map-btns {
	width: 100%;
	min-width: 0;
	padding-left: 44px;
	box-sizing: border-box;
}

.xcom-map-btns__row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
}

.xcom-map-btns__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0.4em 0.85em;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--text);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	border-bottom: 1px solid var(--border);
	box-sizing: border-box;
	transition:
		border-color 0.2s var(--ease, ease),
		color 0.2s var(--ease, ease);
}

.xcom-map-btns__btn-label {
	display: block;
}

.xcom-map-btns__btn:hover {
	border-color: var(--border-hover);
	color: var(--primary-dark);
	border-bottom-color: var(--border-hover);
}

.page-content .xcom-map-btns__btn,
.entry-content .xcom-map-btns__btn,
.page-content .xcom-map-btns__btn:hover,
.entry-content .xcom-map-btns__btn:hover {
	text-decoration: none;
}

@media (max-width: 480px) {
	.xcom-map-btns {
		padding-left: 0;
	}
}

.xcom-care-block__channels {
	padding-top: 14px;
	border-top: 1px solid var(--border-subtle);
}

.xcom-care-block__channels-row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 128px), 1fr));
	gap: 10px;
	align-items: stretch;
}

.xcom-care-block--channels-text .xcom-care-block__channels,
.xcom-care-block__channels--text {
	padding-top: 16px;
}

.xcom-care-block--channels-text .xcom-care-block__channels-row,
.xcom-care-block__channels--text .xcom-care-block__channels-row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 128px), 1fr));
	gap: 10px;
	align-items: stretch;
}

.xcom-care-block--channels-text .xcom-care-block__channels-row > .xcom-care-chip,
.xcom-care-block__channels--text .xcom-care-block__channels-row > .xcom-care-chip,
.xcom-care-block--channels-text .xcom-care-block__channels-row > .xcom-wa-dropdown,
.xcom-care-block__channels--text .xcom-care-block__channels-row > .xcom-wa-dropdown {
	width: 100%;
	min-width: 0;
	height: 100%;
}

.xcom-care-chip {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 128px;
	aspect-ratio: 1 / 1;
	padding: 14px 10px;
	box-sizing: border-box;
	font-family: var(--font-heading);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
	color: var(--text);
	text-decoration: none;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: none;
	transition:
		border-color 0.2s,
		box-shadow 0.2s,
		transform 0.2s,
		color 0.2s;
}

button.xcom-care-chip {
	appearance: none;
	font-family: var(--font-heading);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.25;
	cursor: pointer;
	text-align: center;
	padding: 14px 10px;
}

.xcom-care-chip:hover,
.xcom-wa-dropdown:hover > button.xcom-care-chip.xcom-wa-dropdown__trigger,
.xcom-wa-dropdown:focus-within > button.xcom-care-chip.xcom-wa-dropdown__trigger {
	color: var(--primary-dark);
	border-color: var(--border-hover);
	box-shadow: var(--shadow-sm, 0 4px 12px rgba(15, 20, 25, 0.06));
}

.xcom-care-chip__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	min-width: 0;
	width: 100%;
}

.xcom-care-chip__label {
	display: block;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	overflow-wrap: anywhere;
}

.xcom-care-chip__sub {
	display: block;
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--text-muted);
	overflow-wrap: anywhere;
}

.xcom-care-chip__status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-shrink: 0;
	margin-top: 2px;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	text-transform: lowercase;
	letter-spacing: 0.01em;
}

.xcom-care-block--channels-text .xcom-wa-dropdown,
.xcom-care-block__channels--text .xcom-wa-dropdown {
	display: block;
	width: 100%;
	height: 100%;
}

.xcom-care-block--channels-text .xcom-wa-dropdown > .xcom-care-chip,
.xcom-care-block__channels--text .xcom-wa-dropdown > .xcom-care-chip {
	width: 100%;
	height: 100%;
}

.xcom-care-block--channels-icons .xcom-care-block__channels-row,
.xcom-care-block__channels--icons .xcom-care-block__channels-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

@media (max-width: 480px) {
	.xcom-care-block__channels-row,
	.xcom-care-block--channels-text .xcom-care-block__channels-row,
	.xcom-care-block__channels--text .xcom-care-block__channels-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.xcom-care-chip {
		min-height: 120px;
	}
}

.xcom-care-icon {
	position: relative;
	text-decoration: none;
	cursor: pointer;
}

button.xcom-care-icon {
	appearance: none;
	font: inherit;
	padding: 0;
}

.xcom-wa-dropdown:hover .xcom-wa-dropdown__trigger,
.xcom-wa-dropdown:focus-within .xcom-wa-dropdown__trigger {
	color: var(--icon-color-hover);
	background: var(--icon-bg-hover);
}

.xcom-wa-dropdown {
	position: relative;
}

.xcom-wa-dropdown::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 14px;
	z-index: 29;
}

.xcom-wa-dropdown__menu {
	position: absolute;
	left: 0;
	top: calc(100% + 4px);
	z-index: 30;
	min-width: 240px;
	padding: 6px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid rgba(15, 20, 25, 0.08);
	box-shadow:
		0 12px 32px rgba(15, 20, 25, 0.1),
		0 2px 6px rgba(15, 20, 25, 0.04);
	text-align: left;
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transform-origin: top left;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease,
		visibility 0.2s;
	pointer-events: none;
}

.xcom-wa-dropdown:hover .xcom-wa-dropdown__menu,
.xcom-wa-dropdown:focus-within .xcom-wa-dropdown__menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.xcom-wa-dropdown--up::after {
	top: auto;
	bottom: 100%;
}

.xcom-wa-dropdown--up .xcom-wa-dropdown__menu {
	top: auto;
	bottom: calc(100% + 4px);
	transform: translateY(-4px);
	transform-origin: bottom left;
}

.xcom-wa-dropdown--up:hover .xcom-wa-dropdown__menu,
.xcom-wa-dropdown--up:focus-within .xcom-wa-dropdown__menu {
	transform: translateY(0);
}

.footer__soc .xcom-wa-dropdown--up .xcom-wa-dropdown__menu {
	left: 50%;
	right: auto;
	min-width: 260px;
	transform: translateX(-50%) translateY(4px);
	transform-origin: bottom center;
}

.footer__soc .xcom-wa-dropdown--up:hover .xcom-wa-dropdown__menu,
.footer__soc .xcom-wa-dropdown--up:focus-within .xcom-wa-dropdown__menu {
	transform: translateX(-50%) translateY(0);
}

.footer__soc .xcom-wa-dropdown--up::after {
	left: 50%;
	right: auto;
	width: 40px;
	margin-left: -20px;
}

.xcom-wa-dropdown__list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.entry-content .xcom-wa-dropdown__list,
.page-content .xcom-wa-dropdown__list {
	margin: 0;
	padding-left: 0;
	list-style: none;
}

.xcom-wa-dropdown__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 10px;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	text-align: left;
	color: var(--text);
	transition:
		background 0.15s,
		color 0.15s;
}

.xcom-wa-dropdown__item--no-status {
	grid-template-columns: minmax(0, 1fr);
}

.xcom-wa-dropdown__item:hover {
	background: rgba(0, 174, 239, 0.08);
	color: var(--primary);
}

.xcom-wa-dropdown__item-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	min-width: 0;
	text-align: left;
}

.xcom-wa-dropdown__item-label {
	display: block;
	width: 100%;
	overflow-wrap: anywhere;
	text-align: left;
}

.xcom-wa-dropdown__item-state {
	display: block;
	width: 100%;
	font-size: 11px;
	font-weight: 700;
	text-align: left;
	text-transform: lowercase;
	color: var(--text-muted);
}

.xcom-wa-dropdown__item-state--online {
	color: var(--status-online);
}

.xcom-wa-dropdown__item-state--offline {
	color: var(--status-offline);
}

.footer__care .xcom-wa-dropdown__menu,
.footer__care .xcom-wa-dropdown__item,
.footer__care .xcom-wa-dropdown__item-label,
.footer__care .xcom-wa-dropdown__item-state {
	text-align: left;
}

.xcom-wa-dropdown__item-dot {
	justify-self: center;
	align-self: center;
}

@media (max-width: 640px) {
	.xcom-care-block {
		padding: 16px 18px;
		overflow: visible;
	}

	.xcom-care-block__channels-row {
		overflow: visible;
	}

	/* Open to the right of the icon — right:0 was clipping off the left edge of the screen. */
	.xcom-wa-dropdown__menu {
		left: 0;
		right: auto;
		min-width: min(260px, calc(100vw - 32px));
		max-width: calc(100vw - 32px);
		width: max-content;
		box-sizing: border-box;
		transform-origin: top left;
	}

	.xcom-wa-dropdown--up .xcom-wa-dropdown__menu {
		transform-origin: bottom left;
	}

	.faq .xcom-wa-dropdown__menu {
		transform: translateY(-4px);
		transform-origin: bottom left;
	}

	.faq .xcom-wa-dropdown:hover .xcom-wa-dropdown__menu,
	.faq .xcom-wa-dropdown:focus-within .xcom-wa-dropdown__menu {
		transform: translateY(0);
	}
}


/* _requisites.css */
/* Requisites + licenses — one card */

.xcom-requisites {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	margin: 0;
}

.xcom-requisites__title,
.entry-content .xcom-requisites__title,
.page-content .xcom-requisites__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--text);
}

.xcom-requisites__card {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 24px;
	box-sizing: border-box;
	background: var(--surface, #ffffff);
	border: 1px solid var(--border, #e2e8f0);
	border-radius: var(--radius, 12px);
	box-shadow: var(--shadow-sm, 0 1px 3px rgba(15, 23, 42, 0.04));
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.xcom-requisites__toolbar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 16px;
}

.xcom-requisites__copy-all {
	min-width: 0;
	padding: 8px 14px;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.xcom-requisites__copy-all svg {
	flex-shrink: 0;
}

.xcom-requisites__copy-all.is-copied {
	background: var(--primary-soft, rgba(0, 174, 239, 0.08));
	border-color: var(--primary-border, rgba(0, 174, 239, 0.35));
	color: var(--primary, #00aeef);
}

.xcom-requisites__list {
	list-style: disc;
	margin: 0;
	padding: 0 0 0 1.25em;
}

.xcom-requisites__list li {
	padding: 8px 0;
	border-bottom: 1px solid var(--border);
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--text);
	word-break: break-word;
	cursor: default;
	background: none;
	border-radius: 0;
}

.xcom-requisites__item-text {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: 100%;
	cursor: copy;
	color: inherit;
	transition: color 0.15s ease;
}

.xcom-requisites__item-label {
	min-width: 0;
}

.xcom-requisites__item-icon {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	opacity: 0;
	transform: translateY(1px);
	pointer-events: none;
	transition: opacity 0.15s ease;
}

.xcom-requisites__item-text:hover,
.xcom-requisites__item-text:focus-visible {
	color: var(--primary, #00aeef);
	cursor: copy;
	outline: none;
}

.xcom-requisites__item-text:hover .xcom-requisites__item-icon,
.xcom-requisites__item-text:focus-visible .xcom-requisites__item-icon {
	opacity: 1;
}

@media (hover: none) {
	.xcom-requisites__item-icon {
		display: none;
	}
}

.xcom-requisites__list li.is-copied,
.xcom-requisites__item-text.is-copied {
	color: var(--text);
}

.xcom-requisites__list li:first-child {
	padding-top: 0;
}

.xcom-requisites__list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.xcom-requisites__licenses-block {
	margin: 0;
}

.xcom-requisites__licenses-block--divided {
	margin-top: clamp(18px, 3vw, 26px);
	padding-top: clamp(18px, 3vw, 26px);
	border-top: 1px solid var(--border);
}

.xcom-requisites__licenses-title,
.entry-content .xcom-requisites__licenses-title,
.page-content .xcom-requisites__licenses-title,
.editor-styles-wrapper .xcom-requisites__licenses-title {
	margin: 0 0 var(--section-pad-y, 52px);
	font-family: var(--font-heading);
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--text);
}

.xcom-requisites__licenses {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(12px, 2.5vw, 20px);
	align-items: stretch;
}

.xcom-requisites__license {
	margin: 0;
	min-width: 0;
}

.xcom-requisites__license-link {
	display: block;
	height: 100%;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--surface);
	transition:
		transform 0.2s var(--ease),
		box-shadow 0.2s var(--ease);
}

.xcom-requisites__license-link:hover {
	box-shadow: var(--shadow-sm);
}

.xcom-requisites__license-img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: middle;
}

@media (max-width: 767px) {
	.xcom-requisites__licenses {
		grid-template-columns: 1fr;
	}
}


/* _check-ip.css */
/* Check IP — square cards like payment methods */

.xcom-check-ip,
.xcom-check-ip-wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	margin: 0;
	overflow-x: clip;
}

.xcom-check-ip__title,
.entry-content .xcom-check-ip__title,
.page-content .xcom-check-ip__title,
.editor-styles-wrapper .xcom-check-ip__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--text);
}

.xcom-check-ip__hint {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--text-muted);
}

.xcom-check-ip__grid,
.entry-content .xcom-check-ip__grid,
.page-content .xcom-check-ip__grid,
.editor-styles-wrapper .xcom-check-ip__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-left: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.xcom-check-ip__item {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	min-width: 0;
	min-height: 160px;
	padding: 20px;
	box-sizing: border-box;
	text-align: left;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: none;
	transition:
		border-color 0.2s var(--ease, ease),
		box-shadow 0.2s var(--ease, ease),
		transform 0.2s var(--ease, ease);
}

@media (hover: hover) and (pointer: fine) {
	.xcom-check-ip__item:hover {
		border-color: rgba(0, 174, 239, 0.35);
		box-shadow: var(--shadow-sm, 0 4px 14px rgba(15, 20, 25, 0.06));
	}
}

.xcom-check-ip__main {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 14px;
	width: 100%;
	min-width: 0;
	flex: 1 1 auto;
}

.xcom-check-ip__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--icon-bg, rgba(0, 174, 239, 0.1));
	color: var(--primary);
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1;
}

.xcom-check-ip__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
	flex: 1 1 auto;
}

.xcom-check-ip__label {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.xcom-check-ip__value,
.entry-content .xcom-check-ip__value,
.page-content .xcom-check-ip__value,
.editor-styles-wrapper .xcom-check-ip__value {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--text);
	overflow-wrap: anywhere;
	word-break: break-all;
	hyphens: none;
	min-width: 0;
}

.xcom-check-ip__info,
.entry-content .xcom-check-ip__info,
.page-content .xcom-check-ip__info,
.editor-styles-wrapper .xcom-check-ip__info {
	position: relative;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin: 0;
	border-radius: 50%;
	border-bottom: none !important;
	background: var(--icon-bg, rgba(0, 174, 239, 0.1));
	color: var(--primary, #00aeef);
	text-decoration: none !important;
	text-transform: none;
	letter-spacing: 0;
	box-shadow: none;
	overflow: visible;
	transition:
		background-color 0.15s ease,
		color 0.15s ease,
		transform 0.15s ease;
}

.xcom-check-ip__info svg {
	display: block;
	width: 12px;
	height: 12px;
	color: inherit;
	stroke: currentColor;
}

.xcom-check-ip__info[hidden] {
	display: none !important;
}

@media (hover: hover) and (pointer: fine) {
	.xcom-check-ip__info:hover,
	.entry-content .xcom-check-ip__info:hover,
	.page-content .xcom-check-ip__info:hover,
	.editor-styles-wrapper .xcom-check-ip__info:hover {
		background: var(--primary, #00aeef);
		color: #fff;
		transform: scale(1.08);
		border-bottom: none !important;
		text-decoration: none !important;
	}
}

.xcom-check-ip__info:focus-visible {
	outline: 2px solid var(--primary, #00aeef);
	outline-offset: 2px;
	color: #fff;
	background: var(--primary, #00aeef);
}

.xcom-check-ip__item,
.xcom-check-ip__label {
	overflow: visible;
}

.xcom-check-ip__item[data-state='loading'] .xcom-check-ip__value,
.xcom-check-ip__item[data-state='missing'] .xcom-check-ip__value,
.xcom-check-ip__item[data-state='error'] .xcom-check-ip__value,
.entry-content .xcom-check-ip__item[data-state='loading'] .xcom-check-ip__value,
.entry-content .xcom-check-ip__item[data-state='missing'] .xcom-check-ip__value,
.entry-content .xcom-check-ip__item[data-state='error'] .xcom-check-ip__value,
.page-content .xcom-check-ip__item[data-state='loading'] .xcom-check-ip__value,
.page-content .xcom-check-ip__item[data-state='missing'] .xcom-check-ip__value,
.page-content .xcom-check-ip__item[data-state='error'] .xcom-check-ip__value {
	color: var(--text-muted);
	font-weight: 500;
	word-break: normal;
}

.xcom-check-ip__item[data-state='missing'] .xcom-check-ip__copy,
.xcom-check-ip__item[data-state='loading'] .xcom-check-ip__copy,
.xcom-check-ip__item[data-state='error'] .xcom-check-ip__copy,
.xcom-check-ip__item[data-state='missing'] .xcom-check-ip__info,
.xcom-check-ip__item[data-state='loading'] .xcom-check-ip__info,
.xcom-check-ip__item[data-state='error'] .xcom-check-ip__info {
	display: none;
}

.xcom-check-ip__copy {
	align-self: flex-start;
	min-width: 0;
	padding: 8px 14px;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: none;
	cursor: pointer;
}

.xcom-check-ip__copy.is-copied {
	background: var(--primary-soft, rgba(0, 174, 239, 0.08));
	border-color: var(--primary-border, rgba(0, 174, 239, 0.35));
	color: var(--primary, #00aeef);
}

/* Tablet / narrow: stack before cards get cramped */
@media (max-width: 900px) {
	.xcom-check-ip__grid,
	.entry-content .xcom-check-ip__grid,
	.page-content .xcom-check-ip__grid,
	.editor-styles-wrapper .xcom-check-ip__grid {
		grid-template-columns: 1fr;
	}

	.xcom-check-ip__item {
		min-height: 0;
		padding: 16px;
		gap: 12px;
	}

	.xcom-check-ip__main {
		gap: 12px;
	}

	.xcom-check-ip__icon {
		width: 40px;
		height: 40px;
		border-radius: 10px;
		font-size: 1.1rem;
	}

	.xcom-check-ip__value,
	.entry-content .xcom-check-ip__value,
	.page-content .xcom-check-ip__value {
		font-size: 0.875rem;
	}

	.xcom-check-ip__copy {
		width: 100%;
		align-self: stretch;
		justify-content: center;
		min-height: 44px;
	}
}

@media (max-width: 480px) {
	.xcom-check-ip {
		gap: 10px;
	}

	.xcom-check-ip__hint {
		font-size: 0.875rem;
	}

	.xcom-check-ip__item {
		padding: 14px;
	}

	.xcom-check-ip__value,
	.entry-content .xcom-check-ip__value,
	.page-content .xcom-check-ip__value {
		font-size: 0.8125rem;
		line-height: 1.5;
	}
}


/* _speedtest.css */
/* Speedtest — Ookla iframe */

.xcom-speedtest,
.xcom-speedtest-wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	margin: 0;
}

.xcom-speedtest__title,
.entry-content .xcom-speedtest__title,
.page-content .xcom-speedtest__title,
.editor-styles-wrapper .xcom-speedtest__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--text);
}

.xcom-speedtest__frame-wrap {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
	border-radius: var(--radius, 8px);
	background: var(--surface, #f5f5f5);
	min-height: 650px;
	height: 100%;
	flex: 1 1 auto;
}

.xcom-speedtest__iframe {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 650px;
	border: 0;
	vertical-align: top;
}

.xcom-speedtest__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	color: var(--text-muted, #888);
	font-size: 0.9375rem;
	background: var(--surface, #f5f5f5);
	border: 1px dashed var(--border, #ddd);
	border-radius: var(--radius, 8px);
	box-sizing: border-box;
}


/* _tariffs-block.css */
/* Tariffs block shell */
.xcom-tariffs-container,
.xcom-tariffs-wrap,
.xcom-tariffs-tabs-content,
.xcom-tariffs-tab-pane {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.xcom-tariffs-container {
	padding-block: 0;
	line-height: 1.6;
}


/* _news-list.css */
/* News list block */

.xcom-news-list {
	width: 100%;
	max-width: 720px;
	min-width: 0;
	margin-inline: auto;
}

.xcom-news-list__grid {
	display: flex;
	flex-direction: column;
	gap: var(--section-pad-y, 52px);
	width: 100%;
	min-width: 0;
}

.xcom-news-card.card {
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
	overflow: hidden;
	min-width: 0;
	width: 100%;
	border-radius: var(--radius);
	box-shadow: none;
	scroll-margin-top: calc(var(--header-h, 120px) + var(--wp-admin-bar-offset, 0px) + 16px);
	transition:
		border-color 0.2s var(--ease),
		box-shadow 0.2s var(--ease);
}

.xcom-news-card.card:hover {
	border-color: var(--border-hover);
	box-shadow: var(--shadow-sm);
}

.xcom-news-card.card:target {
	border-color: var(--primary-border-accent, var(--primary-border));
	box-shadow: var(--primary-shadow, var(--shadow-sm));
}

.xcom-news-card__title-link {
	color: inherit;
	text-decoration: none;
}

.xcom-news-card__title-link:hover {
	color: var(--primary);
}

.xcom-news-card__media {
	display: block;
	flex: 0 0 auto;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--bg-muted);
}

.xcom-news-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.xcom-news-card__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px;
	flex: 1 1 auto;
	min-width: 0;
}

.xcom-news-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	width: 100%;
}

.xcom-news-card__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	flex-shrink: 0;
}

.xcom-news-card__category {
	display: inline-flex;
	align-items: center;
	padding: 0.3em 0.75em;
	border-radius: 999px;
	background: var(--primary-soft);
	border: 1px solid var(--primary-border);
	color: var(--primary-dark);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
	text-transform: uppercase;
	border-bottom: 1px solid var(--primary-border);
	line-height: 1.4;
}

.xcom-news-card__category:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
	border-bottom-color: var(--primary);
}

.xcom-news-card__category--notification {
	background: rgba(255, 101, 27, 0.1);
	border-color: rgba(255, 101, 27, 0.35);
	color: var(--accent);
}

.xcom-news-card__category--notification:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

.xcom-news-card__title {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--text);
	flex-shrink: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.xcom-news-card__date {
	display: block;
	font-size: 0.75rem;
	line-height: 1.2;
	color: var(--text-caption);
	flex-shrink: 0;
}

.xcom-news-card__content {
	margin: 0;
	flex: 1 1 auto;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text);
}

.page-content .xcom-news-card__content :is(p, .wp-block-paragraph),
.entry-content .xcom-news-card__content :is(p, .wp-block-paragraph),
.xcom-news-card__content :is(p, .wp-block-paragraph) {
	margin: 0 0 0.75em;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.page-content .xcom-news-card__content :is(ul, ol, .wp-block-list),
.entry-content .xcom-news-card__content :is(ul, ol, .wp-block-list),
.xcom-news-card__content :is(ul, ol, .wp-block-list) {
	margin: 0 0 0.85em;
	padding-left: 1.35em;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	list-style-position: outside;
}

.page-content .xcom-news-card__content li,
.entry-content .xcom-news-card__content li,
.xcom-news-card__content li {
	margin: 0 0 0.4em;
	padding: 0;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.xcom-news-card__content :is(strong, b) {
	font-weight: 700;
	color: var(--text);
}

.xcom-news-card__content :is(em, i) {
	font-style: italic;
	color: var(--text-muted);
}

.page-content .xcom-news-card__content a,
.entry-content .xcom-news-card__content a,
.xcom-news-card__content a {
	color: var(--primary-dark);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid var(--primary-border);
}

.page-content .xcom-news-card__content a:hover,
.entry-content .xcom-news-card__content a:hover,
.xcom-news-card__content a:hover {
	color: var(--primary-dark);
	border-bottom-color: var(--primary-dark);
	opacity: 1;
}

.xcom-news-card__content > *:first-child {
	margin-top: 0;
}

.xcom-news-card__content > *:last-child {
	margin-bottom: 0;
}

.xcom-news-card__content :is(p, .wp-block-paragraph):empty {
	display: none;
}

.xcom-news-card__teaser {
	color: var(--text-muted);
}

.xcom-news-card__full {
	display: none;
}

.xcom-news-card.is-expanded .xcom-news-card__teaser,
.xcom-news-card:target .xcom-news-card__teaser {
	display: none;
}

.xcom-news-card.is-expanded .xcom-news-card__full,
.xcom-news-card:target .xcom-news-card__full {
	display: block;
}

.xcom-news-card__toggle {
	align-self: flex-start;
	margin-top: 4px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--primary-dark);
	font: inherit;
	font-size: 0.875rem;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
}

.xcom-news-card__toggle:hover {
	opacity: 0.85;
}

.xcom-news-card.is-expanded .xcom-news-card__toggle,
.xcom-news-card:target .xcom-news-card__toggle {
	color: var(--text-muted);
}

/* Keep news-list link hovers on primary-dark (no content underline) */
.page-content .xcom-news-list a:hover,
.entry-content .xcom-news-list a:hover {
	border-bottom-color: transparent;
	color: var(--primary-dark);
}

.page-content .xcom-news-list .xcom-news-card__category:hover,
.entry-content .xcom-news-list .xcom-news-card__category:hover {
	color: #fff;
}

.page-content .xcom-news-list .page-numbers a:hover,
.entry-content .xcom-news-list .page-numbers a:hover {
	color: var(--primary-dark);
	border-color: var(--primary);
}

.xcom-news-list__empty {
	margin: 0;
	padding: 28px 20px;
	text-align: center;
	color: var(--text-muted);
	background: var(--surface);
	border: 1px dashed var(--border);
	border-radius: var(--radius);
}

.xcom-news-list__pagination {
	margin-top: 24px;
}

.xcom-news-list__pagination ul.page-numbers,
.page-content .xcom-news-list__pagination ul.page-numbers,
.entry-content .xcom-news-list__pagination ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.xcom-news-list__pagination .page-numbers li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.xcom-news-list__pagination .page-numbers a,
.xcom-news-list__pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--primary);
	font-weight: 600;
	font-size: 0.875rem;
	text-decoration: none;
	border-bottom: 1px solid var(--border);
	box-sizing: border-box;
}

.xcom-news-list__pagination .page-numbers a:hover {
	border-color: var(--primary);
	color: var(--primary-dark);
}

.xcom-news-list__pagination .page-numbers .current {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

@media (max-width: 767px) {
	.xcom-news-list {
		max-width: none;
	}

	.xcom-news-card__body {
		padding: 20px;
		gap: 5px;
	}
}


/* _banner-block.css */
/* Banner Block */

.xcom-banner-block {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.xcom-banner-block__prev,
.xcom-banner-block__next,
.xcom-banner-block__dots {
	display: none;
}

.xcom-banner-block__slide {
	border-radius: var(--radius, 16px);
	overflow: hidden;
	display: block;
	position: relative;
	background-color: var(--surface);
	border: 1px solid var(--border, rgba(15, 20, 25, 0.08));
	box-shadow: var(--shadow-sm, 0 2px 8px rgba(15, 20, 25, 0.04));
}

.xcom-banner-block__link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.xcom-banner-block__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

@media (min-width: 769px) {
	.xcom-banner-block__slider {
		display: grid;
		gap: 16px;
		height: 460px; /* fixed height for grid */
		max-height: 55vh;
	}

	.xcom-banner-block__slider--count-1 {
		grid-template-columns: 1fr;
	}

	.xcom-banner-block__slider--count-2 {
		grid-template-columns: 1fr 1fr;
	}

	.xcom-banner-block__slider--count-3 {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
	}
	.xcom-banner-block__slider--count-3 .xcom-banner-block__slide:nth-child(1) {
		grid-row: 1 / span 2;
	}

	.xcom-banner-block__slider--count-4 {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
	}

	.xcom-banner-block__slider--count-5 {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr 1fr;
	}
	.xcom-banner-block__slider--count-5 .xcom-banner-block__slide:nth-child(5) {
		grid-column: 1 / span 2;
	}

	.xcom-banner-block__slide {
		/* Grid items stretch automatically */
	}
	
	.xcom-banner-block__link,
	.xcom-banner-block__img {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
	}
}

@media (max-width: 768px) {
	.xcom-banner-block__slider {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none; /* Firefox */
		padding-bottom: 8px;
		gap: 8px;
	}
	
	.xcom-banner-block__slider::-webkit-scrollbar {
		display: none; /* Chrome, Safari, Edge */
	}

	.xcom-banner-block__slide {
		flex: 0 0 100%;
		scroll-snap-align: center;
	}

	.xcom-banner-block__img {
		aspect-ratio: 4 / 3;
	}

	.xcom-banner-block__prev,
	.xcom-banner-block__next {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		background: rgba(255, 255, 255, 0.8);
		color: #333;
		border: none;
		border-radius: 50%;
		cursor: pointer;
		z-index: 10;
		box-shadow: 0 2px 4px rgba(0,0,0,0.15);
	}
	.xcom-banner-block__prev { left: 8px; }
	.xcom-banner-block__next { right: 8px; }

	.xcom-banner-block__dots {
		display: flex;
		justify-content: center;
		gap: 8px;
		position: absolute;
		bottom: 16px;
		left: 0;
		right: 0;
		z-index: 10;
	}

	.xcom-banner-block__dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.5);
		border: 1px solid rgba(0,0,0,0.1);
		padding: 0;
		cursor: pointer;
		transition: all 0.3s ease;
	}
	.xcom-banner-block__dot.is-active {
		background: #fff;
		transform: scale(1.3);
		border-color: rgba(0,0,0,0.2);
	}
}

@media (max-width: 480px) {
	.xcom-banner-block__img {
		aspect-ratio: 1 / 1;
	}
}


/* _cameras-block.css */
/* Cameras Block Layout */
.section__top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: var(--section-pad-y, 52px); gap: 20px; }
.section__top .section__action { flex-shrink: 0; }
@media (max-width: 767px) { .section__top { flex-direction: column; align-items: flex-start; } }

.section__grid { display: grid; gap: 20px; align-items: stretch; }
.section__grid--cameras { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
@media (min-width: 1200px) { 
	.section__grid--cameras { grid-template-columns: repeat(4, 1fr); } 
}

.section__grid--cameras .tariff-card { display: flex; flex-direction: column; height: 100%; }
.section__grid--cameras .tariff-card__footer { margin-top: auto; padding-top: 0; }
.section__grid--cameras .tariff-card__head { margin-bottom: 12px; }
.section__grid--cameras .tariff-card__tier { margin-bottom: 8px; }
.section__grid--cameras .tariff-card {
	padding: 20px 18px 18px;
}

/* Slider Styles */
.xcom-cameras-slider-wrap { position: relative; }

.xcom-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	cursor: pointer;
	z-index: 10;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}


.xcom-slider-prev { left: -16px; }
.xcom-slider-next { right: -16px; }

@media (min-width: 1200px) {
	.xcom-slider-arrow { display: none; }
}

@media (max-width: 1199px) {
	.xcom-cameras-slider {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 20px;
		margin: 0 -20px;
		padding: 0 20px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.xcom-cameras-slider::-webkit-scrollbar { display: none; }
	.xcom-cameras-slider .tariff-card {
		flex: 0 0 344px;
		scroll-snap-align: center;
		max-width: 85vw;
	}
	
	.xcom-slider-arrow { top: calc(50% - 12px); }
	.xcom-slider-prev { left: 0; }
	.xcom-slider-next { right: 0; }
}

/* Tariff Card Styles */
.tariff-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border-radius: 28px;
	padding: 28px 24px 24px;
	border: 1px solid var(--border);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.tariff-card:hover {
	box-shadow: var(--shadow-lg);
	border-color: rgba(0, 174, 239, 0.2);
}

.tariff-card--featured {
	background: linear-gradient(160deg, #0f1419 0%, #1a2d3d 55%, #0d3d52 100%);
	border-color: rgba(0, 174, 239, 0.35);
	box-shadow: 0 20px 50px rgba(0, 174, 239, 0.18);
	color: #fff;
}

.tariff-card--featured:hover {
	border-color: rgba(0, 174, 239, 0.55);
	box-shadow: 0 28px 60px rgba(0, 174, 239, 0.25);
}

.tariff-card__head {
	margin-bottom: 24px;
}

.tariff-card__tier {
	display: inline-block;
	margin-bottom: 16px;
	padding: 5px 12px;
	background: rgba(0, 174, 239, 0.1);
	color: var(--primary);
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.tariff-card--featured .tariff-card__tier {
	background: rgba(0, 174, 239, 0.2);
	color: #7ddfff;
}

.tariff-card__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(1.25rem, 4vw, 1.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--text);
}

.tariff-card--featured .tariff-card__title {
	color: #fff;
}

.tariff-card__tagline {
	margin: 12px 0 0;
	font-size: 14px;
	color: var(--text-muted);
}

.tariff-card--featured .tariff-card__tagline {
	color: rgba(255, 255, 255, 0.55);
}

.tariff-card__perks {
	margin: 0 0 24px !important;
	padding: 0 !important;
	list-style: none !important;
}

.tariff-card__perks li {
	position: relative;
	padding: 10px 0 10px 28px !important;
	margin: 0 !important;
	font-size: 14px;
	color: var(--text-muted);
	border-bottom: 1px solid var(--border);
}

.tariff-card__perks li:last-child {
	border-bottom: none;
}

.tariff-card__perks li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background: rgba(0, 174, 239, 0.12);
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%2300aeef' d='M4.5 8.5L2 6l1-1 1.5 1.5L9 2l1 1z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 10px;
}

.tariff-card--featured .tariff-card__perks li {
	color: rgba(255, 255, 255, 0.7);
	border-color: rgba(255, 255, 255, 0.1);
}

.tariff-card--featured .tariff-card__perks li::before {
	background-color: rgba(0, 174, 239, 0.25);
}

.tariff-card__footer {
	padding-top: 20px;
	border-top: 1px solid var(--border);
}

.tariff-card--featured .tariff-card__footer {
	border-color: rgba(255, 255, 255, 0.1);
}

.tariff-card--featured .btn--primary {
	background: linear-gradient(135deg, var(--primary) 0%, #00c8ff 100%);
	box-shadow: 0 8px 24px rgba(0, 174, 239, 0.4);
}

/* Form / Preview Styles */
@keyframes xcom-cameras-live-ping {
	0% {
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
	}
}

.tariff-card__live-dot {
	width: 8px;
	height: 8px;
	flex-shrink: 0;
	background: #22c55e;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
	animation: xcom-cameras-live-ping 1.8s ease-out infinite;
}

@media (prefers-reduced-motion: reduce) {
	.tariff-card__live-dot {
		animation: none;
	}
} 

.tariff-card__live { 
	position: relative; 
	z-index: 1; 
	display: inline-flex; 
	align-items: center; 
	gap: 8px; 
	padding: 8px 14px; 
	background: rgba(0, 0, 0, 0.5); 
	backdrop-filter: blur(8px); 
	border-radius: 999px; 
	color: #fff; 
	font-size: 12px; 
	font-weight: 600; 
} 

.section__grid--cameras .tariff-card__preview {
	flex: 1 1 auto;
	width: 100%;
	min-height: 168px;
	margin-bottom: 14px;
	aspect-ratio: unset;
}

.tariff-card__preview {
	margin-bottom: 20px;
	border-radius: 20px; 
	background: linear-gradient(145deg, #0d1f2d 0%, #1a4a5e 50%, #0a8ab5 100%); 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	position: relative; 
	overflow: hidden; 
} 

.section__grid--cameras .tariff-card__preview-img,
.tariff-card__preview-img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center;
	display: block;
}

.tariff-card__preview::before { 
	content: ''; 
	position: absolute; 
	inset: 0; 
	z-index: 1;
	pointer-events: none;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); 
}

.tariff-card__preview--photo::before {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.28) 100%),
		url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.tariff-card__preview--photo .tariff-card__live {
	z-index: 2;
}


/* _site-map.css */
/* Site Map Block Styles (/map) */

.xcom-site-map,
.xcom-site-map-wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	margin: 0;
}

.xcom-site-map__title,
.entry-content .xcom-site-map__title,
.page-content .xcom-site-map__title,
.editor-styles-wrapper .xcom-site-map__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--text);
}

/* Top Panel: Stats + Search input in separate card */
.xcom-site-map__top-panel {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	padding: 20px 24px;
	background: var(--surface, #ffffff);
	border: 1px solid var(--border, #e2e8f0);
	border-radius: var(--radius, 12px);
	box-shadow: var(--shadow-sm, 0 1px 3px rgba(15, 23, 42, 0.04));
	box-sizing: border-box;
}

.xcom-site-map__stats {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 14px;
	font-size: 0.8125rem;
}

.xcom-site-map__badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 20px;
	background: var(--surface-secondary, rgba(0, 174, 239, 0.1));
	color: var(--primary, #00aeef);
	font-weight: 700;
	line-height: 1.2;
}

.xcom-site-map__updated {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--text-muted, #6c757d);
	font-weight: 500;
}

.xcom-site-map__info-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--surface-secondary, rgba(0, 174, 239, 0.1));
	color: var(--primary, #00aeef);
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.xcom-site-map__info-icon:hover {
	background: var(--primary, #00aeef);
	color: #ffffff;
	transform: scale(1.08);
}

.xcom-site-map__refresh {
	display: none;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: var(--radius-sm, 6px);
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.xcom-site-map__refresh.is-allowed {
	display: inline-flex;
}

.xcom-site-map__refresh.is-loading .xcom-site-map__icon-spin {
	animation: xcom-spin 1s linear infinite;
}

@keyframes xcom-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Search input */
.xcom-site-map__search-wrap {
	position: relative;
	width: 100%;
}

.xcom-site-map__search-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-muted, #8a96a3);
	pointer-events: none;
}

.xcom-site-map__search-input {
	width: 100%;
	height: 44px;
	padding: 10px 16px 10px 40px;
	font-size: 0.9375rem;
	color: var(--text, #1e293b);
	background: var(--surface-secondary, #f8fafc);
	border: 1px solid var(--border, #e2e8f0);
	border-radius: var(--radius-sm, 8px);
	outline: none;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.xcom-site-map__search-input:focus {
	background: #ffffff;
	border-color: var(--primary, #00aeef);
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

/* Table container in separate distinct card with generous internal padding */
.xcom-site-map__table-container {
	width: 100%;
	padding: 20px 24px;
	background: var(--surface, #ffffff);
	border: 1px solid var(--border, #e2e8f0);
	border-radius: var(--radius, 12px);
	overflow: hidden;
	box-shadow: var(--shadow-sm, 0 2px 8px rgba(15, 23, 42, 0.04));
	box-sizing: border-box;
}

.xcom-site-map__table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	text-align: left;
	font-size: 0.9375rem;
	margin: 0;
}

.xcom-site-map__table th {
	padding: 12px 16px;
	background: var(--surface-secondary, #f8fafc);
	border: none;
	border-bottom: 1px solid var(--border, #e2e8f0);
	font-size: 0.78125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--text-muted, #64748b);
}

.xcom-site-map__table th:first-child {
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

.xcom-site-map__table th:last-child {
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

.xcom-site-map__th-link {
	width: 40%;
}

.xcom-site-map__th-title {
	width: 60%;
}

.xcom-site-map__table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--border-light, #f1f5f9);
	vertical-align: middle;
}

.xcom-site-map__table tbody tr:last-child td {
	border-bottom: none;
}

.xcom-site-map__table tbody tr {
	transition: background-color 0.15s ease;
}

@media (hover: hover) and (pointer: fine) {
	.xcom-site-map__table tbody tr:hover {
		background-color: var(--surface-hover, rgba(0, 174, 239, 0.03));
	}
}

.xcom-site-map__link-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.xcom-site-map__link,
.xcom-site-map__link:hover,
.xcom-site-map__link:focus,
.xcom-site-map__link:active,
.entry-content .xcom-site-map__link,
.entry-content .xcom-site-map__link:hover,
.entry-content .xcom-site-map__link:focus,
.entry-content .xcom-site-map__link:active,
.page-content .xcom-site-map__link,
.page-content .xcom-site-map__link:hover,
.page-content .xcom-site-map__link:focus,
.page-content .xcom-site-map__link:active {
	text-decoration: none !important;
	border: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
	outline: none !important;
	display: inline-block;
}

.xcom-site-map__link code {
	display: inline-block;
	padding: 4px 8px;
	background: var(--code-bg, #f1f5f9);
	color: var(--primary-dark, #0077b6);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.875rem;
	font-weight: 700;
	border-radius: 6px;
	border: none !important;
	border-bottom: none !important;
	text-decoration: none !important;
	box-shadow: none !important;
	transition: color 0.15s ease, background-color 0.15s ease;
}

.xcom-site-map__link:hover code {
	background: var(--primary, #00aeef);
	color: #ffffff;
	border: none !important;
	border-bottom: none !important;
	text-decoration: none !important;
	box-shadow: none !important;
}

.xcom-site-map__copy {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 10px;
	font-size: 0.78125rem;
	font-weight: 600;
	white-space: nowrap;
	border-radius: 6px;
	cursor: pointer;
}

.xcom-site-map__copy.is-copied {
	background: var(--primary-soft, rgba(0, 174, 239, 0.08));
	border-color: var(--primary-border, rgba(0, 174, 239, 0.35));
	color: var(--primary, #00aeef);
}

.xcom-site-map__page-title {
	font-weight: 600;
	color: var(--text, #1e293b);
	line-height: 1.4;
}

.xcom-site-map__empty {
	padding: 32px 20px;
	text-align: center;
	color: var(--text-muted, #64748b);
	font-size: 0.9375rem;
}

.xcom-site-map__no-items td {
	padding: 24px 20px;
	text-align: center;
	color: var(--text-muted, #64748b);
}

/* Mobile responsive */
@media (max-width: 640px) {
	.xcom-site-map__top-panel {
		padding: 16px;
	}

	.xcom-site-map__table-container {
		padding: 14px 16px;
	}

	.xcom-site-map__table th {
		display: none;
	}

	.xcom-site-map__table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
		padding: 10px 12px;
	}

	.xcom-site-map__table td.xcom-site-map__cell-link {
		padding-top: 14px;
		border-bottom: none;
	}

	.xcom-site-map__table td.xcom-site-map__cell-title {
		padding-bottom: 14px;
		border-bottom: 1px solid var(--border, #e2e8f0);
	}

	.xcom-site-map__link-flex {
		width: 100%;
	}
}


/* _entry.css */
/* ==========================================================================
   Gutenberg block content (.entry-content / .page-content)
   ========================================================================== */

.entry-content,
.page-content,
.editor-styles-wrapper {
	color: var(--text);
	font-size: 1rem;
	line-height: 1.7;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.entry-content > * + *,
.page-content > * + *,
.editor-styles-wrapper > * + * {
	margin-top: 1.25em;
}

/* Typography */

.entry-content p,
.page-content p,
.editor-styles-wrapper p {
	margin: 0 0 1.25em;
}

.entry-content p:last-child,
.page-content p:last-child,
.editor-styles-wrapper p:last-child,
.page-content .card-auto-wrap p:last-child,
.entry-content .card-auto-wrap p:last-child,
.page-content .card-auto-wrap p:last-of-type,
.entry-content .card-auto-wrap p:last-of-type,
.page-content .card-auto-wrap p:only-child,
.entry-content .card-auto-wrap p:only-child,
.page-content .card-auto-wrap p:only-of-type,
.entry-content .card-auto-wrap p:only-of-type,
.card p:last-child,
.card-auto-wrap p:last-child,
.card-auto-wrap p:last-of-type,
.card-auto-wrap p:only-child,
.card-auto-wrap p:only-of-type,
.card-auto-wrap > *:last-child,
.card > *:last-child {
	margin-bottom: 0 !important;
}

.entry-content :is(strong, b),
.page-content :is(strong, b),
.editor-styles-wrapper :is(strong, b) {
	font-weight: 700;
	color: var(--text);
}

.entry-content :is(em, i),
.page-content :is(em, i),
.editor-styles-wrapper :is(em, i) {
	font-style: italic;
}

.entry-content :is(h1, h2, h3, h4, h5, h6),
.page-content :is(h1, h2, h3, h4, h5, h6),
.editor-styles-wrapper :is(h1, h2, h3, h4, h5, h6) {
	margin: 1.75em 0 0.65em;
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--text);
	line-height: 1.3;
}

.entry-content :is(h1, h2, h3, h4, h5, h6):first-child,
.page-content :is(h1, h2, h3, h4, h5, h6):first-child ,
.editor-styles-wrapper :is(h1, h2, h3, h4, h5, h6):first-child  {
	margin-top: 0;
}

.entry-content h1,
.page-content h1 ,
.editor-styles-wrapper h1  {
	font-size: clamp(1.5rem, 3vw, 1.75rem);
}

.entry-content h2,
.page-content h2 ,
.editor-styles-wrapper h2  {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.entry-content h3,
.page-content h3 ,
.editor-styles-wrapper h3  {
	font-size: 1.15rem;
}

.entry-content h4,
.page-content h4 ,
.editor-styles-wrapper h4  {
	font-size: 1.05rem;
}

.entry-content h5,
.page-content h5 ,
.editor-styles-wrapper h5  {
	font-size: 1rem;
}

.entry-content h6,
.page-content h6 ,
.editor-styles-wrapper h6  {
	font-size: 0.875rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.entry-content mark,
.page-content mark ,
.editor-styles-wrapper mark  {
	background: rgba(255, 101, 27, 0.18);
	color: inherit;
	padding: 0 0.2em;
	border-radius: 3px;
}

.entry-content :is(del, s),
.page-content :is(del, s) ,
.editor-styles-wrapper :is(del, s)  {
	color: var(--text-muted);
	text-decoration: line-through;
}

.entry-content hr,
.page-content hr,
.editor-styles-wrapper hr,
.entry-content .wp-block-separator,
.page-content .wp-block-separator ,
.editor-styles-wrapper .wp-block-separator  {
	border: 0;
	height: 1px;
	background: var(--border);
	margin: 2em 0;
}

.entry-content .wp-block-separator.is-style-wide,
.page-content .wp-block-separator.is-style-wide ,
.editor-styles-wrapper .wp-block-separator.is-style-wide  {
	height: 2px;
}

.entry-content .wp-block-separator.is-style-dots,
.page-content .wp-block-separator.is-style-dots ,
.editor-styles-wrapper .wp-block-separator.is-style-dots  {
	height: auto;
	background: none;
	border: none;
	text-align: center;
}

.entry-content .wp-block-separator.is-style-dots::before,
.page-content .wp-block-separator.is-style-dots::before,
.editor-styles-wrapper .wp-block-separator.is-style-dots::before {
	content: "\00B7\00A0\00B7\00A0\00B7";
	color: var(--text-muted);
	font-size: 1.25rem;
	letter-spacing: 0.35em;
}

/* — Links — */

.entry-content a:not(.wp-block-button__link):not(.wp-block-file__button):not(.tag-cloud-link):not(.wp-block-social-link-anchor):not(.xcom-care-icon):not(.xcom-care-chip):not(.xcom-care-link):not(.footer__soc-link):not(.xcom-wa-dropdown__item):not(.btn):not(.single-post__category):not(.footer__phone):not(.form__contacts-phone):not(.form__contacts-mail-link):not(.tabs__btn):not(.xcom-news-card__more):not(.xcom-news-card__category):not(.xcom-news-card__title-link):not(.xcom-news-card__media):not(.xcom-paymethods__link):not(.xcom-atm__place-link):not(.xcom-map-btns__btn):not(.page-numbers):not(.xcom-site-map__link):not(.xcom-balance__cabinet):not(.xcom-balance__kaspi):not(.card--tariff__hit):not(.xcom-check-ip__info),
.page-content a:not(.wp-block-button__link):not(.wp-block-file__button):not(.tag-cloud-link):not(.wp-block-social-link-anchor):not(.xcom-care-icon):not(.xcom-care-chip):not(.xcom-care-link):not(.footer__soc-link):not(.xcom-wa-dropdown__item):not(.btn):not(.footer__phone):not(.form__contacts-phone):not(.form__contacts-mail-link):not(.tabs__btn):not(.xcom-news-card__more):not(.xcom-news-card__category):not(.xcom-news-card__title-link):not(.xcom-news-card__media):not(.xcom-paymethods__link):not(.xcom-atm__place-link):not(.xcom-map-btns__btn):not(.page-numbers):not(.xcom-site-map__link):not(.xcom-balance__cabinet):not(.xcom-balance__kaspi):not(.card--tariff__hit):not(.xcom-check-ip__info),
.editor-styles-wrapper a:not(.wp-block-button__link):not(.wp-block-file__button):not(.tag-cloud-link):not(.wp-block-social-link-anchor):not(.xcom-care-icon):not(.xcom-care-chip):not(.xcom-care-link):not(.footer__soc-link):not(.xcom-wa-dropdown__item):not(.btn):not(.footer__phone):not(.form__contacts-phone):not(.form__contacts-mail-link):not(.tabs__btn):not(.xcom-news-card__more):not(.xcom-news-card__category):not(.xcom-news-card__title-link):not(.xcom-news-card__media):not(.xcom-paymethods__link):not(.xcom-atm__place-link):not(.xcom-map-btns__btn):not(.page-numbers):not(.xcom-site-map__link):not(.xcom-balance__cabinet):not(.xcom-balance__kaspi):not(.card--tariff__hit):not(.xcom-check-ip__info) {
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid var(--primary-border);
	transition:
		color 0.2s var(--ease),
		border-color 0.2s var(--ease);
}

.entry-content a:not(.wp-block-button__link):not(.wp-block-file__button):not(.tag-cloud-link):not(.wp-block-social-link-anchor):not(.xcom-care-icon):not(.xcom-care-chip):not(.xcom-care-link):not(.footer__soc-link):not(.xcom-wa-dropdown__item):not(.btn):not(.single-post__category):not(.footer__phone):not(.form__contacts-phone):not(.form__contacts-mail-link):not(.tabs__btn):not(.xcom-news-card__more):not(.xcom-news-card__category):not(.xcom-news-card__title-link):not(.xcom-news-card__media):not(.xcom-paymethods__link):not(.xcom-atm__place-link):not(.xcom-map-btns__btn):not(.page-numbers):not(.xcom-site-map__link):not(.xcom-balance__cabinet):not(.xcom-balance__kaspi):not(.card--tariff__hit):not(.xcom-check-ip__info):hover,
.page-content a:not(.wp-block-button__link):not(.wp-block-file__button):not(.tag-cloud-link):not(.wp-block-social-link-anchor):not(.xcom-care-icon):not(.xcom-care-chip):not(.xcom-care-link):not(.footer__soc-link):not(.xcom-wa-dropdown__item):not(.btn):not(.footer__phone):not(.form__contacts-phone):not(.form__contacts-mail-link):not(.tabs__btn):not(.xcom-news-card__more):not(.xcom-news-card__category):not(.xcom-news-card__title-link):not(.xcom-news-card__media):not(.xcom-paymethods__link):not(.xcom-atm__place-link):not(.xcom-map-btns__btn):not(.page-numbers):not(.xcom-site-map__link):not(.xcom-balance__cabinet):not(.xcom-balance__kaspi):not(.card--tariff__hit):not(.xcom-check-ip__info):hover,
.editor-styles-wrapper a:not(.wp-block-button__link):not(.wp-block-file__button):not(.tag-cloud-link):not(.wp-block-social-link-anchor):not(.xcom-care-icon):not(.xcom-care-chip):not(.xcom-care-link):not(.footer__soc-link):not(.xcom-wa-dropdown__item):not(.btn):not(.footer__phone):not(.form__contacts-phone):not(.form__contacts-mail-link):not(.tabs__btn):not(.xcom-news-card__more):not(.xcom-news-card__category):not(.xcom-news-card__title-link):not(.xcom-news-card__media):not(.xcom-paymethods__link):not(.xcom-atm__place-link):not(.xcom-map-btns__btn):not(.page-numbers):not(.xcom-site-map__link):not(.xcom-balance__cabinet):not(.xcom-balance__kaspi):not(.card--tariff__hit):not(.xcom-check-ip__info):hover {
	color: var(--primary-dark);
	border-bottom-color: var(--primary-dark);
}

/* Footer / form contact links — keep footer look inside page content */
.entry-content .footer__phone,
.entry-content .form__contacts-phone,
.page-content .footer__phone,
.page-content .form__contacts-phone,
.editor-styles-wrapper .footer__phone,
.editor-styles-wrapper .form__contacts-phone,
.entry-content .form__contacts-mail-link,
.page-content .form__contacts-mail-link,
.editor-styles-wrapper .form__contacts-mail-link {
	border-bottom: none;
	text-decoration: none;
}

.entry-content .form__contacts .footer__phone,
.entry-content .form__contacts .form__contacts-phone,
.page-content .form__contacts .footer__phone,
.page-content .form__contacts .form__contacts-phone,
.editor-styles-wrapper .form__contacts .footer__phone,
.editor-styles-wrapper .form__contacts .form__contacts-phone {
	color: var(--primary);
	font-weight: 600;
}

.entry-content .form__contacts .footer__phone:hover,
.entry-content .form__contacts .form__contacts-phone:hover,
.page-content .form__contacts .footer__phone:hover,
.page-content .form__contacts .form__contacts-phone:hover,
.editor-styles-wrapper .form__contacts .footer__phone:hover,
.editor-styles-wrapper .form__contacts .form__contacts-phone:hover {
	color: var(--primary-dark);
	opacity: 1;
	border-bottom-color: transparent;
}

.entry-content .form__contacts .form__contacts-mail-link,
.page-content .form__contacts .form__contacts-mail-link,
.editor-styles-wrapper .form__contacts .form__contacts-mail-link,
.entry-content a.form__contacts-mail-link,
.page-content a.form__contacts-mail-link,
.editor-styles-wrapper a.form__contacts-mail-link {
	color: var(--primary);
	font-weight: 600;
	border-bottom: none;
	text-decoration: none;
}

.entry-content .form__contacts .form__contacts-mail-link:hover,
.page-content .form__contacts .form__contacts-mail-link:hover,
.editor-styles-wrapper .form__contacts .form__contacts-mail-link:hover,
.entry-content a.form__contacts-mail-link:hover,
.page-content a.form__contacts-mail-link:hover,
.editor-styles-wrapper a.form__contacts-mail-link:hover {
	color: var(--primary-dark);
	opacity: 1;
	border-bottom-color: transparent;
}

/* вЂ” Lists (override global list reset) вЂ” */

.entry-content :is(ul, ol):not(.wp-block-navigation__container):not(.wp-block-social-links):not(.wp-block-page-list):not(.wp-block-gallery):not(.blocks-gallery-grid):not(.wp-block-latest-comments):not(.wp-block-post-template):not(.footer__soc):not(.xcom-wa-dropdown__list):not(.xcom-care-block__schedule-list):not(.xcom-paymethods):not(.xcom-pay-locations):not(.xcom-atm__list):not(.xcom-check-ip__grid):not(.page-numbers):not(.xcom-job-form__progress):not(.xcom-balance__contracts),
.page-content :is(ul, ol):not(.wp-block-navigation__container):not(.wp-block-social-links):not(.wp-block-page-list):not(.wp-block-gallery):not(.blocks-gallery-grid):not(.wp-block-latest-comments):not(.wp-block-post-template):not(.xcom-wa-dropdown__list):not(.xcom-care-block__schedule-list):not(.xcom-paymethods):not(.xcom-pay-locations):not(.xcom-atm__list):not(.xcom-check-ip__grid):not(.page-numbers):not(.xcom-job-form__progress):not(.xcom-balance__contracts),
.editor-styles-wrapper :is(ul, ol):not(.wp-block-navigation__container):not(.wp-block-social-links):not(.wp-block-page-list):not(.wp-block-gallery):not(.blocks-gallery-grid):not(.wp-block-latest-comments):not(.wp-block-post-template):not(.xcom-wa-dropdown__list):not(.xcom-care-block__schedule-list):not(.xcom-paymethods):not(.xcom-pay-locations):not(.xcom-atm__list):not(.xcom-check-ip__grid):not(.page-numbers):not(.xcom-job-form__progress):not(.xcom-balance__contracts) {
	margin: 0 0 1.25em;
	padding-left: 1.5em;
}

.entry-content ul:not(.wp-block-navigation__container):not(.wp-block-social-links):not(.wp-block-page-list):not(.wp-block-gallery):not(.blocks-gallery-grid):not(.wp-block-latest-comments):not(.wp-block-post-template):not(.footer__soc):not(.xcom-wa-dropdown__list):not(.xcom-care-block__schedule-list):not(.xcom-paymethods):not(.xcom-pay-locations):not(.xcom-atm__list):not(.xcom-check-ip__grid):not(.page-numbers):not(.xcom-job-form__progress):not(.xcom-balance__contracts),
.page-content ul:not(.wp-block-navigation__container):not(.wp-block-social-links):not(.wp-block-page-list):not(.wp-block-gallery):not(.blocks-gallery-grid):not(.wp-block-latest-comments):not(.wp-block-post-template):not(.xcom-wa-dropdown__list):not(.xcom-care-block__schedule-list):not(.xcom-paymethods):not(.xcom-pay-locations):not(.xcom-atm__list):not(.xcom-check-ip__grid):not(.page-numbers):not(.xcom-job-form__progress):not(.xcom-balance__contracts),
.editor-styles-wrapper ul:not(.wp-block-navigation__container):not(.wp-block-social-links):not(.wp-block-page-list):not(.wp-block-gallery):not(.blocks-gallery-grid):not(.wp-block-latest-comments):not(.wp-block-post-template):not(.xcom-wa-dropdown__list):not(.xcom-care-block__schedule-list):not(.xcom-paymethods):not(.xcom-pay-locations):not(.xcom-atm__list):not(.xcom-check-ip__grid):not(.page-numbers):not(.xcom-job-form__progress):not(.xcom-balance__contracts) {
	list-style: disc;
}

.entry-content ol:not(.wp-block-page-list),
.page-content ol:not(.wp-block-page-list),
.editor-styles-wrapper ol:not(.wp-block-page-list) {
	list-style: decimal;
}

.entry-content .wp-block-list,
.page-content .wp-block-list,
.editor-styles-wrapper .wp-block-list {
	padding-left: 1.5em;
}

.entry-content .wp-block-list.is-style-checklist,
.page-content .wp-block-list.is-style-checklist ,
.editor-styles-wrapper .wp-block-list.is-style-checklist  {
	list-style: none;
	padding-left: 0;
}

.entry-content .wp-block-list.is-style-checklist li,
.page-content .wp-block-list.is-style-checklist li ,
.editor-styles-wrapper .wp-block-list.is-style-checklist li  {
	position: relative;
	padding-left: 1.75em;
}

.entry-content .wp-block-list.is-style-checklist li::before,
.page-content .wp-block-list.is-style-checklist li::before ,
.editor-styles-wrapper .wp-block-list.is-style-checklist li::before  {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 0.85em;
	height: 0.85em;
	border: 2px solid var(--primary);
	border-radius: 3px;
}

.entry-content li,
.page-content li ,
.editor-styles-wrapper li  {
	margin-bottom: 0.45em;
}

.entry-content li > :is(ul, ol),
.page-content li > :is(ul, ol) ,
.editor-styles-wrapper li > :is(ul, ol)  {
	margin-top: 0.45em;
	margin-bottom: 0;
}

.entry-content :is(dt, dd),
.page-content :is(dt, dd) ,
.editor-styles-wrapper :is(dt, dd)  {
	margin: 0;
}

.entry-content dt,
.page-content dt ,
.editor-styles-wrapper dt  {
	margin-top: 1em;
	font-weight: 700;
}

.entry-content dd,
.page-content dd ,
.editor-styles-wrapper dd  {
	margin-bottom: 0.75em;
	color: var(--text-muted);
}

/* вЂ” Quote, pullquote, verse вЂ” */

.entry-content :is(.wp-block-quote, blockquote),
.page-content :is(.wp-block-quote, blockquote) ,
.editor-styles-wrapper :is(.wp-block-quote, blockquote)  {
	margin: 1.75em 0;
	padding: 1.15em 1.35em;
	border-left: 3px solid var(--primary);
	border-radius: 0 var(--radius) var(--radius) 0;
	background: var(--surface);
	box-shadow: var(--shadow-sm);
	font-style: italic;
	color: var(--text-muted);
}

.entry-content :is(.wp-block-quote, blockquote) p:last-child,
.page-content :is(.wp-block-quote, blockquote) p:last-child ,
.editor-styles-wrapper :is(.wp-block-quote, blockquote) p:last-child  {
	margin-bottom: 0;
}

.entry-content :is(.wp-block-quote, blockquote) cite,
.page-content :is(.wp-block-quote, blockquote) cite ,
.editor-styles-wrapper :is(.wp-block-quote, blockquote) cite  {
	display: block;
	margin-top: 0.75em;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 600;
	color: var(--text);
}

.entry-content .wp-block-pullquote,
.page-content .wp-block-pullquote ,
.editor-styles-wrapper .wp-block-pullquote  {
	margin: 2em 0;
	padding: 1.75em 1.5em;
	text-align: center;
	border-top: 3px solid var(--primary);
	border-bottom: 3px solid var(--primary);
	background: var(--surface);
	border-radius: var(--radius);
}

.entry-content .wp-block-pullquote blockquote,
.page-content .wp-block-pullquote blockquote ,
.editor-styles-wrapper .wp-block-pullquote blockquote  {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	box-shadow: none;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	font-style: italic;
	color: var(--text);
}

.entry-content .wp-block-pullquote cite,
.page-content .wp-block-pullquote cite ,
.editor-styles-wrapper .wp-block-pullquote cite  {
	color: var(--text-muted);
}

.entry-content .wp-block-verse,
.page-content .wp-block-verse ,
.editor-styles-wrapper .wp-block-verse  {
	margin: 1.5em 0;
	padding: 1.25em 1.5em;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1rem;
	line-height: 1.8;
	white-space: pre-wrap;
}

/* вЂ” Code & preformatted вЂ” */

.entry-content :is(.wp-block-code, code):not(.wp-block-preformatted),
.page-content :is(.wp-block-code, code):not(.wp-block-preformatted) ,
.editor-styles-wrapper :is(.wp-block-code, code):not(.wp-block-preformatted)  {
	font-family: Consolas, Monaco, "Courier New", monospace;
	font-size: 0.875em;
}

.entry-content :not(pre) > code,
.page-content :not(pre) > code,
.editor-styles-wrapper :not(pre) > code,
.entry-content .wp-block-code:not(.wp-block-preformatted),
.page-content .wp-block-code:not(.wp-block-preformatted) ,
.editor-styles-wrapper .wp-block-code:not(.wp-block-preformatted)  {
	background: var(--bg);
	color: var(--accent);
	padding: 0.15em 0.45em;
	border-radius: 6px;
	border: 1px solid var(--border);
}

.entry-content :is(.wp-block-code, pre, .wp-block-preformatted),
.page-content :is(.wp-block-code, pre, .wp-block-preformatted) ,
.editor-styles-wrapper :is(.wp-block-code, pre, .wp-block-preformatted)  {
	display: block;
	margin: 1.5em 0;
	padding: 1.15em 1.25em;
	background: var(--dark);
	color: #e8edf2;
	border-radius: var(--radius);
	overflow-x: auto;
	font-size: 0.875rem;
	line-height: 1.6;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.entry-content :is(.wp-block-code, pre) code,
.page-content :is(.wp-block-code, pre) code ,
.editor-styles-wrapper :is(.wp-block-code, pre) code  {
	background: transparent;
	color: inherit;
	padding: 0;
	border: none;
}

/* вЂ” Tables вЂ” */

.entry-content :is(.wp-block-table, table),
.page-content :is(.wp-block-table, table) ,
.editor-styles-wrapper :is(.wp-block-table, table)  {
	width: 100%;
	margin: 1.5em 0;
	font-size: 0.925rem;
}

.entry-content :is(.wp-block-table table, table),
.page-content :is(.wp-block-table table, table) ,
.editor-styles-wrapper :is(.wp-block-table table, table)  {
	width: 100%;
	border-collapse: collapse;
}

.entry-content :is(.wp-block-table th, .wp-block-table td, th, td),
.page-content :is(.wp-block-table th, .wp-block-table td, th, td) ,
.editor-styles-wrapper :is(.wp-block-table th, .wp-block-table td, th, td)  {
	padding: 0.75em 1em;
	border: 1px solid var(--border);
	text-align: left;
	vertical-align: top;
}

.entry-content :is(.wp-block-table th, th),
.page-content :is(.wp-block-table th, th) ,
.editor-styles-wrapper :is(.wp-block-table th, th)  {
	background: var(--bg);
	font-weight: 700;
}

.entry-content :is(.wp-block-table tr:nth-child(even), tr:nth-child(even)),
.page-content :is(.wp-block-table tr:nth-child(even), tr:nth-child(even)) ,
.editor-styles-wrapper :is(.wp-block-table tr:nth-child(even), tr:nth-child(even))  {
	background: rgba(244, 246, 249, 0.65);
}

.entry-content .wp-block-table.is-style-stripes tbody tr:nth-child(odd),
.page-content .wp-block-table.is-style-stripes tbody tr:nth-child(odd) ,
.editor-styles-wrapper .wp-block-table.is-style-stripes tbody tr:nth-child(odd)  {
	background: var(--surface);
}

.entry-content .wp-block-table.is-style-stripes tbody tr:nth-child(even),
.page-content .wp-block-table.is-style-stripes tbody tr:nth-child(even) ,
.editor-styles-wrapper .wp-block-table.is-style-stripes tbody tr:nth-child(even)  {
	background: var(--bg);
}

.entry-content .wp-block-table figcaption,
.page-content .wp-block-table figcaption ,
.editor-styles-wrapper .wp-block-table figcaption  {
	margin-top: 0.65em;
	font-size: 0.8125rem;
	color: var(--text-muted);
	text-align: center;
}

/* Media: image, gallery, cover, media-text, video, audio */

.entry-content :is(img, video, iframe),
.page-content :is(img, video, iframe),
.editor-styles-wrapper :is(img, video, iframe) {
	max-width: 100%;
	height: auto;
}

.entry-content :is(.wp-block-image, .wp-block-video, .wp-block-audio),
.page-content :is(.wp-block-image, .wp-block-video, .wp-block-audio),
.editor-styles-wrapper :is(.wp-block-image, .wp-block-video, .wp-block-audio) {
	margin: 1.5em 0;
}

.entry-content .wp-block-video video,
.page-content .wp-block-video video,
.editor-styles-wrapper .wp-block-video video,
.entry-content .wp-block-audio audio,
.page-content .wp-block-audio audio,
.editor-styles-wrapper .wp-block-audio audio {
	width: 100%;
	border-radius: var(--radius);
}

.entry-content .wp-block-image img,
.page-content .wp-block-image img,
.editor-styles-wrapper .wp-block-image img,
.entry-content .wp-block-gallery .wp-block-image img,
.page-content .wp-block-gallery .wp-block-image img ,
.editor-styles-wrapper .wp-block-gallery .wp-block-image img  {
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
}

.entry-content :is(.wp-block-image, figure).alignleft,
.page-content :is(.wp-block-image, figure).alignleft {
	float: left;
	margin: 0.35em 1.5em 1.25em 0;
}

.entry-content :is(.wp-block-image, figure).alignright,
.page-content :is(.wp-block-image, figure).alignright {
	float: right;
	margin: 0.35em 0 1.25em 1.5em;
}

.entry-content :is(.wp-block-image, figure).aligncenter,
.page-content :is(.wp-block-image, figure).aligncenter {
	display: table;
	margin-inline: auto;
}

.entry-content :is(.wp-block-image, figure) figcaption,
.page-content :is(.wp-block-image, figure) figcaption ,
.editor-styles-wrapper :is(.wp-block-image, figure) figcaption  {
	margin-top: 0.65em;
	font-size: 0.8125rem;
	color: var(--text-muted);
	text-align: center;
}

.entry-content .wp-block-gallery,
.page-content .wp-block-gallery ,
.editor-styles-wrapper .wp-block-gallery  {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 1.5em 0;
}

.entry-content .wp-block-cover,
.page-content .wp-block-cover ,
.editor-styles-wrapper .wp-block-cover  {
	margin: 1.5em 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 280px;
}

.entry-content .wp-block-cover .wp-block-cover__inner-container,
.page-content .wp-block-cover .wp-block-cover__inner-container ,
.editor-styles-wrapper .wp-block-cover .wp-block-cover__inner-container  {
	color: #fff;
}

.entry-content .wp-block-media-text,
.page-content .wp-block-media-text ,
.editor-styles-wrapper .wp-block-media-text  {
	margin: 1.5em 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--surface);
}

.entry-content .wp-block-media-text__content,
.page-content .wp-block-media-text__content ,
.editor-styles-wrapper .wp-block-media-text__content  {
	padding: clamp(1rem, 3vw, 1.75rem);
}

.entry-content .wp-block-media-text__media img,
.page-content .wp-block-media-text__media img ,
.editor-styles-wrapper .wp-block-media-text__media img  {
	border-radius: 0;
	box-shadow: none;
}

.entry-content::after,
.page-content::after ,
.editor-styles-wrapper::after  {
	content: "";
	display: table;
	clear: both;
}

/* вЂ” Buttons вЂ” */

.entry-content .wp-block-buttons,
.page-content .wp-block-buttons ,
.editor-styles-wrapper .wp-block-buttons  {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 1.5em 0;
}

.entry-content .wp-block-button__link,
.page-content .wp-block-button__link ,
.editor-styles-wrapper .wp-block-button__link  {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--btn-height);
	padding: 0 28px;
	border: none;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--primary) 0%, #00c4ff 100%);
	color: #fff;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	box-shadow: 0 8px 24px var(--primary-glow);
	transition:
		transform 0.2s var(--ease),
		box-shadow 0.2s var(--ease),
		color 0.2s var(--ease);
}

.entry-content .wp-block-button__link:hover,
.page-content .wp-block-button__link:hover ,
.editor-styles-wrapper .wp-block-button__link:hover  {
	color: #fff;
	box-shadow: 0 12px 32px var(--primary-glow);
}

.entry-content .wp-block-button.is-style-outline .wp-block-button__link,
.page-content .wp-block-button.is-style-outline .wp-block-button__link ,
.editor-styles-wrapper .wp-block-button.is-style-outline .wp-block-button__link  {
	background: transparent;
	color: var(--text);
	border: 1.5px solid var(--border);
	box-shadow: none;
}

.entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover,
.page-content .wp-block-button.is-style-outline .wp-block-button__link:hover ,
.editor-styles-wrapper .wp-block-button.is-style-outline .wp-block-button__link:hover  {
	border-color: var(--primary);
	color: var(--primary);
}

/* вЂ” File block вЂ” */

.entry-content .wp-block-file,
.page-content .wp-block-file ,
.editor-styles-wrapper .wp-block-file  {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 1.25em 0;
	padding: 1em 1.15em;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
}

.entry-content .wp-block-file__button,
.page-content .wp-block-file__button ,
.editor-styles-wrapper .wp-block-file__button  {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 20px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s var(--ease);
}

.entry-content .wp-block-file__button:hover,
.page-content .wp-block-file__button:hover ,
.editor-styles-wrapper .wp-block-file__button:hover  {
	background: var(--primary-dark);
	color: #fff;
}

/* вЂ” Details вЂ” */

.entry-content .wp-block-details,
.page-content .wp-block-details ,
.editor-styles-wrapper .wp-block-details  {
	margin: 1em 0;
	padding: 0 1.15em;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	border-left: 3px solid transparent;
	transition:
		border-color 0.3s,
		box-shadow 0.3s;
}

.entry-content .wp-block-details[open],
.page-content .wp-block-details[open] ,
.editor-styles-wrapper .wp-block-details[open]  {
	border-color: rgba(0, 174, 239, 0.2);
	border-left-color: var(--primary);
	box-shadow: var(--shadow-md);
}

.entry-content .wp-block-details summary,
.page-content .wp-block-details summary ,
.editor-styles-wrapper .wp-block-details summary  {
	padding: 1.1em 0;
	font-weight: 600;
	color: var(--text);
	cursor: pointer;
	list-style: none;
}

.entry-content .wp-block-details summary::-webkit-details-marker,
.page-content .wp-block-details summary::-webkit-details-marker ,
.editor-styles-wrapper .wp-block-details summary::-webkit-details-marker  {
	display: none;
}

.entry-content .wp-block-details[open] summary,
.page-content .wp-block-details[open] summary ,
.editor-styles-wrapper .wp-block-details[open] summary  {
	color: var(--primary);
}

.entry-content .wp-block-details > :not(summary),
.page-content .wp-block-details > :not(summary) ,
.editor-styles-wrapper .wp-block-details > :not(summary)  {
	padding-bottom: 1.15em;
	color: var(--text-muted);
}

/* вЂ” Columns, group, stack вЂ” */

.entry-content .wp-block-columns,
.page-content .wp-block-columns ,
.editor-styles-wrapper .wp-block-columns  {
	gap: clamp(16px, 3vw, 28px);
	margin: 1.5em 0;
}

.entry-content .wp-block-group,
.page-content .wp-block-group ,
.editor-styles-wrapper .wp-block-group  {
	margin: 1.5em 0;
}

.entry-content .wp-block-group.has-background,
.page-content .wp-block-group.has-background ,
.editor-styles-wrapper .wp-block-group.has-background  {
	padding: clamp(1rem, 3vw, 1.75rem);
	border-radius: var(--radius-lg);
}

.entry-content .wp-block-group.is-style-card,
.page-content .wp-block-group.is-style-card ,
.editor-styles-wrapper .wp-block-group.is-style-card  {
	padding: clamp(1rem, 3vw, 1.75rem);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

/* вЂ” Embeds вЂ” */

.entry-content .wp-block-embed,
.page-content .wp-block-embed ,
.editor-styles-wrapper .wp-block-embed  {
	margin: 1.5em 0;
}

.entry-content .wp-block-embed__wrapper,
.page-content .wp-block-embed__wrapper ,
.editor-styles-wrapper .wp-block-embed__wrapper  {
	border-radius: var(--radius);
	overflow: hidden;
}

.entry-content .wp-block-embed iframe,
.page-content .wp-block-embed iframe,
.editor-styles-wrapper .wp-block-embed iframe,
.entry-content .wp-block-embed video,
.page-content .wp-block-embed video ,
.editor-styles-wrapper .wp-block-embed video  {
	max-width: 100%;
	border-radius: var(--radius);
}

/* вЂ” Widget blocks вЂ” */

.entry-content :is(.wp-block-archives, .wp-block-categories, .wp-block-latest-posts, .wp-block-page-list, .wp-block-rss),
.page-content :is(.wp-block-archives, .wp-block-categories, .wp-block-latest-posts, .wp-block-page-list, .wp-block-rss) ,
.editor-styles-wrapper :is(.wp-block-archives, .wp-block-categories, .wp-block-latest-posts, .wp-block-page-list, .wp-block-rss)  {
	margin: 1.25em 0;
}

.entry-content :is(.wp-block-archives-list, .wp-block-categories-list, .wp-block-latest-posts__list, .wp-block-page-list, .wp-block-rss),
.page-content :is(.wp-block-archives-list, .wp-block-categories-list, .wp-block-latest-posts__list, .wp-block-page-list, .wp-block-rss) ,
.editor-styles-wrapper :is(.wp-block-archives-list, .wp-block-categories-list, .wp-block-latest-posts__list, .wp-block-page-list, .wp-block-rss)  {
	list-style: none;
	padding-left: 0;
}

.entry-content :is(.wp-block-archives-list, .wp-block-categories-list, .wp-block-latest-posts__list, .wp-block-page-list, .wp-block-rss) a,
.page-content :is(.wp-block-archives-list, .wp-block-categories-list, .wp-block-latest-posts__list, .wp-block-page-list, .wp-block-rss) a ,
.editor-styles-wrapper :is(.wp-block-archives-list, .wp-block-categories-list, .wp-block-latest-posts__list, .wp-block-page-list, .wp-block-rss) a  {
	font-weight: 500;
}

.entry-content .wp-block-latest-posts li,
.page-content .wp-block-latest-posts li ,
.editor-styles-wrapper .wp-block-latest-posts li  {
	margin-bottom: 0.85em;
	padding-bottom: 0.85em;
	border-bottom: 1px solid var(--border);
}

.entry-content .wp-block-latest-posts li:last-child,
.page-content .wp-block-latest-posts li:last-child ,
.editor-styles-wrapper .wp-block-latest-posts li:last-child  {
	border-bottom: none;
	padding-bottom: 0;
}

.entry-content .wp-block-latest-posts__post-date,
.page-content .wp-block-latest-posts__post-date ,
.editor-styles-wrapper .wp-block-latest-posts__post-date  {
	display: block;
	margin-top: 0.25em;
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.entry-content .wp-block-calendar,
.page-content .wp-block-calendar ,
.editor-styles-wrapper .wp-block-calendar  {
	margin: 1.25em 0;
}

.entry-content .wp-block-calendar table,
.page-content .wp-block-calendar table ,
.editor-styles-wrapper .wp-block-calendar table  {
	margin: 0;
}

.entry-content .wp-block-calendar caption,
.page-content .wp-block-calendar caption ,
.editor-styles-wrapper .wp-block-calendar caption  {
	margin-bottom: 0.65em;
	font-weight: 700;
}

.entry-content .wp-block-tag-cloud,
.page-content .wp-block-tag-cloud ,
.editor-styles-wrapper .wp-block-tag-cloud  {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 1.25em 0;
}

.entry-content .tag-cloud-link,
.page-content .tag-cloud-link ,
.editor-styles-wrapper .tag-cloud-link  {
	display: inline-block;
	padding: 0.35em 0.85em;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--surface);
	font-size: 0.8125rem !important;
	font-weight: 600;
	color: var(--text-muted);
	text-decoration: none;
	transition:
		border-color 0.2s,
		color 0.2s;
}

.entry-content .tag-cloud-link:hover,
.page-content .tag-cloud-link:hover ,
.editor-styles-wrapper .tag-cloud-link:hover  {
	border-color: var(--primary);
	color: var(--primary);
}

.entry-content .wp-block-search,
.page-content .wp-block-search ,
.editor-styles-wrapper .wp-block-search  {
	margin: 1.25em 0;
}

.entry-content .wp-block-search__inside-wrapper,
.page-content .wp-block-search__inside-wrapper ,
.editor-styles-wrapper .wp-block-search__inside-wrapper  {
	display: flex;
	gap: 8px;
}

.entry-content .wp-block-search__input,
.page-content .wp-block-search__input ,
.editor-styles-wrapper .wp-block-search__input  {
	flex: 1;
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--surface);
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--text);
}

.entry-content .wp-block-search__input:focus,
.page-content .wp-block-search__input:focus ,
.editor-styles-wrapper .wp-block-search__input:focus  {
	outline: 2px solid rgba(0, 174, 239, 0.35);
	border-color: var(--primary);
}

.entry-content .wp-block-search__button,
.page-content .wp-block-search__button ,
.editor-styles-wrapper .wp-block-search__button  {
	min-height: 44px;
	padding: 0 20px;
	border: none;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s var(--ease);
}

.entry-content .wp-block-search__button:hover,
.page-content .wp-block-search__button:hover ,
.editor-styles-wrapper .wp-block-search__button:hover  {
	background: var(--primary-dark);
}

.entry-content .wp-block-latest-comments,
.page-content .wp-block-latest-comments ,
.editor-styles-wrapper .wp-block-latest-comments  {
	list-style: none;
	padding-left: 0;
	margin: 1.25em 0;
}

.entry-content .wp-block-latest-comments__comment,
.page-content .wp-block-latest-comments__comment ,
.editor-styles-wrapper .wp-block-latest-comments__comment  {
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 1px solid var(--border);
}

.entry-content .wp-block-latest-comments__comment-excerpt,
.page-content .wp-block-latest-comments__comment-excerpt ,
.editor-styles-wrapper .wp-block-latest-comments__comment-excerpt  {
	color: var(--text-muted);
	font-size: 0.925rem;
}

/* вЂ” Social links вЂ” */

.entry-content .wp-block-social-links,
.page-content .wp-block-social-links ,
.editor-styles-wrapper .wp-block-social-links  {
	gap: 10px;
	margin: 1.25em 0;
	padding-left: 0;
	list-style: none;
}

.entry-content .wp-block-social-link-anchor,
.page-content .wp-block-social-link-anchor ,
.editor-styles-wrapper .wp-block-social-link-anchor  {
	color: var(--text);
	transition: color 0.2s var(--ease);
}

.entry-content .wp-block-social-link-anchor:hover,
.page-content .wp-block-social-link-anchor:hover ,
.editor-styles-wrapper .wp-block-social-link-anchor:hover  {
	color: var(--primary);
}

/* вЂ” Navigation (in content) вЂ” */

.entry-content .wp-block-navigation,
.page-content .wp-block-navigation ,
.editor-styles-wrapper .wp-block-navigation  {
	margin: 1.25em 0;
}

.entry-content .wp-block-navigation-item__content,
.page-content .wp-block-navigation-item__content ,
.editor-styles-wrapper .wp-block-navigation-item__content  {
	color: var(--text);
	font-weight: 600;
	text-decoration: none;
}

.entry-content .wp-block-navigation-item__content:hover,
.page-content .wp-block-navigation-item__content:hover ,
.editor-styles-wrapper .wp-block-navigation-item__content:hover  {
	color: var(--primary);
}

/* вЂ” Query / post template blocks вЂ” */

.entry-content :is(.wp-block-post-title, .wp-block-query-title),
.page-content :is(.wp-block-post-title, .wp-block-query-title) ,
.editor-styles-wrapper :is(.wp-block-post-title, .wp-block-query-title)  {
	margin: 0 0 0.5em;
	font-size: clamp(1.15rem, 2.5vw, 1.35rem);
}

.entry-content .wp-block-post-excerpt,
.page-content .wp-block-post-excerpt ,
.editor-styles-wrapper .wp-block-post-excerpt  {
	color: var(--text-muted);
}

.entry-content .wp-block-post-terms,
.page-content .wp-block-post-terms,
.editor-styles-wrapper .wp-block-post-terms {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 1.25em 0;
}

.entry-content .wp-block-post-terms a,
.page-content .wp-block-post-terms a,
.editor-styles-wrapper .wp-block-post-terms a {
	display: inline-flex;
	align-items: center;
	padding: 0.3em 0.8em;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--bg);
	color: var(--text-muted);
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid var(--border);
}

.entry-content .wp-block-post-terms a:hover,
.page-content .wp-block-post-terms a:hover,
.editor-styles-wrapper .wp-block-post-terms a:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: var(--primary-soft);
}

.entry-content .wp-block-read-more,
.page-content .wp-block-read-more,
.editor-styles-wrapper .wp-block-read-more {
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	color: var(--primary);
	border-bottom: none;
}

.entry-content .wp-block-post-navigation-link,
.page-content .wp-block-post-navigation-link,
.editor-styles-wrapper .wp-block-post-navigation-link {
	margin: 1.25em 0;
	font-weight: 600;
}

.entry-content .wp-block-post-navigation-link a,
.page-content .wp-block-post-navigation-link a,
.editor-styles-wrapper .wp-block-post-navigation-link a {
	border-bottom: none;
}

.entry-content .wp-block-breadcrumbs,
.page-content .wp-block-breadcrumbs,
.editor-styles-wrapper .wp-block-breadcrumbs {
	margin: 0 0 1.25em;
	font-size: 0.875rem;
	color: var(--text-muted);
}

.entry-content .wp-block-breadcrumbs a,
.page-content .wp-block-breadcrumbs a,
.editor-styles-wrapper .wp-block-breadcrumbs a {
	border-bottom: none;
	font-weight: 500;
}

.entry-content .wp-block-icon,
.page-content .wp-block-icon,
.editor-styles-wrapper .wp-block-icon {
	margin: 1em 0;
	line-height: 0;
}

.entry-content .wp-block-icon svg,
.page-content .wp-block-icon svg,
.editor-styles-wrapper .wp-block-icon svg {
	fill: currentColor;
}

.entry-content .wp-block-math,
.page-content .wp-block-math,
.editor-styles-wrapper .wp-block-math {
	margin: 1.25em 0;
	overflow-x: auto;
}

.entry-content .wp-block-freeform,
.page-content .wp-block-freeform,
.editor-styles-wrapper .wp-block-freeform {
	margin: 1.25em 0;
}

.entry-content .wp-block-comments,
.page-content .wp-block-comments,
.editor-styles-wrapper .wp-block-comments,
.entry-content .wp-block-post-comments-form,
.page-content .wp-block-post-comments-form,
.editor-styles-wrapper .wp-block-post-comments-form,
.entry-content .comment-respond,
.page-content .comment-respond {
	margin: 2em 0;
}

.entry-content .comment-form input[type="text"],
.page-content .comment-form input[type="text"],
.entry-content .comment-form input[type="email"],
.page-content .comment-form input[type="email"],
.entry-content .comment-form input[type="url"],
.page-content .comment-form input[type="url"],
.entry-content .comment-form textarea,
.page-content .comment-form textarea {
	width: 100%;
	max-width: 100%;
	padding: 0.75em 1em;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--surface);
	font-family: var(--font-body);
	font-size: 0.925rem;
	color: var(--text);
}

.entry-content .comment-form .form-submit .submit,
.page-content .comment-form .form-submit .submit {
	min-height: 44px;
	padding: 0 24px;
	border: none;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.entry-content .wp-block-avatar img,
.page-content .wp-block-avatar img,
.editor-styles-wrapper .wp-block-avatar img {
	border-radius: 999px;
	box-shadow: none;
}

/* Misc: more tag, spacer, html, shortcode */

.entry-content .wp-block-more,
.page-content .wp-block-more,
.editor-styles-wrapper .wp-block-more,
.entry-content .wp-block-nextpage,
.page-content .wp-block-nextpage,
.editor-styles-wrapper .wp-block-nextpage {
	margin: 2em 0;
}

.entry-content .wp-block-spacer,
.page-content .wp-block-spacer,
.editor-styles-wrapper .wp-block-spacer {
	margin: 0;
}

.entry-content .wp-block-html,
.page-content .wp-block-html,
.editor-styles-wrapper .wp-block-html {
	margin: 1.25em 0;
}

.entry-content .wp-block-shortcode,
.page-content .wp-block-shortcode,
.editor-styles-wrapper .wp-block-shortcode {
	margin: 1.25em 0;
}


/* _fancybox-accordion.css */
/* Fancybox вЂ” above fixed header */
:root {
	--fancybox-zIndex: 10050;
}

html.with-fancybox {
	overflow: hidden !important;
}

html.with-fancybox .header,
html.xcom-fancybox-open .header {
	z-index: 1 !important;
}

.fancybox__container {
	z-index: var(--fancybox-zIndex) !important;
}

.fancybox__container .f-button.is-close-btn {
	z-index: calc(var(--fancybox-zIndex) + 2);
}

.entry-content a[data-fancybox] img,
.page-content a[data-fancybox] img,
.editor-styles-wrapper a[data-fancybox] img {
	cursor: zoom-in;
}

/* Image lightbox links — no content-link underline on hover */
.entry-content a[data-fancybox],
.page-content a[data-fancybox],
.editor-styles-wrapper a[data-fancybox] {
	border-bottom: none;
	color: inherit;
	font-weight: inherit;
}

.entry-content a[data-fancybox]:hover,
.page-content a[data-fancybox]:hover,
.editor-styles-wrapper a[data-fancybox]:hover {
	border-bottom-color: transparent;
	color: inherit;
}

/* Gutenberg Accordion — same motion/look as FAQ (no numbers) */
body.has-accordion .entry-content {
	max-width: min(720px, 100%);
}

.wp-block-accordion {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	margin: 0;
}

.wp-block-accordion-item {
	display: grid;
	grid-template-rows: auto 0fr;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin: 0;
	border-left: 3px solid transparent;
	transition:
		border-color 0.3s,
		box-shadow 0.3s,
		grid-template-rows 0.4s var(--ease);
}

.wp-block-accordion-item.is-open {
	grid-template-rows: auto 1fr;
	border-color: rgba(0, 174, 239, 0.2);
	border-left-color: var(--primary);
	box-shadow: var(--shadow-md);
}

.wp-block-accordion-heading {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.wp-block-accordion-heading__toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 24px;
	border: none;
	background: transparent !important;
	text-align: left;
	font-family: var(--font-body);
	cursor: pointer;
	box-shadow: none;
	color: inherit;
}

.wp-block-accordion-heading__toggle:focus,
.wp-block-accordion-heading__toggle:focus-visible {
	outline: none;
	box-shadow: none;
}

.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title {
	text-decoration: none;
}

.wp-block-accordion-heading__toggle-title {
	flex: 1;
	min-width: 0;
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.45;
	text-decoration: none;
	transition: color 0.3s;
}

.wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-title {
	color: var(--primary);
}

.wp-block-accordion-heading__toggle-icon,
.wp-block-accordion-item > .wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon,
.wp-block-accordion-item.is-open > .wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon {
	display: block;
	flex-shrink: 0;
	align-items: unset;
	justify-content: unset;
	width: 32px;
	height: 32px;
	position: relative;
	border-radius: 50%;
	background: var(--bg);
	border: 1px solid var(--border);
	font-size: 0 !important;
	line-height: 0;
	color: transparent !important;
	overflow: hidden;
	transform: none;
	transition:
		transform 0.35s var(--ease),
		background 0.3s,
		border-color 0.3s;
}

.wp-block-accordion-heading__toggle-icon::before,
.wp-block-accordion-heading__toggle-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: var(--primary);
	border-radius: 1px;
	transform: translate(-50%, -50%);
	transition: background 0.3s;
}

.wp-block-accordion-heading__toggle-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon,
.wp-block-accordion-item.is-open > .wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon {
	background: var(--primary);
	border-color: var(--primary);
	transform: rotate(180deg);
}

.wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon::before,
.wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon::after {
	background: #fff;
}

.wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.wp-block-accordion-panel,
.wp-block-accordion-panel[inert],
.wp-block-accordion-panel[aria-hidden="true"] {
	display: block;
	min-height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0 24px;
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.7;
	transition: padding-bottom 0.4s var(--ease);
}

.wp-block-accordion-item.is-open .wp-block-accordion-panel {
	padding-bottom: 22px;
}

.wp-block-accordion-panel > *:first-child {
	margin-top: 0;
}

.wp-block-accordion-panel > *:last-child {
	margin-bottom: 0;
}

.wp-block-accordion-panel p {
	margin: 0 0 12px;
}

.wp-block-accordion-panel p:last-child {
	margin-bottom: 0;
}

.wp-block-accordion-panel ol {
	padding-left: 20px;
	list-style: decimal;
	margin: 0 0 12px;
}

.wp-block-accordion-panel ul {
	padding-left: 20px;
	list-style: disc;
	margin: 0 0 12px;
}

.wp-block-accordion-panel li {
	margin-bottom: 6px;
}

.wp-block-accordion-panel a {
	color: var(--primary);
	font-weight: 600;
}

.wp-block-accordion-panel a:hover {
	color: var(--primary-dark);
	text-decoration: underline;
}


/* _responsive.css */
/* Responsive */
@media (min-width: 768px) {
	.content-grid--archive {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}
}


@media (min-width: 1024px) {
	.footer__grid {
		grid-template-columns: auto minmax(0, 1fr) auto;
		column-gap: 48px;
		row-gap: 0;
		align-items: start;
		justify-items: stretch;
		text-align: left;
	}

	.footer__brand {
		grid-column: auto;
		grid-row: auto;
		align-items: flex-start;
		text-align: left;
		max-width: 280px;
		justify-self: start;
	}

	.footer__middle {
		grid-column: auto;
		grid-row: auto;
		grid-template-columns: auto auto;
		gap: 40px 56px;
		justify-content: center;
		justify-self: center;
		justify-items: start;
		width: max-content;
		max-width: 100%;
		margin-inline: 0;
	}

	.footer__col {
		align-items: flex-start;
		text-align: left;
	}

	.footer__nav {
		align-items: flex-start;
	}

	.footer__nav a {
		text-align: left;
	}

	.footer__hours {
		margin-inline: 0;
	}

	.footer__care {
		grid-column: auto;
		grid-row: auto;
		align-items: flex-end;
		text-align: right;
		justify-self: end;
	}

	.footer__care .footer__title {
		width: 100%;
		text-align: right;
	}

	.footer__soc {
		justify-content: flex-end;
	}

	.footer__phone {
		justify-content: flex-end;
	}

	.footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}

	.footer__bottom-links {
		justify-content: flex-end;
	}
}

@media (min-width: 1200px) {
	.content-grid--archive {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 28px;
	}

	.footer__grid {
		column-gap: 64px;
	}

	.footer__middle {
		gap: 48px 72px;
	}
}

@media (min-width: 1024px) {
	:root {
		--container-pad: 24px;
	}

	.header__burger {
		display: none;
	}

	.header__nav {
		display: flex;
	}

	.header__actions {
		display: flex;
		flex-shrink: 0;
	}

	.header__nav a,
	.header__nav .header__more-toggle {
		padding: 10px 12px;
		font-size: 13px;
	}

	.mobile-menu {
		display: none !important;
	}
}

@media (min-width: 1024px) and (max-width: 1199px) {
	.header__actions .btn--outline {
		display: none;
	}
}

@media (min-width: 1200px) {
	.header__nav a,
	.header__nav .header__more-toggle {
		padding: 10px 16px;
		font-size: 14px;
	}
}

@media (max-width: 1023px) {
	:root {
		--container-pad: 20px;
	}

	.footer {
		padding: 40px 0 28px;
	}

	.footer__grid {
		gap: 40px;
	}

	.footer__middle {
		gap: 40px;
	}

	.footer__logo {
		margin-bottom: 14px;
	}

	.footer__tagline {
		margin-bottom: 10px;
	}

	.footer__title {
		margin-bottom: 16px;
	}

	.footer__title--spaced {
		margin-top: 32px;
	}

	.footer__soc {
		gap: 10px;
		margin-bottom: 18px;
	}

	.footer__phone {
		margin-bottom: 12px;
	}

	.footer__hours li {
		padding: 10px 0;
	}

	.footer__bottom {
		margin-top: 40px;
		padding-top: 24px;
		gap: 12px;
	}
}

@media (max-width: 768px) {
	/* Prevent iOS Safari / Chrome auto-zoom on generic site inputs */
	input[type="text"],
	input[type="number"],
	input[type="password"],
	input[type="email"],
	input[type="tel"],
	input[type="url"],
	input[type="search"],
	textarea,
	select,
	.xcom-site-map__search-input {
		font-size: 16px !important;
	}

	/* Forms: smaller field text & placeholders on mobile */
	.form__field input,
	.form__field select,
	.form__field textarea,
	.xcom-connect-form .form__field input,
	.xcom-connect-form .form__field select,
	.xcom-o500-form .form__field input,
	.xcom-o500-form .form__field select,
	.xcom-job-form .form__field input,
	.xcom-job-form .form__field select,
	.xcom-ntv-form .form__field input,
	.xcom-ntv-form .form__field select,
	.header__top__pay-auth-input {
		font-size: 13px !important;
	}

	.header__top__pay-input {
		font-size: 13px !important;
	}

	.form__field input::placeholder,
	.form__field textarea::placeholder,
	.xcom-connect-form .form__field input::placeholder,
	.xcom-o500-form .form__field input::placeholder,
	.xcom-job-form .form__field input::placeholder,
	.xcom-ntv-form .form__field input::placeholder,
	.header__top__pay-auth-input::placeholder {
		font-size: 12px !important;
	}

	.form__field input::-webkit-input-placeholder,
	.xcom-connect-form .form__field input::-webkit-input-placeholder,
	.xcom-o500-form .form__field input::-webkit-input-placeholder,
	.xcom-job-form .form__field input::-webkit-input-placeholder,
	.xcom-ntv-form .form__field input::-webkit-input-placeholder,
	.header__top__pay-auth-input::-webkit-input-placeholder {
		font-size: 12px !important;
	}

	.form__field input::-moz-placeholder,
	.xcom-connect-form .form__field input::-moz-placeholder,
	.xcom-o500-form .form__field input::-moz-placeholder,
	.xcom-job-form .form__field input::-moz-placeholder,
	.xcom-ntv-form .form__field input::-moz-placeholder,
	.header__top__pay-auth-input::-moz-placeholder {
		font-size: 12px !important;
	}

	:root {
		--container-pad: 18px;
		--header-inner-h: 64px;
		--section-pad-y: var(--section-pad-y-mobile);
	}

	.entry-content :is(.wp-block-image, figure).alignleft,
	.entry-content :is(.wp-block-image, figure).alignright,
	.page-content :is(.wp-block-image, figure).alignleft,
	.page-content :is(.wp-block-image, figure).alignright {
		float: none;
		margin: 1.25em auto;
	}

	.content-grid--single {
		padding-inline: var(--container-pad);
	}

	article.single-post.card {
		border-radius: var(--radius);
	}

	article.single-post .entry-header,
	article.single-post .entry-content,
	article.single-post .entry-footer {
		padding-inline: 18px;
	}

	.single-post__divider {
		margin-inline: 18px;
	}

	.entry-content .wp-block-media-text.is-stacked-on-mobile,
	.page-content .wp-block-media-text.is-stacked-on-mobile {
		border-radius: var(--radius);
	}

	.entry-content .wp-block-buttons,
	.page-content .wp-block-buttons {
		flex-direction: column;
	}

	.entry-content .wp-block-button,
	.page-content .wp-block-button {
		width: 100%;
	}

	.entry-content .wp-block-button__link,
	.page-content .wp-block-button__link {
		width: 100%;
	}

	.entry-content :is(.wp-block-table, table),
	.page-content :is(.wp-block-table, table) {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

@media (max-width: 480px) {
	:root {
		--container-pad: 16px;
	}

	.footer {
		padding: 36px 0 24px;
	}

	.footer__grid,
	.footer__middle {
		gap: 36px;
	}

	.footer__title--spaced {
		margin-top: 28px;
	}

	.footer__nav a {
		font-size: 13px;
	}

	.footer__hours li {
		gap: 10px;
		padding: 10px 0;
		font-size: 13px;
	}

	.footer__phone {
		font-size: 17px;
		gap: 8px;
		margin-bottom: 12px;
	}

	.footer__phone svg,
	.footer__phone .bi {
		width: 20px;
		height: 20px;
		font-size: 20px;
	}

	.footer__bottom {
		margin-top: 36px;
		padding-top: 22px;
	}

	.faq-item__question {
		padding: 16px 18px;
		gap: 12px;
	}

	.wp-block-accordion-heading__toggle {
		padding: 16px 18px;
		gap: 12px;
	}

	.wp-block-accordion-heading__toggle-title {
		font-size: 14px;
	}

	.wp-block-accordion-panel {
		padding-inline: 18px;
	}

	.wp-block-accordion-item.is-open .wp-block-accordion-panel {
		padding-bottom: 18px;
	}

	.faq-item__meta {
		gap: 12px;
	}

	.faq-item__num {
		width: 28px;
		font-size: 12px;
	}

	.faq-item__text {
		font-size: 1rem;
	}

	.faq-item__answer-inner {
		padding: 0 18px;
	}

	.faq-item.is-open .faq-item__answer-inner {
		padding-bottom: 18px;
	}
}

@media (min-width: 992px) {
	.faq__layout {
		display: grid;
		grid-template-columns: minmax(260px, 340px) 1fr;
		gap: clamp(40px, 5vw, 72px);
	}

	.faq__intro {
		position: sticky;
		top: calc(var(--header-h) + 24px);
	}

	body.admin-bar .faq__intro {
		top: calc(var(--header-h) + var(--wp-admin-bar-offset) + 24px);
	}
}

@media screen and (max-width: 782px) {
	body.admin-bar .faq__intro {
		top: calc(var(--header-h) + var(--wp-admin-bar-offset) + 24px);
	}
}

@media (max-width: 344px) {
	html {
		font-size: 14px;
	}

	body {
		overflow-x: hidden;
	}

	.footer {
		padding: 32px 0 22px;
	}

	.footer__grid,
	.footer__middle {
		gap: 32px;
	}

	.footer__support {
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

/* Lowercase placeholder text */
::placeholder {
	text-transform: lowercase;
}
::-webkit-input-placeholder {
	text-transform: lowercase;
}
::-moz-placeholder {
	text-transform: lowercase;
}
:-ms-input-placeholder {
	text-transform: lowercase;
}

/* Global alignment & premium styling for form alerts */
.form__alert {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 16px 20px;
	border-radius: 16px;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5;
	box-sizing: border-box;
}

.form__alert[style*="display: none"],
.form__alert[style*="display:none"] {
	display: none !important;
}

.form__alert-text {
	padding-top: 1px;
}

.form__alert-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	line-height: 1;
	margin-top: 1px;
}

.form__alert-icon .bi,
.form__alert-icon .dashicons {
	width: 10px !important;
	height: 10px !important;
	font-size: 10px !important;
	line-height: 1 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

/* Universal Form Label styling across all forms */
.form__label {
	display: block !important;
	text-align: left !important;
	font-size: 0.84375rem !important;
	font-weight: 600 !important;
	color: var(--text-muted) !important;
	letter-spacing: 0.01em !important;
	margin-bottom: 2px !important;
	cursor: pointer;
}

/* Pin form__contacts footer to bottom of form cards */
[class*="form__card"] {
	display: flex !important;
	flex-direction: column !important;
}

[class*="form__body"] {
	display: flex !important;
	flex-direction: column !important;
	flex: 1 1 auto !important;
}

.form__contacts {
	margin-top: auto !important;
}

/* Loading state: Hide tabs, header, form body & contacts, show ONLY wifi-loader centered */
[class*="form__card"].is-loading > *:not(.wifi-loader):not([id*="wifi-loader"]) {
	display: none !important;
}

[class*="form__card"].is-loading .wifi-loader,
[class*="form__card"].is-loading [id*="wifi-loader"] {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 280px !important;
	margin: auto !important;
}

