:root {
	--bg-dark: #000000;
	--text-light: #ffffff;
	--neon-purple: #FF00FF;
	--electric-blue: #00FFFF;
	--liquid-gold: #FFD700;
	--glass-bg: rgba(25, 25, 25, 0.4);
	--glass-border: rgba(255, 255, 255, 0.1);
	--font-primary: 'Rajdhani', sans-serif;
	--font-heading: 'Orbitron', sans-serif;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	width: 100%;
	max-width: 100%;
}

body {
	background-color: var(--bg-dark);
	color: var(--text-light);
	font-family: var(--font-primary);
	line-height: 1.6;
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
	position: relative;
}

.site-main {
	overflow-x: clip;
	max-width: 100%;
	min-width: 0;
}

.site-main img,
.site-main video,
.site-main iframe {
	max-width: 100%;
	height: auto;
}

.site-main iframe {
	border: 0;
}

h1, h2, h3, h4, h5, h6, .site-title, .marquee, .btn {
	font-family: var(--font-heading);
}

a {
	color: var(--electric-blue);
	text-decoration: none;
	transition: color 0.3s;
}

a:hover {
	color: var(--neon-purple);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(12px, 4vw, 20px);
}

.container-fluid {
	width: 100%;
	padding: 0 clamp(12px, 4vw, 20px);
}

.breadcrumbs {
	padding: 110px 0 0;
	font-size: 0.95rem;
	color: #98a2b3;
}

.breadcrumbs a {
	color: #d9dfea;
}

.breadcrumbs__sep {
	display: inline-block;
	margin: 0 8px;
	color: rgba(255, 255, 255, 0.35);
}

.widget-area {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.2);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	padding: 12px 0;
	transition: all 0.3s ease;
}

.site-header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-title {
	font-size: clamp(0.9rem, 1.6vw, 1.1rem);
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin: 0;
	max-width: 300px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.site-title a {
	color: #fff;
	opacity: 0.9;
}

.main-navigation ul {
	list-style: none;
	display: flex;
	gap: 32px;
	align-items: center;
	margin: 0;
	padding: 0;
}

.main-navigation a {
	font-size: 0.75rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	padding: 4px 0;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a:focus-visible {
	color: #fff;
	border-bottom-color: rgba(255, 255, 255, 0.3);
	outline: none;
}

/* 1. Hero Intro */
.hero-intro {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: 100px; /* offset for floating header */
}

.hero-bg {
	position: absolute;
	top: -5%;
	left: -5%;
	width: 110%;
	height: 110%;
	background: radial-gradient(circle at 50% 50%, rgba(25,25,25,1) 0%, rgba(0,0,0,1) 100%);
	z-index: -2;
}

.hero-layout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	position: relative;
	z-index: 2;
	width: 100%;
}

.hero-content {
	flex: 1;
	max-width: 55%;
}

.hero-label {
	font-family: var(--font-heading);
	font-size: clamp(0.8rem, 2vw, 1.2rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--electric-blue);
	margin-bottom: 20px;
	display: inline-block;
	padding: 8px 20px;
	border: 1px solid rgba(0, 255, 255, 0.3);
	border-radius: 30px;
	background: rgba(0, 255, 255, 0.05);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.hero-title {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 20px;
	background: linear-gradient(45deg, var(--text-light), var(--electric-blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
}

.hero-title.glitch::before,
.hero-title.glitch::after {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 0.8;
}

.hero-title.glitch::before {
	left: 2px;
	text-shadow: -2px 0 var(--neon-purple);
	animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
}

.hero-title.glitch::after {
	left: -2px;
	text-shadow: -2px 0 var(--electric-blue);
	animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
	0% { clip-path: inset(20% 0 80% 0); }
	20% { clip-path: inset(60% 0 10% 0); }
	40% { clip-path: inset(40% 0 50% 0); }
	60% { clip-path: inset(80% 0 5% 0); }
	80% { clip-path: inset(10% 0 70% 0); }
	100% { clip-path: inset(30% 0 50% 0); }
}

@keyframes glitch-anim-2 {
	0% { clip-path: inset(10% 0 60% 0); }
	20% { clip-path: inset(30% 0 20% 0); }
	40% { clip-path: inset(70% 0 10% 0); }
	60% { clip-path: inset(20% 0 50% 0); }
	80% { clip-path: inset(50% 0 30% 0); }
	100% { clip-path: inset(5% 0 80% 0); }
}

.text-neon {
	color: var(--neon-purple);
	text-shadow: 0 0 10px rgba(255, 0, 255, 0.5), 0 0 20px rgba(255, 0, 255, 0.3);
	-webkit-text-fill-color: var(--neon-purple);
}

.hero-subtitle {
	font-size: clamp(1.2rem, 2vw, 1.8rem);
	font-weight: 300;
	color: #ccc;
	max-width: 600px;
}

.hero-portrait { 
	flex: 1; 
	max-width: 45%; 
	display: flex; 
	justify-content: center; 
	align-items: flex-end; 
	position: relative; 
	height: auto;
	aspect-ratio: 1 / 1;
} 

/* NO BACKGROUND, NO BORDER, JUST THE CUTOUT PHOTO */
.hero-photo { 
	position: relative; 
	display: block;
	width: 100%; 
	height: auto; 
	max-height: 85vh; 
	object-fit: contain; 
	z-index: 0; 
	filter: drop-shadow(0 0 24px rgba(0, 255, 255, 0.22)) contrast(1.05);
}

.hero-photo-mobile {
	display: none;
}

.hero-photo-desktop {
	display: block;
}

.hero-photo.matrix-avatar {
	filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.4));
	transform: scale(1.1) translateY(5%);
}

.portrait-overlay { 
	display: none;
} 

/* Manifesto */
.manifesto {
	padding: 150px 0;
	min-height: 80vh;
	display: flex;
	align-items: center;
}

.manifesto-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.manifesto-text {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 300;
	opacity: 0.1; /* For scroll reveal */
	transition: opacity 1s ease;
}

.manifesto-text.visible {
	opacity: 1;
}

.manifesto-text p {
	margin-bottom: 20px;
}

.manifesto-text ul {
	list-style: none;
	margin-bottom: 40px;
	font-size: clamp(1.2rem, 2vw, 1.8rem);
	color: #aaa;
}

.manifesto-text ul li {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}

.manifesto-text ul li::before {
	content: '>';
	position: absolute;
	left: 0;
	color: var(--neon-purple);
}

.manifesto-core {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 900;
	color: var(--liquid-gold);
	margin-top: 40px;
}

.manifesto-visual {
	flex: 1;
	max-width: 500px;
}

.manifesto-visual img {
	width: 100%;
	height: auto;
}

/* Architecture */
.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 60px;
	text-align: center;
}

.architecture {
	padding: 100px 0;
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	gap: 20px;
}

.module {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 15px;
	padding: 40px;
	position: relative;
	overflow: hidden;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: transform 0.3s, box-shadow 0.3s;
}

.module.wide {
	grid-column: span 2;
}

.module-scanline {
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent, rgba(0,255,255,0.2), transparent);
	opacity: 0;
	transition: opacity 0.3s;
}

.module:hover .module-scanline {
	opacity: 1;
	animation: scanline 2s infinite linear;
}

.module:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
	border-color: rgba(0, 255, 255, 0.5);
}

.glitch-hover {
	font-size: 1.5rem;
	font-weight: 700;
	position: relative;
	z-index: 1;
}

.module-visual {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0.15;
	pointer-events: none;
}

.module-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes scanline {
	0% { top: -100%; }
	100% { top: 100%; }
}

/* Showcase Accordion */
.showcase {
	padding: 100px 0;
}

.accordion-horizontal {
	display: flex;
	height: 600px;
	width: 100%;
	gap: 10px;
}

.accordion-panel {
	position: relative;
	flex: 1;
	overflow: hidden;
	border-radius: 15px;
	background: #111;
	transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	cursor: pointer;
}

.accordion-panel.active {
	flex: 5;
}

.panel-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-90deg);
	font-size: 1.5rem;
	font-weight: 900;
	white-space: nowrap;
	color: #fff;
	z-index: 10;
	transition: opacity 0.3s;
}

.accordion-panel.active .panel-title {
	opacity: 0;
}

.panel-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s;
}

.accordion-panel.active .panel-content {
	opacity: 1;
}

.panel-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: grayscale(100%) brightness(0.4);
	transition: filter 0.5s;
}

.accordion-panel.active:hover .panel-bg {
	filter: grayscale(0%) brightness(0.7);
}

.panel-info {
	position: absolute;
	bottom: 40px;
	left: 40px;
	z-index: 2;
}

.panel-info h3 {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--electric-blue);
	margin-top: 10px;
}

.panel-graphics {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #111;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 80px; 
	z-index: 1;
	opacity: 0.8;
	transition: opacity 0.5s;
}

.accordion-panel.active:hover .panel-graphics {
	opacity: 1;
}

/* Process Timeline */
.process {
	padding: 100px 0;
}

.process-desc {
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 60px;
	color: #ccc;
}

.timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding-left: 50px;
}

.timeline-line {
	position: absolute;
	top: 0;
	left: 20px;
	width: 2px;
	height: 100%;
	background: rgba(255,255,255,0.1);
}

.timeline-line::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: var(--neon-purple);
	box-shadow: 0 0 10px var(--neon-purple);
	transition: height 0.5s linear;
}

.timeline.charged .timeline-line::after {
	height: var(--charge-height, 0%);
}

.timeline-step {
	position: relative;
	margin-bottom: 60px;
	opacity: 0.5;
	transition: opacity 0.3s, text-shadow 0.3s;
}

.timeline-step.active {
	opacity: 1;
}

.timeline-step.active .step-content {
	text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.step-bullet {
	position: absolute;
	left: -35px;
	top: 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #333;
	border: 2px solid #666;
	transition: all 0.3s;
	z-index: 2;
}

.timeline-step.active .step-bullet {
	background: var(--neon-purple);
	border-color: #fff;
	box-shadow: 0 0 15px var(--neon-purple);
}

.step-content {
	font-size: 1.8rem;
	font-weight: 700;
}

.timeline-step.final .step-content {
	color: var(--liquid-gold);
	font-size: 2.2rem;
}

.timeline-step.final.active .step-bullet {
	background: var(--liquid-gold);
	box-shadow: 0 0 15px var(--liquid-gold);
}

/* Marquee */
.hall-of-value {
	padding: 100px 0;
	background: #050505;
	border-top: 1px solid #111;
	border-bottom: 1px solid #111;
	overflow: hidden;
}

.marquee-wrapper {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	margin-bottom: 60px;
}

.marquee {
	display: inline-block;
	font-size: 4rem;
	font-weight: 900;
	text-transform: uppercase;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255,255,255,0.2);
}

.statements {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	text-align: center;
}

.statement {
	font-size: 1.5rem;
	font-weight: 300;
	max-width: 600px;
	padding: 20px;
	background: rgba(255,255,255,0.02);
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.05);
}

/* Ultimate CTA */
.ultimate-cta {
	padding: 150px 0;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.cta-content {
	max-width: 900px;
}

.cta-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	margin-bottom: 30px;
	color: #fff;
}

.cta-subtitle {
	font-size: 1.5rem;
	color: #aaa;
	margin-bottom: 50px;
}

.cta-actions {
	display: flex;
	gap: 30px;
	justify-content: center;
	margin-bottom: 60px;
}

.btn {
	display: inline-block;
	padding: 20px 40px;
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 50px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s;
	color: var(--text-light);
	text-decoration: none;
	z-index: 1;
}

.btn-text {
	position: relative;
	z-index: 2;
}

.btn:hover,
.btn:focus,
.btn:focus-visible {
	color: var(--text-light);
}

.btn-primary {
	background: transparent;
	color: var(--text-light);
	border: 2px solid var(--neon-purple);
	box-shadow: 0 0 15px rgba(255,0,255,0.3);
}

.btn-outline {
	background: transparent;
	color: #00FFFF;
	border: 1px solid rgba(0, 255, 255, 0.3);
	transition: all 0.3s ease;
}

.btn-outline:hover {
	background: rgba(0, 255, 255, 0.1);
	border-color: #00FFFF;
	color: #fff !important;
	box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.btn-micro {
	padding: 10px 20px !important;
	font-size: 0.85rem !important;
	border-radius: 8px !important;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-secondary {
	background: transparent;
	color: var(--text-light);
	border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
	border-color: #fff;
	background: rgba(255,255,255,0.1);
	color: #fff;
}

.neon-btn:hover {
	background: var(--neon-purple);
	box-shadow: 0 0 30px var(--neon-purple);
	color: #fff !important;
}
.neon-btn:hover .btn-text {
	color: #fff !important;
}

.cta-contact p {
	font-size: 1.2rem;
	color: #ccc;
}

.highlight-name {
	color: var(--liquid-gold);
	font-weight: 900;
	font-size: 1.5rem;
}

/* Footer */
.site-footer {
	background: #050505;
	padding: 40px 0;
	border-top: 1px solid #111;
	text-align: center;
}

.hero-sphere-svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 150%;
	height: 150%;
	z-index: -1;
	opacity: 0.8;
}

/* Widgets */
.pagespeed-widget, .seo-graph-widget, .rich-results-widget {
	width: 80%;
	background: rgba(0, 0, 0, 0.5);
	padding: 20px;
	border-radius: 10px;
	border: 1px solid var(--glass-border);
}
.pagespeed-widget { max-width: 400px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.seo-graph-widget { max-width: 500px; }
.rich-results-widget { max-width: 400px; }
.ps-header, .graph-header, .rr-header { font-weight: 700; color: #fff; }
.ps-header { font-size: 1.2rem; }
.graph-header { margin-bottom: 20px; }
.rr-header { font-size: 1.2rem; margin-bottom: 10px; }
.ps-circles { display: flex; gap: 15px; width: 100%; justify-content: space-around; }
.ps-circle { position: relative; width: 60px; height: 60px; text-align: center; }
.ps-circle svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.circle-bg { fill: none; stroke: #222; stroke-width: 2.5; }
.circle-path { fill: none; stroke-width: 2.5; stroke-linecap: round; }
.ps-green { stroke: #0cce6b; }
.ps-score { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 1rem; font-weight: bold; color: #0cce6b; }
.ps-label { font-size: 0.7rem; color: #aaa; margin-top: 5px; }
.ps-metrics { display: flex; justify-content: space-between; width: 100%; font-size: 0.9rem; color: #aaa; }
.graph-svg { width: 100%; height: auto; }
.graph-line { stroke-dashoffset: 0; }
.graph-fill { animation: fadeFill 3s ease-out forwards; opacity: 0; }
@keyframes fadeFill { to { opacity: 1; } }
.rr-status { color: #0cce6b; font-size: 0.9rem; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid #333; }
.rr-items { display: flex; flex-direction: column; gap: 10px; }
.rr-item { font-size: 0.9rem; color: #ccc; display: flex; align-items: center; gap: 10px; }
.rr-check { color: #0cce6b; font-weight: bold; background: rgba(12, 206, 107, 0.2); border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.ai-kms-widget { width: 80%; max-width: 400px; display: flex; justify-content: center; align-items: center; }
.ai-svg { width: 100%; max-width: 200px; }
.ai-node.pulse { animation: aiPulseOpacity 2s ease-in-out infinite alternate; }
@keyframes aiPulseOpacity { from { opacity: 0.72; } to { opacity: 1; } }
.ai-line { stroke-dasharray: none; }

.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 30px; margin: 40px 0; }
.card-post { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 10px; padding: 20px; }

/* Блог (home.php / index.php): hero + сетка без minmax(320px) — иначе на 320px появляется горизонтальный скролл */
.blog-page-header {
	padding: clamp(5.25rem, 18vw, 9.25rem) 0 clamp(1.5rem, 5vw, 3.75rem);
	text-align: center;
	background: radial-gradient(circle at top, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
}

.blog-page-header__title {
	margin-bottom: clamp(0.75rem, 3vw, 1.25rem);
	word-break: break-word;
	hyphens: auto;
}

.blog-page-header__subtitle {
	margin-left: auto;
	margin-right: auto;
	max-width: min(40rem, 100%);
}

.site-main--blog-index .blog-index-content {
	padding-bottom: clamp(2rem, 6vw, 5rem);
}

.blog-feed {
	padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2.5rem, 8vw, 5rem);
}

.blog-feed .blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
	gap: clamp(1rem, 3vw, 1.875rem);
	width: 100%;
	min-width: 0;
}

.blog-card {
	background: var(--glass-bg, rgba(255, 255, 255, 0.03));
	border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.1));
	border-radius: 15px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-width: 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
	border-color: rgba(0, 255, 255, 0.25);
}

.blog-card__media {
	display: block;
	position: relative;
	padding-top: 56.25%;
	overflow: hidden;
}

.blog-card__media img,
.blog-card__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-card__placeholder {
	position: absolute;
	inset: 0;
	background: #111;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #555;
	font-size: 0.9rem;
}

.blog-card-content {
	padding: clamp(1rem, 3vw, 1.5rem);
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.blog-card .blog-meta {
	font-size: clamp(0.82rem, 2.5vw, 0.9rem);
	color: #888;
	margin-bottom: 12px;
}

.blog-card .blog-cat {
	color: var(--neon-color, #0ff);
}

.blog-card-title {
	font-size: clamp(1.1rem, 3.5vw, 1.4rem);
	margin-bottom: 12px;
	line-height: 1.3;
	word-break: break-word;
}

.blog-card-title a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.blog-card-title a:hover,
.blog-card-title a:focus-visible {
	color: var(--neon-color, #0ff);
}

.blog-card-excerpt {
	color: #ccc;
	font-size: clamp(0.95rem, 2.8vw, 1rem);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.blog-card .btn-read-more {
	margin-top: auto;
	display: inline-block;
	color: var(--neon-color, #0ff);
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	font-size: clamp(0.78rem, 2.8vw, 0.9rem);
	letter-spacing: 0.06em;
}

.blog-grid__empty {
	text-align: center;
	color: rgba(255, 255, 255, 0.75);
	grid-column: 1 / -1;
	width: 100%;
}

.blog-pagination {
	text-align: center;
	margin-top: clamp(2rem, 5vw, 3rem);
	grid-column: 1 / -1;
	width: 100%;
}

.blog-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	width: 100%;
}

.blog-pagination a,
.blog-pagination span {
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #fff;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.05);
	transition: background 0.2s ease, border-color 0.2s ease;
	display: inline-block;
	font-size: clamp(0.82rem, 2.8vw, 0.95rem);
}

.blog-pagination a:hover {
	background: rgba(0, 255, 255, 0.15);
	border-color: rgba(0, 255, 255, 0.45);
}

.blog-pagination .current {
	background: rgba(0, 255, 255, 0.2);
	border-color: rgba(0, 255, 255, 0.5);
	color: #0ff;
}

.card-post .entry-title {
	word-break: break-word;
}

.home .site-footer .footer-widgets, 
.home .skip-link { display: none !important; } 
.home .site-footer { padding: 20px 0; } 


/* =========================================
   SINGLE UNIFIED MOBILE RESPONSIVE BLOCK
   ========================================= */

@media (max-width: 1024px) {
	.hero-title { font-size: 3rem; }
	.hero-layout { gap: 20px; }
	.hero-portrait { max-width: 45%; }
	.hero-content { max-width: 55%; }
	.accordion-horizontal { height: 800px; flex-direction: column; }
	.accordion-panel { width: 100%; }
	.accordion-panel.active { flex: 5; }
	.panel-title { transform: translate(-50%, -50%) rotate(0deg); font-size: 1.2rem; }
	.panel-info h3 { font-size: 1.8rem; }
	.ps-circles { flex-wrap: wrap; }
	.module.wide { grid-column: span 1; }
}

@media (max-width: 768px) {
	.site-header__inner { flex-direction: column; gap: 10px; }
	.main-navigation ul { flex-wrap: wrap; justify-content: center; }
	
	.hero-intro { 
		padding-top: 130px; 
		padding-bottom: 40px; 
		min-height: initial; 
	}
	
	.hero-layout { 
		flex-direction: column; 
		gap: 30px; 
		text-align: center; 
		align-items: center;
	}
	
	.hero-content { 
		max-width: 100%; 
	}
	
	.hero-title { 
		font-size: 2rem; 
		margin-bottom: 15px; 
		word-wrap: break-word; /* Prevent text cutting off */
	}
	
	.hero-subtitle { 
		font-size: 1rem; 
		margin: 0 auto 20px auto; 
		line-height: 1.4;
	}
	
	.hero-portrait { 
		max-width: 90%; 
		width: 100%; 
		justify-content: center; 
		aspect-ratio: auto;
	}

	/* Сжимаем <picture> под sizes/srcset: не даём img с width:100% раздувать контейнер до 82vw без капа 420px */
	.hero-picture-mobile {
		display: block;
		width: min(82vw, 420px);
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.hero-photo {
		max-height: 60vh;
	}

	.hero-photo-mobile {
		display: block;
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
		max-height: none;
		max-width: 100%;
		object-fit: contain;
		margin: 0 auto;
	}

	.hero-photo-desktop {
		display: none;
	}

	.hero-contacts {
		justify-content: center;
		width: 100%;
	}

	.hero-contact-phone {
		max-width: 100%;
		overflow-wrap: anywhere;
		word-break: break-word;
		font-size: clamp(0.72rem, 3.5vw, 0.85rem);
		padding: 8px 14px;
	}

	.hero-content .blog-header__chips {
		width: 100%;
		justify-content: center;
	}

	.hero-content .blog-header__chips .semantic-chip {
		max-width: 100%;
		box-sizing: border-box;
	}

	.hero-title.glitch::before,
	.hero-title.glitch::after {
		display: none;
		animation: none;
	}
	
	.manifesto-flex { flex-direction: column; text-align: center; gap: 30px; }
	.manifesto-core { font-size: 1.8rem; margin-top: 20px; }
	.manifesto-text p { font-size: 1rem; line-height: 1.5; margin-bottom: 15px; text-align: center; }
	.manifesto-text ul { padding-left: 0; display: inline-block; text-align: left; }
	.manifesto-text ul li { font-size: 1rem; line-height: 1.4; margin-bottom: 10px; }
	.manifesto-text ul li::before { left: -20px; }
	
	.timeline { padding-left: 30px; }
	.timeline-line { left: 10px; }
	.step-bullet { left: -25px; width: 10px; height: 10px; }
	.step-content { font-size: 1.2rem; }
	.timeline-step.final .step-content { font-size: 1.5rem; }
	
	.cta-title { font-size: 2rem; }
	.cta-actions { flex-direction: column; gap: 15px; }
	
	.marquee { font-size: 2.5rem; }
}

@media (max-width: 480px) {
	.hero-title {
		font-size: clamp(1.35rem, 7vw, 2rem);
	}

	.hero-label {
		font-size: 0.68rem;
		padding: 6px 12px;
		letter-spacing: 0.06em;
	}
}

/* Service Pages */
.service-page {
	--service-accent: var(--electric-blue);
	--service-accent-rgb: 0, 255, 255;
}

.service-page--google {
	--service-accent: #4285f4;
	--service-accent-rgb: 66, 133, 244;
}

.service-page--yandex {
	--service-accent: #ff3b30;
	--service-accent-rgb: 255, 59, 48;
}

.service-page--google .hero-bg {
	background: radial-gradient(circle at 50% 50%, rgba(0, 8, 24, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.service-page--yandex .hero-bg {
	background: radial-gradient(circle at 50% 50%, rgba(26, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.about-page .hero-bg {
	background: radial-gradient(circle at 50% 50%, rgba(28, 8, 36, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.service-page .hero-layout {
	text-align: center;
	flex-direction: column;
	justify-content: center;
	min-height: 60vh;
}

.service-page .hero-title,
.service-page .hero-subtitle {
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}

.service-page .hero-label {
	color: var(--service-accent);
	border-color: rgba(var(--service-accent-rgb), 0.35);
	background: rgba(var(--service-accent-rgb), 0.08);
}

/* Service Rich Landing (контент из definitions) */
.service-page--rich .service-rich-entry {
	max-width: 860px;
	margin: 0 auto;
}

.service-page--rich .service-rich-entry .section-title {
	margin-top: 2.25rem;
}

.service-page--rich .service-rich-entry > .section-title:first-of-type {
	margin-top: 0;
}

.service-page--rich .service-rich-block {
	margin-bottom: 1.75rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-page--rich .service-rich-block:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.service-page--rich .service-rich-block p + p {
	margin-top: 0.85rem;
}

.service-page--rich .service-rich-block ul,
.service-page--rich .service-rich-block ol {
	margin: 0.65rem 0 0 1.2rem;
}

.service-page__visual {
	margin: 40px auto 0;
	max-width: 320px;
	filter: drop-shadow(0 0 24px rgba(var(--service-accent-rgb), 0.45));
}

.service-page__visual img {
	display: block;
	width: 100%;
	height: auto;
}

.service-semantic-grid,
.service-link-grid,
.service-roadmap {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 32px;
}

.service-roadmap {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-semantic-card,
.service-link-card,
.service-roadmap__step,
.service-cta-panel {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	padding: 20px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.service-semantic-card strong,
.service-link-card strong,
.service-roadmap__step strong {
	display: block;
	margin-bottom: 10px;
	font-size: 1rem;
	color: #fff;
}

.service-semantic-card span,
.service-link-card span,
.service-roadmap__step span {
	color: #bfc4cf;
	font-size: 0.98rem;
}

.service-link-card {
	display: block;
	text-decoration: none;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-link-card:hover {
	transform: translateY(-4px);
	border-color: rgba(var(--service-accent-rgb), 0.45);
	box-shadow: 0 0 20px rgba(var(--service-accent-rgb), 0.14);
}

.about-page__section {
	padding-top: 24px;
}

.about-page__requisites {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 12px;
}

.about-page__requisite {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 18px;
}

.about-page__requisite strong {
	display: block;
	margin-bottom: 8px;
	color: #fff;
}

.about-page__requisite span {
	display: block;
	color: #c9d1e0;
	line-height: 1.7;
	word-break: break-word;
}

.service-qa {
	padding: 80px 0;
	background: #050505;
}

.accordion-qa {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.qa-item {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 18px;
	padding: 30px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.qa-item:hover {
	transform: translateY(-3px);
	border-color: rgba(var(--service-accent-rgb), 0.4);
	box-shadow: 0 0 20px rgba(var(--service-accent-rgb), 0.1);
}

.qa-item.danger-zone {
	border-color: rgba(255, 68, 68, 0.5);
	background: linear-gradient(180deg, rgba(255, 48, 48, 0.08), rgba(255, 255, 255, 0.02));
	box-shadow: 0 0 24px rgba(255, 48, 48, 0.12);
}

.qa-question {
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	color: #fff;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.danger-zone .qa-question {
	color: #ff7979;
	border-bottom-color: rgba(255, 68, 68, 0.25);
}

.qa-answer {
	color: #d4d8df;
	font-size: 1.05rem;
	line-height: 1.75;
}

.qa-answer > p + p,
.qa-answer > p + ul,
.qa-answer > p + ol,
.qa-answer > ul + p,
.qa-answer > ol + p {
	margin-top: 14px;
}

.qa-answer ul,
.qa-answer ol {
	padding-left: 22px;
	margin: 14px 0 0;
}

.qa-answer li {
	margin-bottom: 10px;
}

.qa-answer strong,
.service-cta-panel strong {
	color: #fff;
}

.presentation-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 22px;
}

.pres-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 20px;
}

.pres-card strong {
	display: block;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
	text-transform: uppercase;
	color: #fff;
}

.danger-card {
	background: rgba(255, 48, 48, 0.06);
	border-color: rgba(255, 48, 48, 0.22);
}

.danger-text {
	color: #ffd6d6;
	font-weight: 600;
}

.service-cta-panel {
	margin-top: 32px;
	padding: 28px;
	border-color: rgba(var(--service-accent-rgb), 0.25);
	box-shadow: 0 0 24px rgba(var(--service-accent-rgb), 0.08);
}

.service-cta-panel p {
	color: #d4d8df;
	margin-top: 12px;
}

.service-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 22px;
}

.audit-popup-overlay {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.82);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.audit-popup-overlay.active {
	display: flex;
	opacity: 1;
}

.audit-popup-content {
	position: relative;
	width: min(560px, 100%);
	padding: 34px;
	border-radius: 22px;
	background: #0d0d10;
	border: 1px solid rgba(var(--service-accent-rgb), 0.34);
	box-shadow: 0 0 40px rgba(var(--service-accent-rgb), 0.18);
}

.audit-popup-close {
	position: absolute;
	top: 12px;
	right: 16px;
	border: none;
	background: transparent;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
}

.audit-input {
	width: 100%;
	margin-top: 16px;
	padding: 15px 16px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: #050505;
	color: #fff;
	font-size: 1rem;
}

.audit-input:focus {
	outline: none;
	border-color: var(--service-accent);
	box-shadow: 0 0 0 3px rgba(var(--service-accent-rgb), 0.12);
}

.audit-popup-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.audit-popup-note {
	margin-top: 14px;
	color: #aeb6c5;
	font-size: 0.95rem;
}

.blog-header__chips,
.single-post-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 20px;
	align-items: flex-start;
	min-height: 48px;
}

.semantic-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.04);
	color: #d9dfea;
	font-size: 0.95rem;
	font-family: "Segoe UI", Arial, sans-serif;
	line-height: 1.2;
	min-height: 40px;
	text-align: center;
}

.single-post-cta {
	margin: 60px auto 0;
	max-width: 1200px;
	padding: 28px;
	border-radius: 18px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.1);
}

.single-post-cta h2 {
	margin-bottom: 14px;
}

@media (max-width: 1024px) {
	.service-semantic-grid,
	.service-link-grid,
	.service-roadmap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.presentation-grid,
	.audit-popup-actions,
	.service-semantic-grid,
	.service-link-grid,
	.service-roadmap,
	.about-page__requisites {
		grid-template-columns: 1fr;
	}

	.qa-item,
	.service-cta-panel,
	.audit-popup-content {
		padding: 22px;
	}

	.service-cta-actions,
	.blog-header__chips,
	.single-post-links {
		justify-content: stretch;
		flex-direction: column;
	}

	.blog-header__chips {
		min-height: initial;
	}

	.semantic-chip {
		width: 100%;
	}
}

/* Pricing in Bento Grid */
.module-price {
	font-family: monospace;
	color: #00FFFF;
	font-weight: bold;
	font-size: 1.1rem;
	margin-top: 15px;
	padding: 5px 10px;
	background: rgba(0, 255, 255, 0.1);
	border-left: 3px solid #00FFFF;
	display: inline-block;
}
.module:hover .module-price {
	color: #FF00FF;
	border-left-color: #FF00FF;
	background: rgba(255, 0, 255, 0.1);
}

/* Self-Proof Banner */
.block-proof {
	padding: 80px 0;
	position: relative;
	background: transparent;
	z-index: 10;
}
.proof-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 50px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	display: flex;
	flex-direction: column;
	gap: 40px;
	position: relative;
	overflow: hidden;
}
.proof-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, #FF00FF, #00FFFF, #FFD700);
}
.proof-content {
	text-align: center;
}
.proof-title {
	font-size: 2.5rem;
	color: var(--text-light);
	margin-bottom: 20px;
}
.proof-desc {
	font-size: 1.1rem;
	color: #ccc;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}
/* VS Table for Proof Block */
.proof-vs-table {
	display: flex;
	flex-direction: column;
	background: rgba(0,0,0,0.4);
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.05);
	overflow: hidden;
	margin-top: 30px;
}
.vs-row {
	display: grid;
	grid-template-columns: 2fr 1.5fr 1.5fr;
	padding: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	align-items: center;
}
.vs-row:last-child {
	border-bottom: none;
}
.vs-header {
	background: rgba(255,255,255,0.05);
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
}
.vs-col {
	display: flex;
	align-items: center;
	gap: 15px;
}
.vs-metric {
	font-size: 1.1rem;
	color: #e0e0e0;
}
.vs-my, .vs-their {
	justify-content: flex-start;
}
.vs-score {
	font-family: monospace;
	font-size: 1.2rem;
	font-weight: bold;
}
.vs-score.green { color: #0cce6b; text-shadow: 0 0 10px rgba(12, 206, 107, 0.4); }
.vs-score.red { color: #ff3b30; }
.vs-link {
	font-size: 0.85rem;
	color: var(--neon-color, #00FFFF);
	text-decoration: none;
	padding: 6px 12px;
	border: 1px solid rgba(0,255,255,0.3);
	border-radius: 4px;
	transition: all 0.3s;
	text-transform: uppercase;
	font-weight: bold;
}
.vs-link:hover {
	background: rgba(0,255,255,0.1);
	box-shadow: 0 0 10px rgba(0,255,255,0.2);
}

/* Premium SVGs */
.premium-svg-container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.premium-svg {
	width: 100%;
	max-width: 300px;
	height: auto;
}
.spin-slow {
	transform-origin: center;
	animation: svgSpin 15s linear infinite;
}
@keyframes svgSpin {
	100% { transform: rotate(360deg); }
}
.draw-path {
	stroke-dasharray: 400;
	stroke-dashoffset: 400;
	animation: svgDraw 3s ease-in-out forwards infinite alternate;
}
@keyframes svgDraw {
	100% { stroke-dashoffset: 0; }
}
.dash-move {
	animation: svgDashMove 2s linear infinite;
}
@keyframes svgDashMove {
	100% { stroke-dashoffset: -8; }
}
.particle {
	animation: svgFloat 2s ease-in-out infinite alternate;
}
@keyframes svgFloat {
	100% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
	.proof-title { font-size: 1.8rem; }
	.proof-card { padding: 30px 20px; }
	.proof-tool-actions { flex-direction: column; }
	.site-footer__inner { text-align: center; flex-direction: column; gap: 30px; }

	/* Self-proof: таблица → карточки по строкам (без горизонтального сжатия) */
	.proof-vs-table .vs-header {
		display: none;
	}

	.vs-row:not(.vs-header) {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 18px 14px;
	}

	.vs-metric {
		font-size: 0.98rem;
		line-height: 1.35;
		padding-bottom: 12px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.vs-my,
	.vs-their {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 8px 10px;
		justify-content: flex-start;
	}

	.vs-my::before {
		content: 'Моя система';
		flex: 0 0 100%;
		font-size: 0.65rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.14em;
		color: rgba(0, 255, 255, 0.55);
		margin: 0;
	}

	.vs-their::before {
		content: 'Обычный сайт';
		flex: 0 0 100%;
		font-size: 0.65rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.14em;
		color: rgba(255, 255, 255, 0.45);
		margin: 0;
	}

	.vs-score {
		font-size: 1.05rem;
	}

	.vs-link {
		font-size: 0.72rem;
		padding: 8px 10px;
		line-height: 1.2;
		text-align: center;
	}
}

@media (max-width: 380px) {
	.vs-link {
		font-size: 0.68rem;
		padding: 7px 8px;
	}
}

/* GEO pages and cluster */
.block-geo {
	padding: 80px 0;
}

.geo-city-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.geo-city-page .hero-subtitle {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

.geo-city-contacts,
.geo-city-services,
.geo-city-cta,
.geo-city-links,
.geo-city-cluster {
	padding: 70px 0;
}

.geo-city-contacts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.geo-city-contact-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	padding: 18px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.geo-city-contact-card strong {
	display: block;
	color: #fff;
	margin-bottom: 8px;
}

.geo-city-contact-card a {
	font-size: 1.1rem;
	font-weight: 700;
}

@media (max-width: 900px) {
	.geo-city-contacts__grid {
		grid-template-columns: 1fr;
	}
}


/* === Merged from SEO/GEO pack (text blocks; base CSS from v127) === */

.hero-contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 35px;
	align-items: center;
}

.hero-contact-link {
	display: inline-flex;
	align-items: center;
	padding: 10px 24px;
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--text-light);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	background: rgba(255, 255, 255, 0.02);
}

.hero-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	transition: all 0.3s ease;
	text-decoration: none;
}

.hero-contact-icon:hover {
	transform: translateY(-3px) scale(1.05);
	filter: drop-shadow(0 5px 15px rgba(0, 255, 255, 0.3));
}

.hero-contact-link:hover {
	color: var(--electric-blue);
	border-color: rgba(0, 255, 255, 0.4);
	background: rgba(0, 255, 255, 0.05);
	box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
}

.hero-contact-phone {
	border-color: rgba(0, 255, 255, 0.3);
	color: var(--electric-blue);
}

.hero-contact-phone:hover {
	background: rgba(0, 255, 255, 0.1);
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
}

/* Problem Section Styles */
.problem-section {
	padding: 80px 0;
	background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(20,0,20,0.8) 50%, rgba(0,0,0,1) 100%);
}

.problem-header {
	text-align: center;
	margin-bottom: 50px;
}

.problem-subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 15px;
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.problem-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 24px;
	padding: 30px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: inset 0 0 20px rgba(255, 0, 255, 0.02);
}

.problem-card-glitch {
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
	transform: skewX(-20deg);
	transition: 0.5s;
	z-select: -1;
	pointer-events: none;
}

.problem-card:hover .problem-card-glitch {
	left: 200%;
}

.problem-card:hover {
	border-color: rgba(255, 0, 255, 0.6);
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(255, 0, 255, 0.15), inset 0 0 30px rgba(255, 0, 255, 0.05);
}

.problem-card:nth-child(2) {
	background: rgba(0, 20, 20, 0.4);
	border-color: rgba(0, 255, 255, 0.2);
	box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.02);
}

.problem-card:nth-child(2):hover {
	border-color: rgba(0, 255, 255, 0.6);
	box-shadow: 0 20px 40px rgba(0, 255, 255, 0.15), inset 0 0 30px rgba(0, 255, 255, 0.05);
}

.problem-card:nth-child(3) {
	background: rgba(20, 20, 0, 0.4);
	border-color: rgba(255, 215, 0, 0.2);
	box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.02);
}

.problem-card:nth-child(3):hover {
	border-color: rgba(255, 215, 0, 0.6);
	box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15), inset 0 0 30px rgba(255, 215, 0, 0.05);
}

.problem-icon {
	margin-bottom: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	filter: drop-shadow(0 0 10px currentColor);
	transition: transform 0.3s ease;
}

.problem-card:hover .problem-icon {
	transform: scale(1.1) translateY(-5px);
}

.problem-title {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: #fff;
	text-align: center;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.problem-list {
	list-style: none;
	padding: 0;
	margin: 0;
	flex-grow: 1;
}

.problem-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	line-height: 1.6;
}

.problem-list li::before {
	content: '>';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--neon-color, #0ff);
	font-weight: bold;
	font-family: monospace;
	font-size: 1.1rem;
}

.problem-card:nth-child(1) .problem-list li::before { color: #ff00ff; }
.problem-card:nth-child(2) .problem-list li::before { color: #00ffff; }
.problem-card:nth-child(3) .problem-list li::before { color: #ffd700; }

.problem-cta {
	text-align: center;
}

.problem-conclusion {
	font-size: 1.3rem;
	color: #fff;
	font-weight: 600;
}


/* Breadcrumbs */
.breadcrumbs {
	background: rgba(0, 0, 0, 0.5);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	padding: 15px 0;
	font-size: 0.9rem;
}

.breadcrumbs .container {
	color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s;
}

.breadcrumbs a:hover {
	color: var(--neon-color, #0ff);
}

.breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.3);
	margin: 0 10px;
}

@media (max-width: 768px) {
	.breadcrumbs {
		padding: 72px 0 12px;
		font-size: 0.82rem;
		line-height: 1.45;
		word-wrap: break-word;
	}

	.breadcrumbs .container {
		padding-left: clamp(10px, 3vw, 16px);
		padding-right: clamp(10px, 3vw, 16px);
	}
}



/* Mobile Optimizations for New Blocks */
@media (max-width: 768px) {
	.problem-section,
	.faq-section,
	.blog-preview-section {
		padding: 40px 0;
	}

	.section-title {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}

	.problem-header {
		margin-bottom: 30px;
	}

	.problem-title {
		font-size: 1.2rem;
	}

	.problem-card {
		padding: 20px;
	}

	.faq-main-title {
		margin-bottom: 30px;
	}

	.blog-preview-subtitle {
		margin-top: -15px;
		margin-bottom: 30px;
		font-size: 1rem;
	}

	.blog-preview-card {
		border-radius: 12px;
	}

	.blog-preview-content {
		padding: 20px;
	}
}

/* Ultra-thin redesign overrides: FAQ -> footer + about page */
.faq-section,
.blog-preview-section,
.ultimate-cta,
.site-footer,
.about-signals,
.about-faq {
	position: relative;
}

.faq-section::before,
.blog-preview-section::before,
.ultimate-cta::before,
.site-footer::before,
.about-signals::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 20%, rgba(0, 255, 255, 0.08), transparent 32%),
		radial-gradient(circle at 80% 15%, rgba(255, 0, 255, 0.06), transparent 28%);
	pointer-events: none;
}

.faq-container,
.blog-preview-shell,
.cta-container,
.site-footer__inner,
.footer-services-wrap,
.about-signals-grid {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.faq-container {
	display: block;
	max-width: 900px;
	margin: 0 auto;
}

.faq-visual,
.blog-preview-visual,
.footer-character-wrap,
.cta-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 140px;
	margin-bottom: 30px;
}

.faq-bot,
.blog-preview-bot,
.footer-character,
.cta-brain {
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.2));
	height: 100%;
	width: auto;
}

.faq-glow,
.blog-preview-aura,
.footer-character-glow {
	position: absolute;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 255, 0.18), rgba(0, 255, 255, 0) 70%);
	filter: blur(12px);
}

.faq-content,
.cta-content,
.footer-brand,
.about-signal-card,
.qa-item,
.about-page__requisite {
	background: linear-gradient(180deg, rgba(11, 16, 26, 0.88), rgba(7, 10, 18, 0.92));
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 24px;
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.section-header-cyber {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
}

.section-header-cyber .section-title {
	text-align: center;
	margin-bottom: 0;
}

.sys-tag,
.footer-tag {
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--neon-purple);
}

.faq-content,
.cta-content {
	padding: 32px;
}

.faq-grid {
	display: grid;
	gap: 14px;
}

.faq-item {
	border: 1px solid rgba(255, 255, 255, 0.04);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
	border-radius: 18px;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.faq-item:hover,
.blog-preview-card:hover,
.about-signal-card:hover,
.service-link-card:hover,
.about-page__requisite:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 255, 255, 0.15);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 22px;
	cursor: pointer;
	list-style: none;
}

.faq-question::-webkit-details-marker {
	display: none;
}

.q-text {
	font-size: 1rem;
	line-height: 1.5;
	color: #fff;
}

.q-icon {
	position: relative;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
}

.q-icon::before,
.q-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--neon-color, #0ff);
	border-radius: 999px;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.q-icon::before {
	width: 16px;
	height: 2px;
}

.q-icon::after {
	width: 2px;
	height: 16px;
}

.faq-item[open] .q-icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) scaleY(0);
}

.faq-answer {
	padding: 0 22px 20px;
	color: rgba(255, 255, 255, 0.76);
	line-height: 1.7;
}

.blog-preview-shell {
	display: block;
	max-width: 1200px;
	margin: 0 auto;
}

.blog-preview-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 40px auto;
}

.blog-preview-subtitle,
.about-intro-copy,
.footer-desc,
.footer-ip,
.cta-subtitle {
	font-size: 1.1rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.75;
}

.blog-preview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}

.blog-preview-cta {
	margin-top: 40px;
	text-align: center;
}

.blog-preview-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 24px;
	overflow: hidden;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.blog-preview-image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
}

.blog-preview-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.95) contrast(1.04);
	transition: transform 0.35s ease;
}

.blog-preview-card:hover .blog-preview-image img {
	transform: scale(1.04);
}

.blog-preview-content {
	padding: 22px;
}

.blog-preview-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.52);
	margin-bottom: 12px;
}

.blog-preview-title {
	font-size: 1.05rem;
	line-height: 1.5;
	margin-bottom: 12px;
}

.blog-preview-title a,
.footer-links a,
.blog-preview-link {
	color: #fff;
	text-decoration: none;
	transition: color 0.25s ease, opacity 0.25s ease;
}

.blog-preview-link,
.footer-links a:hover,
.blog-preview-title a:hover {
	color: var(--neon-color, #0ff);
}

.blog-preview-excerpt {
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.65;
	margin-bottom: 14px;
}

.ultimate-cta {
	padding: 24px 0 12px;
}

.cta-container {
	display: block;
	max-width: 900px;
	margin: 0 auto;
}

.cta-content {
	position: relative;
	text-align: center;
}

.cta-title {
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin-bottom: 18px;
}

.cta-actions {
	margin-top: 24px;
	display: flex;
	justify-content: center;
}

.cta-contact {
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.58);
}

.site-footer {
	padding: 32px 0 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	background: linear-gradient(180deg, rgba(4, 8, 14, 0.94), rgba(2, 4, 8, 0.98));
}

.site-footer__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
	max-width: 1200px;
	margin: 0 auto 40px auto;
}

.footer-col {
	padding: 24px;
}

.footer-brand {
	position: relative;
}

.footer-logo {
	margin-bottom: 16px;
}

.logo-text {
	font-size: 1.45rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.text-neon {
	color: var(--neon-color, #0ff);
}

.footer-title {
	font-size: 0.82rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.84);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.footer-services-wrap {
	padding: 24px;
	margin-bottom: 22px;
}

.footer-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.footer-tag {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.04);
	background: rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.74);
	text-decoration: none;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer-tag:hover {
	transform: translateY(-2px);
	border-color: rgba(0, 255, 255, 0.25);
	color: #fff;
}

.footer-bottom {
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-info {
	text-align: center;
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.86rem;
}

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

.mt-30 {
	margin-top: 30px;
}

.about-hero-grid {
	margin-top: 28px;
}

.about-signals {
	padding: 10px 0 34px;
}

.about-signals-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.about-signal-card {
	padding: 24px;
}

.about-signal-card h3 {
	font-size: 1rem;
	margin-bottom: 12px;
}

.about-signal-card p {
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.7;
}

.service-qa.about-page__section .accordion-qa {
	display: grid;
	gap: 18px;
}

.service-qa.about-page__section .qa-item {
	padding: 0;
	overflow: hidden;
}

.service-qa.about-page__section .qa-question {
	margin: 0;
	padding: 24px 26px 0;
	font-size: 1.25rem;
}

.service-qa.about-page__section .qa-answer {
	padding: 20px 26px 26px;
}

.service-qa.about-page__section .qa-answer ul {
	margin: 18px 0 0;
	padding-left: 18px;
	color: rgba(255, 255, 255, 0.76);
}

.about-page__requisites {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.about-page__requisite {
	padding: 18px;
}

.about-page__requisite strong {
	display: block;
	margin-bottom: 8px;
	color: #fff;
}

.about-page__requisite span {
	display: block;
	color: rgba(255, 255, 255, 0.74);
	line-height: 1.6;
}

@media (max-width: 1100px) {
	.cta-container,
	.about-signals-grid {
		grid-template-columns: 1fr 1fr;
	}

	.blog-preview-shell {
		grid-template-columns: 1fr;
	}

	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
	}

	.blog-preview-intro {
		margin-bottom: 30px;
	}

	.blog-preview-grid {
		grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
		grid-column: auto;
	}
}

@media (max-width: 768px) {
	.faq-container,
	.blog-preview-shell,
	.cta-container,
	.site-footer__inner,
	.about-signals-grid,
	.about-page__requisites {
		grid-template-columns: 1fr;
	}

	.faq-content,
	.cta-content,
	.footer-col,
	.footer-services-wrap,
	.about-signal-card {
		padding: 22px;
	}

	.faq-visual,
	.blog-preview-visual,
	.footer-character-wrap {
		height: 120px;
	}

	.cta-title {
		font-size: 2rem;
	}

	.service-qa.about-page__section .qa-question {
		padding: 22px 22px 0;
		font-size: 1.08rem;
	}

	.service-qa.about-page__section .qa-answer {
		padding: 18px 22px 22px;
	}
}

/* GEO city: локальная низкочастотная семантика (Wordstat) */
.geo-city-local-semantics {
	padding: 28px 0 8px;
	border-top: 1px solid rgba(0, 255, 255, 0.08);
}

.geo-local-semantics__lead {
	max-width: 720px;
	margin: 0 auto 22px;
	font-size: 0.92rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.55);
	text-align: center;
}

.geo-city-list--local {
	justify-content: center;
	gap: 10px 12px;
}

.semantic-chip--local {
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	border-color: rgba(0, 255, 255, 0.18);
	background: rgba(0, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.82);
	padding: 8px 12px;
	line-height: 1.35;
}

@media (max-width: 768px) {
	.geo-city-local-semantics {
		padding: 22px 0 4px;
	}

	.semantic-chip--local {
		font-size: 0.72rem;
	}
}

/* Single post: сетка + оглавление (навигация по статье) */
.single-post-layout {
	display: grid;
	grid-template-columns: minmax(200px, 270px) minmax(0, 1fr);
	gap: 28px 36px;
	align-items: start;
	max-width: min(1200px, 96vw);
	margin: 0 auto;
	padding: 0 20px 80px;
}

.single-post-layout--no-toc {
	grid-template-columns: 1fr;
	max-width: min(1200px, 96vw);
}

.single-post-layout__main .entry-content--single {
	max-width: none;
	width: 100%;
}

.single-post-layout--no-toc .single-post-layout__toc {
	display: none;
}

.single-post-layout__toc {
	position: sticky;
	top: 100px;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
	padding-right: 6px;
	scrollbar-width: thin;
}

.single-post-layout__main {
	min-width: 0;
}

/* Single post body: картинки и баннеры не обрезаются справа (резиновая колонка + grid minmax(0)) */
.single-post-layout__main .entry-content img {
	max-width: 100%;
	height: auto;
	display: block;
}

.single-post-layout__main .entry-content a:has(> img) {
	display: block;
	max-width: 100%;
	border-bottom: none;
}

.single-post-layout__main .entry-content a:has(> img):hover {
	border-bottom: none;
}

.single-post-layout__main .entry-content figure {
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}

/* Лонгриды: аккуратные таблицы (Wordstat, сравнения) */
.single-post-layout__main .entry-content .table-wrap {
	margin: 1.5rem 0 1.75rem;
	overflow-x: auto;
	max-width: 100%;
	-webkit-overflow-scrolling: touch;
	border-radius: 14px;
	border: 1px solid rgba(0, 255, 255, 0.14);
	background: linear-gradient(165deg, rgba(12, 18, 28, 0.95) 0%, rgba(6, 9, 16, 0.98) 100%);
	box-shadow:
		0 12px 36px rgba(0, 0, 0, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.single-post-layout__main .entry-content .table-wrap,
.single-post-layout__main .entry-content .table-wrap * {
	word-break: normal;
	overflow-wrap: normal;
}

.single-post-layout__main .entry-content table.article-table {
	display: table;
	table-layout: fixed;
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
	font-size: 0.9rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.88);
}

.single-post-layout__main .entry-content table.article-table col.article-table__col-narrow {
	width: 22%;
}

.single-post-layout__main .entry-content table.article-table td,
.single-post-layout__main .entry-content table.article-table th {
	overflow-wrap: break-word;
	hyphens: none;
}

.single-post-layout__main .entry-content table.article-table caption {
	caption-side: top;
	text-align: left;
	padding: 14px 16px 10px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(0, 255, 255, 0.65);
}

.single-post-layout__main .entry-content table.article-table thead th {
	padding: 12px 14px;
	text-align: left;
	font-weight: 600;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	background: rgba(0, 255, 255, 0.08);
	border-bottom: 1px solid rgba(0, 255, 255, 0.2);
	white-space: normal;
}

.single-post-layout__main .entry-content table.article-table thead th:first-child {
	min-width: 11rem;
	white-space: nowrap;
}

.single-post-layout__main .entry-content table.article-table tbody td {
	padding: 12px 14px;
	vertical-align: top;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.single-post-layout__main .entry-content table.article-table tbody tr:last-child td {
	border-bottom: none;
}

.single-post-layout__main .entry-content table.article-table tbody tr:nth-child(even) td {
	background: rgba(255, 255, 255, 0.02);
}

.single-post-layout__main .entry-content table.article-table td:first-child {
	font-weight: 500;
	color: rgba(0, 255, 255, 0.85);
	white-space: nowrap;
	min-width: 11rem;
}

@media (max-width: 768px) {
	.single-post-layout__main .entry-content table.article-table {
		min-width: 640px;
	}
}

.single-post-layout__main .entry-content > table:not(.article-table) {
	display: block;
	width: 100%;
	overflow-x: auto;
	max-width: 100%;
	-webkit-overflow-scrolling: touch;
}

.single-post-article {
	overflow-x: clip;
}

.single-post-layout__main .entry-content {
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.single-post-layout__main .entry-content pre,
.single-post-layout__main .entry-content code {
	max-width: 100%;
	overflow-x: auto;
}

.entry-cta-home {
	margin: 1.25rem 0 0;
}

.entry-btn-home {
	display: inline-block;
	padding: 12px 22px;
	border: 1px solid rgba(0, 255, 255, 0.35);
	border-radius: 10px;
	color: var(--neon-color, #0ff) !important;
	text-decoration: none !important;
	font-weight: 600;
	letter-spacing: 0.04em;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.entry-btn-home:hover {
	background: rgba(0, 255, 255, 0.08);
	border-color: var(--neon-color, #0ff);
	color: #fff !important;
}

@media (max-width: 768px) {
	.single-post-header {
		padding: 72px 12px 36px !important;
	}

	.single-post-layout {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}

.post-toc {
	border: 1px solid rgba(0, 255, 255, 0.12);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(11, 16, 26, 0.92), rgba(7, 10, 18, 0.96));
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.post-toc__inner {
	padding: 20px 18px 22px;
}

.post-toc__label {
	margin: 0 0 4px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(0, 255, 255, 0.75);
}

.post-toc__sub {
	margin: 0 0 16px;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.45);
}

.post-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: toc;
}

.post-toc__item {
	margin: 0 0 10px;
	padding: 0;
	line-height: 1.35;
}

.post-toc__item a {
	display: block;
	padding: 8px 10px;
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	font-size: 0.88rem;
	border: 1px solid transparent;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.post-toc__item a:hover,
.post-toc__item.is-active a {
	color: var(--neon-color, #0ff);
	background: rgba(0, 255, 255, 0.06);
	border-color: rgba(0, 255, 255, 0.12);
}

.post-toc__item--h3 {
	padding-left: 12px;
}

.post-toc__item--h3 a {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.68);
}

.entry-content h2[id],
.entry-content h3[id] {
	scroll-margin-top: 96px;
}

@media (max-width: 960px) {
	.single-post-layout {
		grid-template-columns: 1fr;
		padding-bottom: 60px;
	}

	.single-post-layout__toc {
		position: relative;
		top: auto;
		max-height: none;
		order: -1;
	}

	.post-toc {
		margin-bottom: 8px;
	}
}

/* Answer-first / static pages (audit GEO + policy) — см. assets/src/scss/_wp-fixes.scss */
.hero-lead--answer {
	max-width: 42rem;
	margin-top: 1rem;
	font-size: 1.05rem;
	line-height: 1.55;
	opacity: 0.92;
}

.geo-answer-intro {
	padding: 2rem 0 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.geo-answer-intro__inner {
	max-width: 52rem;
	font-size: 1.05rem;
	line-height: 1.65;
}

.geo-answer-intro__inner p {
	margin-bottom: 0.85em;
}

.geo-answer-intro__inner p:last-child {
	margin-bottom: 0;
}

.site-main--static-page .static-page-header {
	margin-bottom: 1rem;
}

.site-main--static-page .page-lead {
	max-width: 48rem;
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
	line-height: 1.6;
	opacity: 0.9;
}

.site-main--static-page .entry-content {
	max-width: 52rem;
}

/* ------------------------------------------------------------------
   Mobile navigation — ultra-thin full-screen overlay (≤900px)
   ------------------------------------------------------------------ */
.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.9);
	cursor: pointer;
	transition: all 0.3s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
	opacity: 0.7;
	outline: none;
}

.menu-toggle__lines {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 24px;
}

.menu-toggle__lines span {
	display: block;
	height: 1px;
	background: currentColor;
	opacity: 0.8;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
	transform-origin: center;
}

.main-navigation.toggled .menu-toggle__lines span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.main-navigation.toggled .menu-toggle__lines span:nth-child(2) {
	opacity: 0;
}

.main-navigation.toggled .menu-toggle__lines span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

body.nav-overlay-open {
	overflow: hidden;
}

@media (max-width: 900px) {
	.site-header {
		z-index: 10050;
	}

	.site-header__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		position: relative;
		z-index: 10060;
	}

	.site-branding {
		position: relative;
		z-index: 10070;
	}

	.menu-toggle {
		display: inline-flex;
		flex-shrink: 0;
		position: relative;
		z-index: 10070;
	}

	.main-navigation {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	.main-navigation > ul {
		position: fixed;
		inset: 0;
		z-index: 10040;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: center;
		gap: 24px;
		width: 100%;
		min-height: 100vh;
		min-height: 100dvh;
		margin: 0;
		padding: 80px 24px;
		list-style: none;
		background: rgba(0, 0, 0, 0.85);
		-webkit-backdrop-filter: blur(30px) saturate(150%);
		backdrop-filter: blur(30px) saturate(150%);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-10px);
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.main-navigation.toggled > ul {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.main-navigation > ul li {
		border-bottom: none;
		width: 100%;
		text-align: center;
	}

	.main-navigation > ul li:last-child {
		border-bottom: none;
	}

	.main-navigation > ul a {
		display: inline-block;
		padding: 8px 0;
		font-family: var(--font-primary);
		font-weight: 200;
		font-size: clamp(1.5rem, 6vw, 2.2rem);
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: rgba(255, 255, 255, 0.7);
		border-bottom: none;
		line-height: 1.2;
		transition: all 0.3s ease;
	}

	.main-navigation > ul a:hover,
	.main-navigation > ul a:focus-visible {
		color: #fff;
		transform: scale(1.05);
		background: transparent;
		border-bottom: none;
	}
}

/* Single post: fullscreen title hero + author box */
.single-post-header--fullscreen {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	min-height: 100dvh;
	padding: clamp(4.5rem, 12vw, 7rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 6vw, 3.5rem);
	text-align: center;
	background: radial-gradient(circle at 50% 20%, rgba(0, 255, 255, 0.12) 0%, transparent 55%),
		radial-gradient(circle at 50% 100%, rgba(0, 80, 90, 0.15) 0%, transparent 45%);
	box-sizing: border-box;
}

.single-post-header__inner {
	width: 100%;
	max-width: min(92vw, 56rem);
	margin-left: auto;
	margin-right: auto;
}

.single-post-header__meta {
	color: var(--neon-color, #0ff);
	font-size: clamp(0.75rem, 2.8vw, 1rem);
	margin-bottom: clamp(1rem, 3vw, 1.5rem);
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1.4;
	word-wrap: break-word;
}

.single-post-header__title {
	margin: 0 auto;
	font-size: clamp(1.35rem, 5.5vw, 3.25rem);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -0.02em;
	hyphens: auto;
	word-break: break-word;
	overflow-wrap: anywhere;
}

@media (max-width: 480px) {
	.single-post-header__title {
		line-height: 1.18;
		font-size: clamp(1.2rem, 6.2vw, 1.85rem);
	}
}

.author-box {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: clamp(1rem, 3vw, 1.75rem);
	margin-top: clamp(2rem, 5vw, 3rem);
	margin-bottom: clamp(2rem, 5vw, 3rem);
	padding: clamp(1.25rem, 3vw, 1.75rem);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	background: rgba(0, 0, 0, 0.35);
}

.author-box .author-avatar {
	flex-shrink: 0;
}

.author-box .author-img {
	display: block;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(0, 255, 255, 0.35);
	box-shadow: 0 0 24px rgba(0, 255, 255, 0.2);
}

.author-box .author-label {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 0.35rem;
}

.author-box .author-name {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
	color: #fff;
}

.author-box .author-bio {
	margin: 0 0 1rem;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.55;
	font-size: 0.95rem;
}

.author-box .author-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
}

.author-box .author-link {
	color: var(--neon-color, #0ff);
	text-decoration: none;
	font-size: 0.9rem;
}

.author-box .author-link:hover,
.author-box .author-link:focus-visible {
	text-decoration: underline;
}

@media (max-width: 520px) {
	.author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.author-box .author-links {
		justify-content: center;
	}
}

/* Cookie consent bar */
.cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99998;
	padding: 14px 0;
	background: linear-gradient(180deg, rgba(6, 10, 18, 0.97), rgba(2, 4, 10, 0.99));
	border-top: 1px solid rgba(0, 255, 255, 0.12);
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

.cookie-consent[hidden] {
	display: none !important;
}

.cookie-consent__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px 20px;
}

.cookie-consent__text {
	margin: 0;
	flex: 1 1 280px;
	font-size: 0.88rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.82);
}

.cookie-consent__text a {
	color: var(--neon-color, #0ff);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cookie-consent__text a:hover,
.cookie-consent__text a:focus-visible {
	color: #fff;
}

.cookie-consent__actions {
	flex: 0 0 auto;
}

.cookie-consent__btn {
	cursor: pointer;
	border: 1px solid rgba(0, 255, 255, 0.35);
	border-radius: 10px;
	padding: 10px 22px;
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #0a0e14;
	background: linear-gradient(135deg, rgba(0, 255, 255, 0.95), rgba(0, 220, 200, 0.85));
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cookie-consent__btn:hover,
.cookie-consent__btn:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 4px 20px rgba(0, 255, 255, 0.25);
	border-color: rgba(0, 255, 255, 0.6);
}

.cookie-consent--dismissed {
	display: none !important;
}

.footer-col--legal .footer-links a {
	color: rgba(255, 255, 255, 0.78);
}

/* Semantic keyword landing: minimal header */
.site-header__semantic-minimal {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.da-semantic-landing .semantic-wordstat .table-wrap {
	margin-top: 1rem;
}

.da-semantic-landing .semantic-direct__text {
	font-size: 1.12rem;
	line-height: 1.65;
	max-width: 52rem;
	color: rgba(255, 255, 255, 0.9);
}

.da-semantic-landing .semantic-narrative--prose {
	max-width: 52rem;
	margin-bottom: 1.25rem;
}

.da-semantic-landing .semantic-narrative--prose p {
	font-size: 1.05rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 1rem;
}

.da-semantic-landing .semantic-wordstat__details {
	margin-top: 0.5rem;
	border: 1px solid rgba(0, 255, 255, 0.2);
	border-radius: 8px;
	padding: 0.75rem 1rem;
	background: rgba(0, 0, 0, 0.25);
}

.da-semantic-landing .semantic-wordstat__summary {
	cursor: pointer;
	font-size: 0.95rem;
	color: rgba(0, 255, 255, 0.85);
	list-style-position: outside;
}

.da-semantic-landing .semantic-wordstat__hint {
	margin-top: 0.75rem;
	font-size: 0.9rem;
	opacity: 0.85;
}

/* Semantic landing: тело как лонгрид блога (модуль 42) */
.semantic-article-skill {
	padding: 2.5rem 0 3rem;
}

.semantic-article-entry .semantic-article__direct {
	font-size: 1.15rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 1.25rem;
}

.semantic-article-entry .semantic-article__hook {
	margin-bottom: 0.85rem;
}

.semantic-article__toc-nav ul {
	margin: 0 0 1.5rem;
	padding-left: 1.25rem;
}

.semantic-article__toc-nav a {
	color: var(--neon-color, #0ff);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.semantic-article-entry .semantic-article__quote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 3px solid rgba(0, 255, 255, 0.45);
	background: rgba(0, 0, 0, 0.25);
	font-style: italic;
}

.da-semantic-landing .semantic-article-entry .callout {
	margin: 1.25rem 0;
	padding: 1rem 1.1rem;
	border-radius: 8px;
	border-left: 4px solid rgba(255, 255, 255, 0.25);
	background: rgba(0, 0, 0, 0.25);
	font-size: 0.95rem;
	line-height: 1.55;
}

.da-semantic-landing .semantic-article-entry .callout-important {
	border-left-color: rgba(0, 255, 200, 0.5);
}

.da-semantic-landing .semantic-article-entry .callout-error {
	border-left-color: rgba(255, 100, 120, 0.55);
}

.da-semantic-landing .semantic-article-entry .callout-step {
	border-left-color: rgba(0, 180, 255, 0.55);
}

.da-semantic-landing .semantic-article-entry .callout-insight {
	border-left-color: rgba(200, 170, 255, 0.45);
}

.semantic-article__next {
	margin: 2rem 0 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.semantic-article__banner-wrap {
	margin: 2rem 0;
}

.semantic-article__banner-link {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(0, 255, 255, 0.18);
}

.semantic-article__banner-link img {
	width: 100%;
	height: auto;
	display: block;
}

.semantic-article__banner-caption {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	opacity: 0.85;
}

.semantic-article__quiz-anchor {
	min-height: 1px;
}

