/* Custom Extracted CSS for r9.by */

/* Chat Bot & Cookie Banner Styles */
#r9-bot-launcher {
	position: fixed;
	bottom: 25px;
	right: 25px;
	background: linear-gradient(135deg, #278635 0%, #5a9a4e 100%);
	color: #fff;
	padding: 12px 20px;
	border-radius: 50px;
	cursor: pointer;
	z-index: 1000001;
	box-shadow: 0 8px 25px rgba(30, 112, 230, 0.35);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background 0.3s;
}

#r9-bot-launcher:hover {
	transform: scale(1.05) translateY(-2px);
	box-shadow: 0 12px 30px rgba(30, 112, 230, 0.45);
}

#r9-bot-launcher:active {
	transform: scale(0.98) translateY(0);
}

.r9-bot-launcher-icon-wrapper {
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#r9-bot-window {
	position: fixed;
	bottom: 95px;
	right: 25px;
	width: 380px;
	height: 520px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	z-index: 1000001;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	border: 1px solid rgba(0, 0, 0, 0.08);
	transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.r9-bot-hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px) scale(0.95);
}

.r9-bot-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

#r9-bot-header {
	background: linear-gradient(135deg, #10131a 0%, #aefa94 100%);
	color: white;
	padding: 16px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.r9-bot-title-block {
	display: flex;
	align-items: center;
	gap: 10px;
}

.r9-status-dot {
	width: 9px;
	height: 9px;
	background: #2ecc71;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 8px #2ecc71;
	animation: r9-pulse 2s infinite;
}

.r9-close-btn {
	background: rgba(255, 255, 255, 0.15);
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, transform 0.2s;
	line-height: 1;
}

.r9-close-btn:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: rotate(90deg);
}

.r9-reset-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	opacity: 1;
	transform: rotate(-180deg);
}

#r9-bot-messages {
	flex: 1;
	padding: 20px;
	overflow-y: auto;
	background: #f8f9fa;
	display: flex;
	flex-direction: column;
	gap: 14px;
	scroll-behavior: smooth;
}

.r9-msg {
	padding: 12px 16px;
	border-radius: 16px;
	max-width: 85%;
	font-size: 14px;
	line-height: 1.45;
	word-wrap: break-word;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.r9-msg.r9-user {
	background: #364d7f;
	color: white;
	align-self: flex-end;
	border-bottom-right-radius: 4px;
	box-shadow: 0 3px 10px rgba(30, 112, 230, 0.15);
}

.r9-msg.r9-bot {
	background: #ffffff;
	color: #2c3e50;
	align-self: flex-start;
	border-bottom-left-radius: 4px;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.r9-typing-indicator {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 4px 6px;
}

.r9-typing-dot {
	width: 6px;
	height: 6px;
	background: #7f8c8d;
	border-radius: 50%;
	animation: r9-bounce 1.4s infinite ease-in-out both;
}

.r9-typing-dot:nth-child(1) {
	animation-delay: -0.32s;
}

.r9-typing-dot:nth-child(2) {
	animation-delay: -0.16s;
}

#r9-bot-input-container {
	display: flex;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	padding: 12px 15px;
	background: #fff;
	gap: 10px;
	align-items: center;
}

#r9-bot-user-input {
	flex: 1;
	border: 1px solid #e2e8f0;
	padding: 10px 16px;
	border-radius: 24px;
	outline: none;
	font-size: 14px;
	transition: border-color 0.2s, box-shadow 0.2s;
	background: #fdfdfd;
}

#r9-bot-user-input:focus {
	border-color: #1e70e6;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(30, 112, 230, 0.1);
}

#r9-bot-send-btn {
	background: #1e70e6;
	color: white;
	border: none;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, transform 0.2s;
	padding: 0;
	flex-shrink: 0;
}

#r9-bot-send-btn:hover {
	background: #0d47a1;
	transform: scale(1.05);
}

#r9-bot-send-btn:active {
	transform: scale(0.95);
}

@media (max-width: 480px) {
	#r9-bot-window {
		bottom: 0;
		right: 0;
		width: 100%;
		height: 100%;
		border-radius: 0;
		border: none;
	}

	#r9-bot-launcher {
		bottom: 15px;
		right: 15px;
	}
}

@keyframes r9-pulse {
	0% {
		transform: scale(0.95);
		opacity: 0.5;
	}

	50% {
		transform: scale(1.1);
		opacity: 1;
	}

	100% {
		transform: scale(0.95);
		opacity: 0.5;
	}
}

@keyframes r9-bounce {
	0%, 80%, 100% {
		transform: scale(0);
	}

	40% {
		transform: scale(1.0);
	}
}

.r9-cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	padding: 16px 20px 22px;
	pointer-events: none;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.r9-cookie-banner.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.r9-cookie-card {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 18px 22px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08), 0 18px 48px rgba(15, 23, 42, 0.15);
	border: 1px solid rgba(226, 232, 240, 0.9);
}

.r9-cookie-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(145deg, #fff7d6 0%, #ffe08a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.r9-cookie-body {
	flex: 1 1 320px;
	min-width: 0;
	text-align: left;
}

.r9-cookie-title {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.3;
}

.r9-cookie-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: #64748b;
}

.r9-cookie-text a {
	color: #1e70e6;
	font-weight: 600;
	text-decoration: none;
}

.r9-cookie-text a:hover {
	text-decoration: underline;
}

.r9-cookie-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.r9-cookie-btn {
	border: none;
	border-radius: 10px;
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.r9-cookie-btn-accept {
	background: #1e70e6;
	color: #fff;
	box-shadow: 0 4px 14px rgba(30, 112, 230, 0.25);
}

.r9-cookie-btn-accept:hover {
	background: #0d47a1;
	transform: translateY(-1px);
}

.r9-cookie-btn-details {
	background: #0e2235;
	color: #334155;
}

.r9-cookie-btn-details:hover {
	background: #144079;
	color: #0f172a;
}

@media (max-width: 820px) {
	.r9-cookie-banner {
		padding: 12px 12px 16px;
	}

	.r9-cookie-card {
		flex-wrap: wrap;
		gap: 14px;
		padding: 16px 16px 18px;
		border-radius: 16px;
	}

	.r9-cookie-icon {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.r9-cookie-body {
		flex: 1 1 calc(100% - 60px);
	}

	.r9-cookie-actions {
		width: 100%;
	}

	.r9-cookie-btn {
		flex: 1;
		text-align: center;
	}
}

@media (max-width: 420px) {
	.r9-cookie-actions {
		flex-direction: column;
	}

	.r9-cookie-btn {
		width: 100%;
	}
}

/* Universal Responsive Tags Container & Pill Link Styling */
.tags-container {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px 12px !important;
	justify-content: center !important;
	align-items: center !important;
	width: 100% !important;
	max-width: 1200px !important;
	margin: 0 auto 30px auto !important;
	padding: 10px 0 !important;
	box-sizing: border-box !important;
}

.tag-link {
	display: inline-flex !important;
	align-items: center !important;
	font-family: var(--mono, "Space Mono", monospace, sans-serif) !important;
	font-size: 13px !important;
	background: #161a23 !important;
	border: 1px solid #262c38 !important;
	color: #cbd5e1 !important;
	padding: 8px 16px !important;
	border-radius: 20px !important;
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease !important;
	text-decoration: none !important;
	white-space: nowrap !important;
	margin: 0 !important;
	line-height: 1.4 !important;
}

.tag-link:hover, .tag-link:focus {
	border-color: #3b82f6 !important;
	color: #ffffff !important;
	background: #1e293b !important;
	box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25) !important;
	transform: translateY(-1px) !important;
}

.tag-link.category-link {
	border-color: #3b82f6 !important;
	color: #3b82f6 !important;
	font-weight: 600 !important;
}

.tag-link.category-link:hover {
	background: #3b82f6 !important;
	color: #ffffff !important;
}

@media (max-width: 768px) {
	.tags-container {
		gap: 8px 10px !important;
		padding: 5px 10px !important;
	}

	.tag-link {
		font-size: 12px !important;
		padding: 6px 12px !important;
	}
}

/* Responsive CSS Grid for Tag Index Page (6 columns on desktop) */
.tags-grid-wrapper {
	display: grid !important;
	grid-template-columns: repeat(6, 1fr) !important;
	gap: 20px !important;
	width: 100% !important;
	max-width: 1320px !important;
	margin: 0 auto 40px auto !important;
	box-sizing: border-box !important;
}

.tag-grid-card {
	display: flex !important;
	flex-direction: column !important;
	background: #161a23 !important;
	border: 1px solid #262c38 !important;
	border-radius: 14px !important;
	overflow: hidden !important;
	text-decoration: none !important;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
	height: 100% !important;
}

.tag-grid-card:hover, .tag-grid-card:focus {
	transform: translateY(-5px) !important;
	border-color: #3b82f6 !important;
	box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25) !important;
	text-decoration: none !important;
}

.tag-card-img-box {
	width: 100% !important;
	height: 115px !important;
	overflow: hidden !important;
	background: #0f172a !important;
	position: relative !important;
}

.tag-card-img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	transition: transform 0.3s ease !important;
}

.tag-grid-card:hover .tag-card-img {
	transform: scale(1.06) !important;
}

.tag-card-body {
	padding: 12px 10px !important;
	text-align: center !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-grow: 1 !important;
	background: #161a23 !important;
}

.tag-card-title {
	color: #e2e8f0 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	transition: color 0.2s ease !important;
	word-break: break-word !important;
}

.tag-grid-card:hover .tag-card-title {
	color: #3b82f6 !important;
}

/* Adaptive Breakpoints for CSS Grid */
@media (max-width: 1200px) {
	.tags-grid-wrapper {
		grid-template-columns: repeat(4, 1fr) !important;
		gap: 16px !important;
	}
}

@media (max-width: 992px) {
	.tags-grid-wrapper {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 14px !important;
	}

	.tag-card-img-box {
		height: 105px !important;
	}
}

@media (max-width: 640px) {
	.tags-grid-wrapper {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 12px !important;
	}

	.tag-card-img-box {
		height: 95px !important;
	}

	.tag-card-title {
		font-size: 13px !important;
	}
}

@media (max-width: 400px) {
	.tags-grid-wrapper {
		grid-template-columns: repeat(1, 1fr) !important;
		gap: 10px !important;
	}
}

/* Extracted Inline Style Classes */

/* PageBlock Builder & Landing Styles */
.logos.logos-mb {
	margin-bottom: 30px;
}

.pricing .plan .sub-text.pricing-sub-text {
	font-size: 13px;
	color: #94a3b8;
	margin-bottom: 12px;
}

.richtext-block-content {
	font-size: 16px;
	line-height: 1.7;
	color: #334155;
}

.stats.stats-reset-padding {
	padding: 0;
	margin-bottom: 30px;
}

.pricing-section-wrap {
	padding: 20px 0 40px 0;
}

.pricing-inner-wrap {
	padding: 0;
	max-width: 100%;
}

/* Service Landing Component Classes */
.eyebrow-center {
	justify-content: center;
}

.btn-calc-cost {
	border: none;
	cursor: pointer;
}

.stats-no-padding {
	padding: 0;
}

.page-text-content-pt {
	padding-top: 30px;
}

.page-blocks-wrapper-card {
	background: var(--panel, #161b26);
	border: 1px solid var(--line, #242d42);
	border-radius: 16px;
	padding: 36px;
	margin-bottom: 40px;
}

.text-formatted-styled {
	color: #e2e8f0;
	font-size: 16px;
	line-height: 1.7;
}

.child-services-section {
	padding: 60px 0;
	background: var(--bg-alt, #0d1017);
	border-bottom: 1px solid var(--line, #1f293d);
}

.child-services-title {
	text-align: center;
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
}

.child-services-lede {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 40px auto;
	color: var(--muted, #94a3b8);
}

.child-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 24px;
}

.child-service-card {
	background: var(--panel, #161b26);
	border: 1px solid var(--line, #242d42);
	border-radius: 16px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.2s, border-color 0.2s;
}

.child-service-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.child-service-icon {
	font-size: 28px;
}

.child-service-tag {
	background: rgba(37, 99, 235, 0.15);
	border: 1px solid rgba(37, 99, 235, 0.3);
	color: #60a5fa;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 20px;
}

.child-service-name {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.35;
}

.child-service-link {
	color: #fff;
	text-decoration: none;
}

.child-service-desc {
	font-size: 14.5px;
	color: var(--muted, #94a3b8);
	line-height: 1.6;
	margin-bottom: 20px;
}

.child-service-btn {
	display: inline-block;
	background: var(--accent, #3b82f6);
	color: #ffffff;
	font-weight: 600;
	padding: 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	width: 100%;
	text-align: center;
	transition: opacity 0.2s;
}

.eyebrow-mb-12 {
	margin-bottom: 12px;
}

/* Category & Product View Classes */
.w3ls_w3l_banner_nav_right_grid1 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.product-banner-grid {
	display: grid;
	grid-template-columns: 60% 1fr;
}

/* Chat Bot & Footer & Layout Classes */
.r9-bot-assistant-title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.r9-bot-consultant-subtitle {
	font-size: 11px;
	opacity: 0.85;
}

.r9-bot-header-controls {
	display: flex;
	align-items: center;
	gap: 8px;
}

.r9-reset-btn {
	background: none;
	border: none;
	color: white;
	font-size: 18px;
	cursor: pointer;
	opacity: 0.85;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	transition: background 0.2s, transform 0.2s;
	line-height: 1;
}

.r9-bot-privacy-notice {
	font-size: 10px;
	color: #777;
	text-align: center;
	padding: 5px 15px 8px 15px;
	background: #fff;
	border-top: 1px solid #f0f0f0;
	line-height: 1.3;
}

.r9-bot-privacy-link {
	color: #1e70e6;
	text-decoration: underline;
}

.r9-forget-link {
	color: #c0392b;
	text-decoration: underline;
	cursor: pointer;
	margin-left: 8px;
	font-weight: 600;
}

.footer-phone-link {
	color: inherit;
	text-decoration: none;
}

.noscript-pixel {
	display: none;
}

.noscript-metrika {
	position: absolute;
	left: -9999px;
}

.static-page-dark-wrap-padded {
	padding-top: 120px;
	min-height: 80vh;
}

.site-error-centered {
	text-align: center;
}

.hero-fallback-styled {
	padding: 40px 0;
	text-align: center;
}

.login-form-help {
	color: #999;
	margin: 1em 0;
}

/* Thanks Page Classes */
.thanks-page-container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	padding: 20px;
	font-family: 'Ubuntu', 'Segoe UI', sans-serif;
	color: #fff;
	text-align: center;
}

.thanks-card {
	background: #0f2332;
	border: 4px solid #21d3a6;
	border-radius: 4px;
	padding: 40px 30px;
	max-width: 600px;
	width: 100%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}

.thanks-success-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 4px solid #21d3a6;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 40px;
	color: #21d3a6;
	animation: pulse-border 2s infinite;
}

.thanks-title {
	font-size: 2.2rem;
	color: #21d3a6;
	margin-bottom: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.thanks-text {
	font-size: 1.1rem;
	color: #94a3b8;
	margin-bottom: 30px;
	line-height: 1.6;
}

.thanks-redirect-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	background: rgba(33, 211, 166, 0.1);
	padding: 12px 20px;
	border-radius: 4px;
	margin-bottom: 25px;
}

.thanks-spinner {
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.1);
	border-left-color: #21d3a6;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.thanks-countdown-text {
	font-size: 0.95rem;
	color: #e2e8f0;
}

.thanks-countdown-sec {
	color: #21d3a6;
	font-size: 1.1rem;
}

.thanks-btn-back {
	display: inline-block;
	padding: 12px 24px;
	background: #21d3a6;
	color: #0f2332;
	text-decoration: none;
	font-weight: bold;
	border-radius: 4px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
}

/* Tag Pages Classes */
.tag-index-wrap {
	padding: 40px 15px;
}

.tag-index-header {
	text-align: center;
	margin-bottom: 40px;
}

.tag-index-title {
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 12px;
}

.tag-index-desc {
	color: #94a3b8;
	font-size: 16px;
	margin: 0 auto;
	max-width: 600px;
}

.tag-view-wrap {
	padding: 40px 15px;
}

.tag-header {
	text-align: center;
	margin-bottom: 30px;
}

.tag-header-title {
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
}

.tag-header-promo {
	color: #94a3b8;
	font-size: 16px;
	max-width: 800px;
	margin: 0 auto;
}

.tag-hero-banner {
	text-align: center;
	margin-bottom: 35px;
}

.tag-hero-img {
	max-width: 100%;
	max-height: 480px;
	width: auto;
	height: auto;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	display: inline-block;
}

.tag-description {
	color: #e2e8f0;
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 40px;
}

.tag-section-wrapper {
	margin-top: 40px;
}

.tag-section-title {
	color: #ffffff;
	font-size: 24px;
	margin-bottom: 20px;
	border-left: 4px solid #3b82f6;
	padding-left: 12px;
}

.tag-back-box {
	margin-top: 40px;
	text-align: center;
}

.tag-back-link {
	display: inline-block;
	padding: 10px 24px;
	font-size: 15px;
}

/* Tools Pages Classes */
.tools-hero-eyebrow {
	justify-content: center;
}

.tools-main-container {
	padding-top: 40px;
	padding-bottom: 60px;
}

.tools-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
}

.tools-card {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.2s, border-color 0.2s;
}

.tools-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.tools-card-icon {
	font-size: 32px;
}

.tools-card-tag {
	background: var(--line);
	color: var(--accent);
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
}

.tools-card-title {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.3;
}

.tools-card-link {
	color: #fff;
	text-decoration: none;
}

.tools-card-desc {
	font-size: 14.5px;
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 20px;
}

.tools-card-btn {
	display: inline-block;
	background: var(--accent);
	color: #10131a;
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 8px;
	text-decoration: none;
	width: 100%;
	text-align: center;
}

.tool-form-search-wrap {
	max-width: 600px;
	margin: 0 auto;
}

.tool-form-column-gap {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.tool-form-mb-0 {
	margin-bottom: 0;
}

.tool-form-w-100 {
	width: 100%;
}

.tool-form-loader {
	display: none;
	margin-top: 15px;
}

.tool-form-loader-text {
	margin-top: 10px;
	color: #666;
}

.tool-results-container {
	display: none;
	margin-top: 30px;
}

.tool-error-container {
	display: none;
	margin-top: 20px;
}

.ip-checker-form-box {
	display: flex;
	flex-direction: column;
	max-width: 500px;
	margin: 0 auto;
	gap: 15px;
}

.ip-results-box {
	margin-top: 30px;
	text-align: center;
	color: #666;
}

.audit-form-wrap {
	max-width: 600px;
	margin: 0 auto 40px auto;
}

.audit-loader-text {
	margin-top: 10px;
	color: #8b93a3;
}

.audit-summary-card-box {
	background: #161a23;
	border: 1px solid #262c38;
	padding: 24px;
	border-radius: 12px;
	margin-bottom: 30px;
	text-align: center;
}

.audit-summary-title {
	margin-top: 0;
	color: #ffffff;
}

.audit-summary-domain-span {
	color: #ffb454;
}

.audit-summary-stats-p {
	font-size: 18px;
	margin-bottom: 0;
	color: #e9ebf0;
}

.audit-disclaimer-box {
	margin-top: 40px;
	padding: 15px;
	border-left: 4px solid #ffb454;
	background: #161a23;
	border: 1px solid #262c38;
	font-size: 13.5px;
	color: #8b93a3;
	border-radius: 0 8px 8px 0;
}

.audit-disclaimer-strong {
	color: #ffffff;
}

/* SEO Analyzer & Text Cleaner Classes */
.seo-cta-section {
	margin-top: 50px;
	padding: 40px 24px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
}

.seo-cta-title {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	margin-bottom: 12px;
}

.seo-cta-desc {
	text-align: center;
	color: #999;
	max-width: 680px;
	margin: 0 auto 30px auto;
	font-size: 15px;
	line-height: 1.6;
}

.seo-cta-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.seo-cta-card {
	display: block;
	padding: 20px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	text-decoration: none;
	transition: transform 0.2s, border-color 0.2s;
}

.seo-cta-card-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

.seo-cta-card-title.green {
	color: #38ef7d;
}

.seo-cta-card-title.blue {
	color: #00b4db;
}

.seo-cta-card-title.orange {
	color: #ff9966;
}

.seo-cta-card-title.red {
	color: #ff5e62;
}

.seo-cta-card-desc {
	font-size: 13px;
	color: #aaa;
	line-height: 1.5;
}

.btn-group-full {
	width: 100%;
}

.btn-half {
	width: 50%;
}

.slider-captcha-mb-15 {
	margin-bottom: 15px;
	width: 100%;
}

.message-container-mt {
	margin-top: 15px;
}

/* Process Grid Component */
.process-grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.process-step-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 24px;
	position: relative;
}

.process-step-idx {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #2563eb;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.process-step-card h4 {
	font-size: 18px;
	font-weight: 600;
	color: #0f172a;
	margin-bottom: 8px;
}

.process-step-card p {
	font-size: 14px;
	color: #475569;
	margin-bottom: 0;
	line-height: 1.5;
}

/* SEO Analyzer Full Page Styles */
.tools-seo-analyzer {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 15px 60px;
	color: #e9ebf0;
}

.tools-seo-analyzer h1 {
	text-align: center;
	margin-bottom: 10px;
	color: #ffffff;
}

.seo-header-icon {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}

.seo-header-icon svg {
	width: 56px;
	height: 56px;
	color: #ffb454;
}

.tool-description {
	text-align: center;
	color: #8b93a3;
	margin-bottom: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.seo-score-card {
	background: #161a23;
	border: 1px solid #262c38;
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	margin-bottom: 24px;
}

.seo-score-circle {
	position: relative;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #262c38;
	transition: background 0.6s ease;
}

.seo-score-circle-inner {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #10131a;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.seo-score-value {
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
}

.seo-score-label {
	font-size: 13px;
	color: #8b93a3;
	margin-top: 2px;
}

.seo-score-title {
	font-size: 16px;
	color: #ffffff;
	margin: 0;
	font-weight: 600;
}

.seo-score-domain {
	font-size: 14px;
	color: #ffb454;
	margin-top: 4px;
	word-break: break-all;
}

.seo-summary-bar {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 24px;
	padding: 14px 20px;
	background: #161a23;
	border: 1px solid #262c38;
	border-radius: 8px;
}

.seo-summary-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	font-weight: 500;
}

.seo-summary-item .cnt {
	font-weight: 700;
}

.seo-summary-item.success {
	color: #57c48b;
}

.seo-summary-item.warning {
	color: #ffb454;
}

.seo-summary-item.error {
	color: #ff5555;
}

.seo-stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 28px;
}

.seo-stat-box {
	background: #161a23;
	border: 1px solid #262c38;
	border-radius: 8px;
	padding: 14px 12px;
	text-align: center;
}

.seo-stat-box .stat-value {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	word-break: break-all;
}

.seo-stat-box .stat-label {
	font-size: 12px;
	color: #8b93a3;
	margin-top: 4px;
}

.seo-check-group {
	margin-bottom: 28px;
}

.seo-check-group-title {
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
	padding-bottom: 8px;
	margin-bottom: 12px;
	border-bottom: 2px solid #262c38;
}

.seo-check-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid #262c38;
	border-radius: 8px;
	margin-bottom: 8px;
	background: #161a23;
	cursor: pointer;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.seo-check-item:hover {
	border-color: #3a4254;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.seo-check-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	margin-top: 1px;
}

.seo-check-body {
	flex: 1;
	min-width: 0;
}

.seo-check-row {
	display: flex;
	gap: 8px;
	align-items: baseline;
}

.seo-check-label {
	flex: 0 0 35%;
	font-weight: 600;
	color: #ffffff;
	font-size: 14px;
}

.seo-check-value {
	flex: 1;
	color: #cbd5e1;
	font-size: 14px;
	word-break: break-word;
}

.seo-check-toggle {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: #8b93a3;
	transition: transform 0.25s ease;
	margin-top: 1px;
}

.seo-check-item.open .seo-check-toggle {
	transform: rotate(180deg);
}

.seo-check-description {
	display: none;
	margin-top: 8px;
	padding: 12px 14px;
	background: #1c212c;
	border: 1px solid #262c38;
	border-radius: 6px;
	font-size: 13.5px;
	color: #94a3b8;
	line-height: 1.6;
}

.seo-disclaimer {
	margin-top: 40px;
	padding: 15px;
	border-left: 4px solid #ffb454;
	background: #161a23;
	font-size: 13px;
	color: #8b93a3;
	border-radius: 0 6px 6px 0;
}

.seo-spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, .4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: seo-spin .6s linear infinite;
	vertical-align: middle;
	margin-right: 6px;
}

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

@media (max-width: 767px) {
	.seo-stats-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.seo-check-row {
		flex-direction: column;
		gap: 2px;
	}

	.seo-check-label {
		flex: none;
	}

	.seo-summary-bar {
		gap: 14px;
	}
}

@media (max-width: 480px) {
	.seo-stats-row {
		grid-template-columns: 1fr 1fr;
	}

	.seo-score-circle {
		width: 110px;
		height: 110px;
	}

	.seo-score-circle-inner {
		width: 84px;
		height: 84px;
	}

	.seo-score-value {
		font-size: 28px;
	}
}

/* PageBlock Widget Components */
.page-blocks-wrapper {
	margin: 35px 0;
	font-family: inherit;
}

.page-block-section {
	margin-bottom: 45px;
	position: relative;
}

.page-block-header {
	margin-bottom: 25px;
	text-align: center;
}

.page-block-header h2 {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff !important;
	margin-bottom: 8px;
	line-height: 1.3;
}

.page-block-header p.subtitle {
	font-size: 16px;
	color: #94a3b8 !important;
	margin-bottom: 0;
}

.features-grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.feature-card {
	background: #161a23 !important;
	border: 1px solid #262c38 !important;
	border-radius: 12px;
	padding: 24px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	position: relative;
	overflow: hidden;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.35);
	border-color: #3b82f6 !important;
}

.feature-card-icon {
	width: 48px !important;
	height: 48px !important;
	border-radius: 12px !important;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%) !important;
	border: 1px solid rgba(59, 130, 246, 0.3) !important;
	color: #3b82f6 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin-bottom: 18px !important;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15) !important;
}

.feature-card-icon svg {
	width: 24px !important;
	height: 24px !important;
	stroke: #ffffff !important;
	fill: none !important;
	stroke-width: 2px !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
}

.feature-card .feature-card-icon {
	background: #ffb454 !important;

}

.feature-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: #ffffff !important;
	margin-bottom: 8px;
}

.feature-card p {
	font-size: 14px;
	color: #94a3b8 !important;
	margin-bottom: 0;
	line-height: 1.5;
}

.icon-list-box {
	background: #161a23 !important;
	border-radius: 14px;
	padding: 30px;
	border: 1px solid #262c38 !important;
}

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

.icon-list-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	color: #e2e8f0 !important;
	line-height: 1.5;
}

.icon-list-item .check-badge {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #10b981 !important;
	color: #ffffff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	margin-top: 2px;
}

.comparison-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.comparison-card {
	background: #161a23 !important;
	border-radius: 14px;
	border: 1px solid #262c38 !important;
	padding: 28px;
}

.comparison-card.highlight {
	border-color: #3b82f6 !important;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
	background: #1c212c !important;
}

.comparison-card h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 18px;
	color: #ffffff !important;
	border-bottom: 2px solid #262c38 !important;
	padding-bottom: 10px;
}

.comparison-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.comparison-list li {
	margin-bottom: 10px;
	padding-left: 24px;
	position: relative;
	font-size: 14px;
	color: #cbd5e1 !important;
}

.comparison-list li.adv::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #10b981 !important;
	font-weight: bold;
}

.comparison-list li.disadv::before {
	content: "✕";
	position: absolute;
	left: 0;
	color: #ef4444 !important;
	font-weight: bold;
}

.cta-banner-box {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
	color: #ffffff !important;
	border-radius: 16px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
	border: 1px solid #334155 !important;
}

.cta-banner-box h2 {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff !important;
	margin-bottom: 12px;
}

.cta-banner-box p {
	font-size: 16px;
	color: #94a3b8 !important;
	max-width: 650px;
	margin: 0 auto 24px auto;
	line-height: 1.6;
}

.cta-btn {
	display: inline-block;
	background: #ffb454 !important;
	color: #1e293b !important;
	padding: 14px 32px;
	border-radius: 8px;
	font-weight: 700 !important;
	font-size: 16px;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
	border: none;
	cursor: pointer;
}

.cta-btn:hover {
	background: #ffa024 !important;
	color: #0f172a !important;
	text-decoration: none;
	transform: translateY(-2px);
}

.faq-accordion-box {
	background: #161a23 !important;
	border-radius: 12px;
	border: 1px solid #262c38 !important;
	overflow: hidden;
}

.faq-accordion-item {
	border-bottom: 1px solid #262c38 !important;
}

.faq-accordion-item:last-child {
	border-bottom: none;
}

.faq-accordion-title {
	padding: 18px 24px;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff !important;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
	background: #161a23 !important;
}

.faq-accordion-title:hover {
	background: #1c212c !important;
}

.faq-accordion-content {
	padding: 0 24px 18px 24px;
	font-size: 15px;
	color: #94a3b8 !important;
	line-height: 1.6;
	display: none;
	background: #161a23 !important;
}

.faq-accordion-item.active .faq-accordion-content {
	display: block;
}

.faq-accordion-item.active .faq-icon {
	transform: rotate(180deg);
}

.faq-icon {
	transition: transform 0.2s ease;
	color: #94a3b8 !important;
}

.page-block-richtext {
	color: #e2e8f0 !important;
	line-height: 1.6;
	font-size: 16px;
}

.page-block-richtext p, .page-block-richtext div, .page-block-richtext span, .page-block-richtext li {
	color: #e2e8f0 !important;
}

.page-block-richtext h1, .page-block-richtext h2, .page-block-richtext h3, .page-block-richtext h4 {
	color: #ffffff !important;
}

@media (max-width: 768px) {
	.logo-mobile {
		display: none;
	}

	.r9-bot-text {
		display: none;
	}

	.block.footer-phone {
		bottom: 17px;
		position: fixed;
		margin: auto;
		justify-self: center;
		left: 0;
	}

	.button.callback-phone {
		font-size: 17px;
		padding: 12px 14px;
		font-weight: 700;
		margin-right: 20px;
		background-color: #ffb454 !important;
		border-radius: 8px;
	}
}

@media (min-width: 769px) {
	.logo-mobile {
		color: #ffffff !important;
	}

	.block.footer-phone {
		display: none;
	}
}

.header-phone-link {
	font-size: larger;
	font-weight: 900;
}

.why-us-grid, .benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 24px;
}

.why-us-card, .benefit-card {
	background: var(--panel, #161b26);
	border: 1px solid var(--line, #242d42);
	border-radius: 16px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.2s, border-color 0.2s;
}

.services-hint-sub {
	font-size: 13px !important;
	color: #94a3b8 !important;
	margin-top: -8px !important;
	margin-bottom: 12px !important;
	font-weight: 500 !important;
}

/* Distinct & High-Contrast Service Selection Pills & Buttons */
.service-pill,
.service-multiselect-pill {
	position: relative !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 10px 18px !important;
	font-size: 13.5px !important;
	font-weight: 600 !important;
	border-radius: 30px !important;
	cursor: pointer !important;
	user-select: none !important;
	transition: all 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
	border: 2px solid #3b82f6 !important;
	background: #1e293b !important;
	color: #ffffff !important;
	margin: 4px !important;
	line-height: 1.3 !important;
}

.site-contact-form .service-pill,
#modal-order .service-pill,
.envelope-inner .service-pill {
	background: #ffffff;
	color: #1e293b;
	border: 2px solid #cbd5e1;
}

.service-pill:hover,
.service-multiselect-pill:hover {
	border-color: #ffa012 !important;
	color: #ffffff !important;
	background: #334155 !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 14px rgba(255, 180, 84, 0.3) !important;
}

/* ALL Selected Active States - High Contrast #ffb454 Highlight with Checkmark */
.service-pill.active,
.service-multiselect-pill.active,
.service-pill.selected,
.service-multiselect-pill.selected,
#modal-order .service-pill.active,
#modal-order .service-pill.selected,
#modal-order .service-multiselect-pill.active,
#modal-order .service-multiselect-pill.selected,
.site-contact-form .service-pill.active,
.site-contact-form .service-pill.selected,
.site-contact-form .service-multiselect-pill.active,
.site-contact-form .service-multiselect-pill.selected,
.contact-form-modal-inner .service-pill.active,
.contact-form-modal-inner .service-multiselect-pill.active,
.contact-form-modal-inner .service-pill.selected,
.contact-form-modal-inner .service-multiselect-pill.selected,
.contact-form-static-wrapper .service-pill.active,
.contact-form-static-wrapper .service-multiselect-pill.active,
.envelope-inner .service-pill.active,
.envelope-inner .service-multiselect-pill.active,
.razrabotka-sajta-page .service-pill.active,
.razrabotka-sajta-page .service-multiselect-pill.active,
#contact-form-static .service-pill.active,
#contact-form-static-page .service-pill.active,
#contact-form-2 .service-pill.active,
#contact-form .service-pill.active {
	background: #ffb454 !important;
	border-color: #ffa012 !important;
	color: #0f172a !important;
	font-weight: 800 !important;
	box-shadow: 0 6px 20px rgba(255, 180, 84, 0.6), 0 0 0 3px rgba(255, 180, 84, 0.4) !important;
	transform: scale(1.05) translateY(-2px) !important;
}

.service-pill.active::before,
.service-multiselect-pill.active::before,
.service-pill.selected::before,
.service-multiselect-pill.selected::before,
#modal-order .service-pill.active::before,
#modal-order .service-multiselect-pill.active::before,
.site-contact-form .service-pill.active::before,
.contact-form-modal-inner .service-pill.active::before,
.contact-form-modal-inner .service-multiselect-pill.active::before,
.contact-form-static-wrapper .service-pill.active::before,
.envelope-inner .service-pill.active::before,
.razrabotka-sajta-page .service-pill.active::before,
#contact-form-static .service-pill.active::before {
	content: "✓ " !important;
	font-weight: 900 !important;
	margin-right: 6px !important;
	font-size: 16px !important;
	color: #0f172a !important;
}

/* Responsive visibility rules: Desktop = Buttons, Mobile = Select Dropdown */
@media (min-width: 769px) {

	.services-pills-container,
	.services-multiselect-container {
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 8px !important;
		margin-bottom: 15px !important;
	}

	.services-mobile-select-wrapper,
	.services-mobile-select {
		display: none !important;
	}
}



/* ==========================================================================
   UTM Generator Tool Styles (r9.by)
   ========================================================================== */
.tools-utm-generator {
	padding-top: 30px;
	padding-bottom: 60px;
}

.tools-header {
	margin-bottom: 35px;
}

.tools-header .tools-hero-eyebrow {
	font-size: 14px;
	color: #64748b;
	margin-bottom: 12px;
}

.tools-header .tools-hero-eyebrow a {
	color: #3b82f6;
	text-decoration: none;
}

.tools-header .tools-hero-eyebrow .active {
	color: #94a3b8;
}

.tools-header h1 {
	font-size: 32px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 12px;
	letter-spacing: -0.02em;
}

.tool-subtitle {
	font-size: 16px;
	color: #94a3b8;
	max-width: 800px;
	line-height: 1.6;
}

.utm-builder-card {
	background: #11151c;
	border: 1px solid #1e2638;
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	margin-bottom: 50px;
}

.section-label {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #cbd5e1;
	margin-bottom: 16px;
}

.preset-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px;
}

.btn-preset {
	background: #1a2233;
	border: 1px solid #2d3954;
	color: #94a3b8;
	padding: 10px 18px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-preset:hover {
	background: #242f47;
	border-color: #3b82f6;
	color: #ffffff;
	transform: translateY(-1px);
}

.btn-preset.active {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	border-color: #3b82f6;
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.utm-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-bottom: 35px;
}

@media (max-width: 850px) {
	.utm-form-grid {
		grid-template-columns: 1fr;
	}
}

.field-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #e2e8f0;
	margin-bottom: 8px;
}

.field-label.required::after {
	content: " *";
	color: #ef4444;
}

.field-hint {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: #64748b;
	margin-top: 2px;
}

.input-with-icon {
	position: relative;
	display: flex;
	align-items: center;
}

.input-prefix {
	position: absolute;
	left: 14px;
	color: #64748b;
	font-size: 14px;
	font-weight: 500;
	pointer-events: none;
}

.input-with-icon .form-control {
	padding-left: 70px;
}

.form-control {
	width: 100%;
	background: #161c2b;
	border: 1px solid #28334e;
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 14px;
	color: #ffffff;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.macros-wrapper {
	margin-top: 15px;
	margin-bottom: 20px;
	background: #161c2b;
	padding: 16px;
	border-radius: 12px;
	border: 1px solid #232c42;
}

.macros-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px;
}

.btn-macro {
	background: #1e283d;
	border: 1px solid #334263;
	color: #60a5fa;
	font-family: monospace;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.15s ease;
}

.btn-macro:hover {
	background: #2563eb;
	color: #ffffff;
	border-color: #3b82f6;
}

.options-wrapper {
	background: #161c2b;
	padding: 16px;
	border-radius: 12px;
	border: 1px solid #232c42;
}

.checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}

.custom-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: #cbd5e1;
	cursor: pointer;
	user-select: none;
}

.custom-checkbox input[type="checkbox"] {
	accent-color: #3b82f6;
	width: 16px;
	height: 16px;
	cursor: pointer;
}

/* Блок Итогового Результата */
.utm-result-card {
	background: linear-gradient(135deg, #162032 0%, #0f1624 100%);
	border: 1px solid #2b3957;
	border-radius: 16px;
	padding: 24px;
}

.result-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
}

.result-header h3 {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}

.status-badge {
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 20px;
}

.status-badge.status-ready {
	background: rgba(16, 185, 129, 0.2);
	color: #10b981;
	border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.status-empty {
	background: rgba(239, 68, 68, 0.2);
	color: #ef4444;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

.result-box {
	margin-bottom: 20px;
}

.result-textarea {
	width: 100%;
	background: #0b0e14;
	border: 1px solid #232d45;
	border-radius: 10px;
	color: #60a5fa;
	font-family: monospace;
	font-size: 14px;
	padding: 14px;
	resize: none;
	line-height: 1.5;
	outline: none;
}

.result-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.btn-lg {
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-icon {
	width: 18px;
	height: 18px;
}

.btn-primary {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: #ffffff;
	border: none;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	transform: translateY(-1px);
}

.btn-success-active {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
	box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35) !important;
}

.btn-secondary {
	background: #1e293b;
	color: #e2e8f0;
	border: 1px solid #334155;
}

.btn-secondary:hover:not(.disabled) {
	background: #334155;
	color: #ffffff;
}

.btn-secondary.disabled {
	opacity: 0.5;
	pointer-events: none;
}

.btn-outline {
	background: transparent;
	border: 1px solid #3b82f6;
	color: #3b82f6;
}

.btn-outline:hover {
	background: rgba(59, 130, 246, 0.1);
	color: #60a5fa;
}

.btn-ghost {
	background: transparent;
	border: none;
	color: #94a3b8;
}

.btn-ghost:hover {
	color: #ef4444;
}

/* Модалка QR */
.utm-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(5px);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.utm-modal-content {
	background: #161c2b;
	border: 1px solid #2d3a58;
	border-radius: 20px;
	padding: 30px;
	max-width: 450px;
	width: 100%;
	text-align: center;
	position: relative;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.utm-modal-close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 24px;
	background: none;
	border: none;
	color: #94a3b8;
	cursor: pointer;
}

.utm-modal-close:hover {
	color: #ffffff;
}

.qr-container {
	margin: 20px auto;
	padding: 16px;
	background: #ffffff;
	border-radius: 12px;
	display: inline-block;
}

.qr-container img {
	display: block;
	max-width: 200px;
	height: auto;
}

.qr-url-preview {
	font-size: 12px;
	color: #94a3b8;
	word-break: break-all;
	font-family: monospace;
	max-height: 80px;
	overflow-y: auto;
}

/* История */
.utm-history-section {
	display: none;
	margin-top: 30px;
	background: #161c2b;
	border-radius: 14px;
	padding: 20px;
	border: 1px solid #232c42;
}

.history-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.history-header h4 {
	font-size: 14px;
	font-weight: 600;
	color: #cbd5e1;
	margin: 0;
}

.history-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.history-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #0f1420;
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid #1e2638;
}

.history-url {
	font-family: monospace;
	font-size: 13px;
	color: #60a5fa;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 80%;
}

/* Справочный блок */
.utm-info-section {
	margin-top: 60px;
}

.utm-info-section h2 {
	font-size: 26px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 16px;
}

.utm-info-section p {
	font-size: 16px;
	color: #94a3b8;
	line-height: 1.7;
	margin-bottom: 30px;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-bottom: 50px;
}

.info-card {
	background: #11151c;
	border: 1px solid #1e2638;
	border-radius: 14px;
	padding: 20px;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.info-card:hover {
	transform: translateY(-2px);
	border-color: #3b82f6;
}

.info-icon {
	font-size: 24px;
	margin-bottom: 10px;
}

.info-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: #3b82f6;
	margin-bottom: 8px;
	font-family: monospace;
}

.info-card p {
	font-size: 13px;
	color: #94a3b8;
	margin-bottom: 0;
	line-height: 1.5;
}

.info-card code {
	background: #1e283d;
	color: #60a5fa;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 12px;
}

.faq-container {
	background: #11151c;
	border: 1px solid #1e2638;
	border-radius: 16px;
	padding: 30px;
}

.faq-item {
	margin-bottom: 24px;
	border-bottom: 1px solid #1e2638;
	padding-bottom: 20px;
}

.faq-item:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}

.faq-question {
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 10px;
}

.faq-answer p {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.6;
	margin-bottom: 0;
}

/* Bulk Domain Checker Styles */
.bulk-domain-checker-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 15px 60px;
}

.tool-page-header {
	text-align: center;
	margin-bottom: 30px;
}

.tool-page-header .eyebrow {
	font-size: 13px;
	color: #ffb454;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.tool-page-header h1 {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 12px;
}

.tool-subtitle {
	font-size: 15px;
	color: #94a3b8;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

.bulk-domain-card {
	background: #11151c;
	border: 1px solid #1e2638;
	border-radius: 16px;
	padding: 25px;
	margin-bottom: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bulk-domain-input-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	flex-wrap: wrap;
	gap: 10px;
}

.bulk-domain-label {
	font-size: 16px;
	font-weight: 600;
	color: #f1f5f9;
	margin: 0;
}

.domain-count-badge {
	font-size: 13px;
	padding: 2px 8px;
	border-radius: 12px;
	background: #1e2638;
	color: #94a3b8;
	margin-left: 8px;
}

.domain-count-badge.badge-ok {
	background: #10b98120;
	color: #34d399;
}

.domain-count-badge.badge-danger {
	background: #ef444420;
	color: #f87171;
}

.btn-file-upload {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #ffb454;
	background: #1e2638;
	padding: 6px 14px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-file-upload:hover {
	background: #2b364e;
	color: #ffffff;
}

.bulk-file-input-hidden {
	display: none !important;
}

.bulk-domain-textarea {
	background: #0b0d13;
	border: 1px solid #1e2638;
	border-radius: 12px;
	color: #f1f5f9;
	font-family: monospace, monospace;
	font-size: 14px;
	line-height: 1.5;
	padding: 14px;
	resize: vertical;
	width: 100%;
	margin-bottom: 20px;
}

.bulk-domain-textarea:focus {
	border-color: #ffb454;
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 180, 84, 0.2);
}

.bulk-form-actions {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.bulk-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: linear-gradient(135deg, #ffb454 0%, #f59e0b 100%);
	color: #000000;
	font-weight: 700;
	font-size: 16px;
	padding: 14px 28px;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	width: 100%;
}

.bulk-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.bulk-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* Progress Box */
.bulk-progress-box {
	display: none;
	background: #11151c;
	border: 1px solid #1e2638;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 30px;
}

.bulk-error-box {
	display: none;
}

.bulk-results-container {
	display: none;
}

.progress-info {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 600;
	color: #f1f5f9;
	margin-bottom: 10px;
}

.progress-bar-track {
	height: 10px;
	background: #1e2638;
	border-radius: 5px;
	overflow: hidden;
}

.progress-bar-fill {
	width: 0%;
	height: 100%;
	background: linear-gradient(90deg, #ffb454, #3b82f6);
	transition: width 0.3s ease;
}

/* Stats Cards */
.bulk-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin-bottom: 24px;
}

.bulk-stat-card {
	background: #11151c;
	border: 1px solid #1e2638;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
}

.bulk-stat-val {
	font-size: 28px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
}

.bulk-stat-lbl {
	font-size: 13px;
	color: #94a3b8;
	margin-top: 4px;
}

.bulk-stat-card.stat-success .bulk-stat-val { color: #34d399; }
.bulk-stat-card.stat-warning .bulk-stat-val { color: #fbbf24; }
.bulk-stat-card.stat-info .bulk-stat-val { color: #60a5fa; }

/* Table Toolbar */
.bulk-table-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	flex-wrap: wrap;
	gap: 12px;
}

.bulk-search-wrap {
	flex: 1;
	min-width: 250px;
}

.bulk-search-input {
	background: #0b0d13;
	border: 1px solid #1e2638;
	border-radius: 8px;
	color: #ffffff;
	padding: 8px 14px;
	width: 100%;
}

.bulk-export-actions {
	display: flex;
	gap: 10px;
}

.btn-outline {
	background: transparent;
	border: 1px solid #1e2638;
	color: #f1f5f9;
	padding: 8px 14px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 13px;
	transition: all 0.2s ease;
}

.btn-outline:hover {
	background: #1e2638;
}

.btn-secondary {
	background: #3b82f6;
	border: none;
	color: #ffffff;
	padding: 8px 14px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.2s ease;
}

.btn-secondary:hover {
	background: #2563eb;
}

/* Results Table */
.bulk-table-responsive {
	background: #11151c;
	border: 1px solid #1e2638;
	border-radius: 12px;
	overflow-x: auto;
}

.bulk-table {
	width: 100%;
	border-collapse: collapse;
	color: #f1f5f9;
	font-size: 14px;
}

.bulk-table th {
	background: #161b26;
	padding: 12px 16px;
	text-align: left;
	font-weight: 600;
	color: #94a3b8;
	border-bottom: 1px solid #1e2638;
	white-space: nowrap;
}

.bulk-table td {
	padding: 14px 16px;
	border-bottom: 1px solid #192030;
	vertical-align: middle;
}

.bulk-table tr:last-child td {
	border-bottom: none;
}

.bulk-table tr:hover td {
	background: #151a24;
}

.ip-code {
	font-family: monospace;
	background: #0b0d13;
	padding: 3px 6px;
	border-radius: 4px;
	border: 1px solid #1e2638;
	color: #60a5fa;
	font-size: 13px;
}

.flag-icon {
	font-weight: 700;
	color: #ffb454;
}

.fs-xs { font-size: 11px; }

/* Badge tags */
.badge-tag {
	display: inline-block;
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
}

.tag-success { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.tag-warning { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.tag-danger { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.tag-info { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.tag-neutral { background: rgba(148, 163, 184, 0.1); color: #94a3b8; border: 1px solid rgba(148, 163, 184, 0.2); }

.ns-list {
	font-family: monospace;
	font-size: 12px;
}

.ns-item {
	color: #cbd5e1;
	line-height: 1.4;
}

.ssl-badge {
	font-size: 11px;
	color: #34d399;
	margin-left: 4px;
}

.bulk-table th.sortable {
	cursor: pointer;
	user-select: none;
	transition: background 0.2s, color 0.2s;
}

.bulk-table th.sortable:hover {
	background: #1e2638;
	color: #ffffff;
}

.bulk-table th.sortable.active-sort {
	color: #ffb454;
}

.sort-icon {
	font-size: 11px;
	margin-left: 4px;
	opacity: 0.6;
}

.bulk-table th.sortable.active-sort .sort-icon {
	opacity: 1;
}

/* Глобальный сброс белого фона и скругления слева для всех слайдеров капчи сайта */
.slider-captcha-container,
.slider-captcha-track,
.slider-captcha-wrapper {
	background: transparent !important;
}

.slider-captcha-bg,
.slider-captcha-container .slider-captcha-bg,
.slider-captcha-track .slider-captcha-bg,
.contact-form-modal-inner .slider-captcha-bg,
.main-block-feedback-widget .slider-captcha-bg {
	border-radius: 0 !important;
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}
/* ==========================================================================
   SEO Competitor & SERP Analyzer Dark Theme & Contrast Styles
   ========================================================================== */
.tools-serp-analyzer {
	color: #e2e8f0;
}

/* Форма и контейнеры */
.tools-serp-analyzer .serp-card,
.tools-serp-analyzer #serp-form-section,
.tools-serp-analyzer #serp-otp-section,
.tools-serp-analyzer #serp-progress-section {
	background: #161a23 !important;
	border: 1px solid #262c38 !important;
	border-radius: 12px !important;
	padding: 28px !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
	color: #e2e8f0 !important;
}

.tools-serp-analyzer label {
	color: #f1f5f9 !important;
	font-weight: 700 !important;
}

.tools-serp-analyzer .form-control {
	background: #0f131a !important;
	border: 1px solid #2e3646 !important;
	color: #ffffff !important;
}

.tools-serp-analyzer .form-control:focus {
	border-color: #ffb454 !important;
	box-shadow: 0 0 0 2px rgba(255, 180, 84, 0.2) !important;
}

.tools-serp-analyzer select.form-control {
	background: #0f131a !important;
	color: #ffffff !important;
}

.tools-serp-analyzer select.form-control option {
	background: #161a23 !important;
	color: #ffffff !important;
}

/* Контактная плашка в форме */
.tools-serp-analyzer .serp-contacts-box {
	background: #10131a !important;
	border: 1px solid #262c38 !important;
	border-radius: 10px !important;
	padding: 20px !important;
	margin-bottom: 20px !important;
}

/* Баннер готовности отчета */
.tools-serp-analyzer .serp-success-banner {
	background: #1a202c !important;
	border: 1px solid #ffb454 !important;
	border-radius: 12px !important;
	padding: 22px !important;
	margin-bottom: 25px !important;
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 15px !important;
	box-shadow: 0 4px 16px rgba(255, 180, 84, 0.1) !important;
}

.tools-serp-analyzer .serp-success-banner h3 {
	margin: 0 0 6px 0 !important;
	color: #ffb454 !important;
	font-weight: 800 !important;
	font-size: 20px !important;
}

.tools-serp-analyzer .serp-success-banner .serp-query-label {
	font-size: 14px !important;
	color: #94a3b8 !important;
}

.tools-serp-analyzer .serp-success-banner .serp-query-label strong {
	color: #ffffff !important;
}

/* Кнопки действий */
.tools-serp-analyzer .btn-open-prototype {
	background: #ffb454 !important;
	border: 1px solid #ffb454 !important;
	color: #0f172a !important;
	font-weight: 700 !important;
	padding: 10px 18px !important;
	border-radius: 6px !important;
	transition: all 0.2s ease !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
}

.tools-serp-analyzer .btn-open-prototype:hover {
	background: #ffa834 !important;
	color: #000000 !important;
	transform: translateY(-1px) !important;
}

.tools-serp-analyzer .btn-download-report {
	background: #262c38 !important;
	border: 1px solid #3b4252 !important;
	color: #ffffff !important;
	font-weight: 600 !important;
	padding: 10px 18px !important;
	border-radius: 6px !important;
	transition: all 0.2s ease !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
}

.tools-serp-analyzer .btn-download-report:hover {
	background: #333b4b !important;
	color: #ffffff !important;
	border-color: #ffb454 !important;
	transform: translateY(-1px) !important;
}

/* Сводные бенчмарк-карточки */
.tools-serp-analyzer .serp-metric-card {
	flex: 1;
	min-width: 150px;
	background: #161a23 !important;
	border: 1px solid #262c38 !important;
	border-radius: 10px !important;
	padding: 18px 12px !important;
	text-align: center !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.tools-serp-analyzer .serp-metric-val {
	font-size: 32px !important;
	font-weight: 800 !important;
	color: #ffb454 !important;
	line-height: 1.2 !important;
}

.tools-serp-analyzer .serp-metric-label {
	font-size: 13px !important;
	color: #94a3b8 !important;
	font-weight: 600 !important;
	margin-top: 6px !important;
}

/* Вкладки (Tabs) */
.tools-serp-analyzer .serp-tabs-wrap {
	background: #161a23 !important;
	border: 1px solid #262c38 !important;
	border-radius: 12px !important;
	overflow: hidden !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.tools-serp-analyzer .nav-tabs {
	background: #10131a !important;
	border-bottom: 1px solid #262c38 !important;
	padding: 12px 15px 0 15px !important;
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
}

.tools-serp-analyzer .nav-tabs > li > a {
	font-weight: 700 !important;
	color: #94a3b8 !important;
	background: #161a23 !important;
	border: 1px solid #262c38 !important;
	border-bottom: none !important;
	padding: 10px 18px !important;
	border-radius: 8px 8px 0 0 !important;
	transition: all 0.2s ease !important;
}

.tools-serp-analyzer .nav-tabs > li > a:hover {
	color: #ffffff !important;
	background: #1e2430 !important;
}

.tools-serp-analyzer .nav-tabs > li.active > a,
.tools-serp-analyzer .nav-tabs > li.active > a:hover,
.tools-serp-analyzer .nav-tabs > li.active > a:focus {
	background: #ffb454 !important;
	color: #0f172a !important;
	border: 1px solid #ffb454 !important;
	border-bottom: none !important;
	font-weight: 800 !important;
}

/* Контент вкладок */
.tab-pane,
.tab-pane.active {
	background-color: transparent;
}

.tools-serp-analyzer .tab-content {
	background: #161a23 !important;
	padding: 32px 28px !important;
	color: #e2e8f0 !important;
}

.tools-serp-analyzer .tab-pane,
.tools-serp-analyzer .tab-pane.active {
	background: transparent !important;
	color: #e2e8f0 !important;
}

.tools-serp-analyzer .tab-pane h4 {
	font-weight: 800 !important;
	color: #ffffff !important;
	font-size: 19px !important;
	margin-top: 0 !important;
	margin-bottom: 18px !important;
	line-height: 1.4 !important;
}

.tools-serp-analyzer .tab-pane p {
	color: #94a3b8 !important;
	font-size: 14.5px !important;
	line-height: 1.6 !important;
	margin-bottom: 20px !important;
}

/* Карточки Wireframe блоков */
.tools-serp-analyzer .serp-wireframe-card {
	background: #1c212c !important;
	border: 1px solid #2e3646 !important;
	border-radius: 10px !important;
	padding: 20px !important;
	margin-bottom: 16px !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.tools-serp-analyzer .serp-wireframe-card .serp-block-num {
	background: #ffb454 !important;
	color: #0f172a !important;
	width: 28px !important;
	height: 28px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 50% !important;
	font-weight: 800 !important;
	font-size: 13px !important;
	flex-shrink: 0 !important;
}

.tools-serp-analyzer .serp-wireframe-card strong.serp-block-title {
	font-size: 16px !important;
	color: #ffffff !important;
	font-weight: 700 !important;
}

.tools-serp-analyzer .serp-wireframe-card p.serp-block-desc {
	font-size: 14px !important;
	color: #cbd5e1 !important;
	margin: 10px 0 !important;
	line-height: 1.5 !important;
}

.tools-serp-analyzer .serp-wireframe-card .serp-block-elements {
	font-size: 13px !important;
	color: #94a3b8 !important;
	background: #12151d !important;
	border: 1px solid #262c38 !important;
	padding: 12px 16px !important;
	border-radius: 6px !important;
	margin-top: 10px !important;
}

.tools-serp-analyzer .serp-wireframe-card .serp-block-elements strong {
	color: #ffb454 !important;
}

/* LSI теги */
.tools-serp-analyzer .serp-lsi-pill {
	background: #1c212c !important;
	color: #f1f5f9 !important;
	border: 1px solid #2e3646 !important;
	padding: 8px 16px !important;
	border-radius: 20px !important;
	font-size: 13.5px !important;
	font-weight: 500 !important;
	display: inline-block !important;
	margin: 3px 2px !important;
	line-height: 1.4 !important;
	transition: all 0.2s ease !important;
}

.tools-serp-analyzer .serp-lsi-pill:hover {
	border-color: #ffb454 !important;
	color: #ffb454 !important;
	background: #242b38 !important;
}

/* Чек-лист E-E-A-T */
.tools-serp-analyzer .serp-eeat-list {
	list-style: none !important;
	padding: 22px 26px !important;
	margin: 0 0 10px 0 !important;
	background: #11151e !important;
	border: 1px solid #262c38 !important;
	border-radius: 10px !important;
}

.tools-serp-analyzer .serp-eeat-list li {
	color: #cbd5e1 !important;
	font-size: 14.5px !important;
	line-height: 1.7 !important;
	margin-bottom: 12px !important;
	padding-left: 28px !important;
	position: relative !important;
}

.tools-serp-analyzer .serp-eeat-list li:last-child {
	margin-bottom: 0 !important;
}

.tools-serp-analyzer .serp-eeat-list li::before {
	content: "✓" !important;
	position: absolute !important;
	left: 0 !important;
	top: 0 !important;
	color: #22c55e !important;
	font-weight: 800 !important;
	font-size: 16px !important;
}

.tools-serp-analyzer .serp-eeat-list li strong {
	color: #ffffff !important;
}

/* Таблица сайтов-конкурентов */
.tools-serp-analyzer .table-responsive {
	border: 1px solid #262c38 !important;
	border-radius: 8px !important;
	overflow: hidden !important;
}

.tools-serp-analyzer table.serp-table {
	width: 100% !important;
	background: #161a23 !important;
	border-collapse: collapse !important;
	margin-bottom: 0 !important;
}

.tools-serp-analyzer table.serp-table th {
	background: #10131a !important;
	color: #ffb454 !important;
	font-weight: 700 !important;
	padding: 12px 14px !important;
	border-bottom: 2px solid #262c38 !important;
	border-top: none !important;
	border-left: 1px solid #262c38 !important;
	border-right: 1px solid #262c38 !important;
	font-size: 13px !important;
}

.tools-serp-analyzer table.serp-table td {
	background: #161a23 !important;
	color: #e2e8f0 !important;
	padding: 12px 14px !important;
	border: 1px solid #262c38 !important;
	font-size: 13px !important;
	vertical-align: middle !important;
}

.tools-serp-analyzer table.serp-table tbody tr:nth-of-type(even) td {
	background: #1a1f2a !important;
}

.tools-serp-analyzer table.serp-table tbody tr:hover td {
	background: #222938 !important;
}

.tools-serp-analyzer table.serp-table td code {
	background: #10131a !important;
	color: #38bdf8 !important;
	padding: 3px 8px !important;
	border-radius: 4px !important;
	font-size: 12px !important;
	border: 1px solid #262c38 !important;
}

/* Блоки мета-тегов */
.tools-serp-analyzer .serp-meta-box {
	background: #12151d !important;
	border: 1px solid #262c38 !important;
	border-radius: 8px !important;
	padding: 14px 18px !important;
	color: #f1f5f9 !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
	word-break: break-word !important;
}

.tools-serp-analyzer .serp-meta-label {
	font-weight: 700 !important;
	color: #ffb454 !important;
	margin-bottom: 6px !important;
	font-size: 14px !important;
	display: block !important;
}

/* Stepper шаги в процессе анализа */
.tools-serp-analyzer .serp-step-item {
	background: #12151d !important;
	border: 1px solid #262c38 !important;
	border-left: 4px solid #333d4e !important;
	color: #94a3b8 !important;
	padding: 12px 16px !important;
	border-radius: 8px !important;
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	transition: all 0.3s ease !important;
}

.tools-serp-analyzer .serp-step-item .step-num {
	width: 26px !important;
	height: 26px !important;
	border-radius: 50% !important;
	background: #262c38 !important;
	color: #ffffff !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	flex-shrink: 0 !important;
}

.tools-serp-analyzer .serp-step-item .step-text {
	font-size: 14px !important;
	color: #94a3b8 !important;
}

/* ==========================================================================
   Раздел: Каталог прототипов сайтов (/prototipy-sajtov & /prototipy)
   ========================================================================== */
.r9-prototypes-page {
	padding: 30px 0 70px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #e2e8f0 !important;
	background-color: transparent !important;
	min-height: 80vh;
}

.r9-prototypes-breadcrumbs {
	font-size: 13.5px;
	color: #94a3b8 !important;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.r9-prototypes-breadcrumbs a {
	color: #94a3b8 !important;
	text-decoration: none;
	transition: color 0.2s ease;
}

.r9-prototypes-breadcrumbs a:hover {
	color: #ffb454 !important;
	text-decoration: underline;
}

.r9-bc-sep {
	color: #475569 !important;
}

.r9-bc-current {
	color: #ffffff !important;
	font-weight: 600;
}

.r9-prototypes-hero {
	background: #161a23 !important;
	border: 1px solid #262c38 !important;
	border-radius: 20px;
	padding: 40px 48px;
	margin-bottom: 32px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.r9-hero-pill-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(34, 197, 94, 0.12) !important;
	color: #4ade80 !important;
	border: 1px solid rgba(34, 197, 94, 0.3) !important;
	font-size: 12.5px;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: 30px;
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.r9-hero-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 8px #22c55e;
}

.r9-prototypes-h1 {
	font-size: 32px !important;
	font-weight: 800 !important;
	color: #ffffff !important;
	line-height: 1.25 !important;
	margin: 0 0 16px !important;
	letter-spacing: -0.5px;
}

.r9-prototypes-hero-sub {
	font-size: 16px !important;
	line-height: 1.6 !important;
	color: #94a3b8 !important;
	max-width: 900px;
	margin: 0 0 28px !important;
}

.r9-hero-metrics-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	padding-top: 24px;
	border-top: 1px solid #262c38 !important;
}

.r9-metric-item {
	display: flex;
	flex-direction: column;
	background: #1c212c !important;
	border: 1px solid #262c38 !important;
	border-radius: 12px;
	padding: 16px 14px;
	text-align: center;
}

.r9-metric-val {
	font-size: 26px !important;
	font-weight: 800 !important;
	color: #ffb454 !important;
	line-height: 1.2 !important;
}

.r9-metric-label {
	font-size: 12.5px !important;
	color: #94a3b8 !important;
	margin-top: 4px !important;
}

/* Навигационные табы категорий/ниш */
.r9-prototypes-tabs-wrapper {
	margin-bottom: 32px;
}

.r9-prototypes-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.r9-tab-btn {
	background: #161a23 !important;
	border: 1px solid #262c38 !important;
	color: #cbd5e1 !important;
	padding: 9px 20px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.r9-tab-btn:hover {
	border-color: #ffb454 !important;
	color: #ffb454 !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(255, 180, 84, 0.2);
}

.r9-tab-btn.is-active {
	background: #278635 !important;
	color: #ffffff !important;
	border-color: #278635 !important;
	box-shadow: 0 4px 16px rgba(39, 134, 53, 0.4) !important;
}

/* Секция контента и панель счетчика */
.r9-prototypes-content-section {
	margin-bottom: 48px;
}

.r9-prototypes-header-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	flex-wrap: wrap;
	gap: 12px;
}

.r9-catalog-count-label {
	font-size: 15px !important;
	color: #e2e8f0 !important;
}

.r9-catalog-count-label strong {
	color: #ffb454 !important;
	font-weight: 700;
}

.r9-catalog-tagline {
	font-size: 13.5px !important;
	color: #94a3b8 !important;
}

/* CSS GRID ДЛЯ ТИЗЕРОВ ПРОТОТИПОВ (4 В РЯД НА ДЕСКТОПЕ) */
.r9-prototypes-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

/* Карточка прототипа */
.r9-prototype-card {
	background: #161a23 !important;
	border: 1px solid #262c38 !important;
	border-radius: 16px;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.r9-prototype-card:hover {
	transform: translateY(-5px);
	border-color: #ffb454 !important;
	box-shadow: 0 16px 36px rgba(255, 180, 84, 0.18);
}

.r9-prototype-card-link {
	padding: 24px;
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none !important;
	color: inherit !important;
}

.r9-prototype-card-badge-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}

.r9-prototype-badge {
	font-size: 11px;
	font-weight: 700;
	border-radius: 6px;
	padding: 4px 10px;
	line-height: 1.2;
}

.r9-badge-cat {
	background: rgba(42, 157, 221, 0.15) !important;
	color: #38bdf8 !important;
	border: 1px solid rgba(42, 157, 221, 0.35) !important;
	max-width: 150px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.r9-badge-status {
	background: rgba(34, 197, 94, 0.15) !important;
	color: #4ade80 !important;
	border: 1px solid rgba(34, 197, 94, 0.35) !important;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
}

.r9-status-pulse {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 6px #22c55e;
}

.r9-prototype-card-content {
	flex-grow: 1;
}

.r9-prototype-title {
	font-size: 17px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	line-height: 1.35 !important;
	margin: 0 0 10px !important;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s ease;
}

.r9-prototype-card:hover .r9-prototype-title {
	color: #ffb454 !important;
}

.r9-prototype-desc {
	font-size: 13.5px !important;
	line-height: 1.55 !important;
	color: #94a3b8 !important;
	margin: 0 0 16px !important;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.r9-prototype-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 20px;
}

.r9-tag-pill {
	font-size: 11px !important;
	background: #1c212c !important;
	color: #cbd5e1 !important;
	border: 1px solid #262c38 !important;
	border-radius: 4px;
	padding: 3px 8px;
	font-weight: 500;
	line-height: 1.2;
}

.r9-prototype-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 14px;
	border-top: 1px solid #262c38 !important;
	margin-top: auto;
}

.r9-prototype-action-text {
	font-size: 13.5px !important;
	font-weight: 700 !important;
	color: #ffb454 !important;
	transition: color 0.2s ease;
}

.r9-prototype-action-arrow {
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #ffb454 !important;
	transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.r9-prototype-card:hover .r9-prototype-action-arrow {
	transform: translateX(6px);
}

/* Кнопка "Показать еще" */
.r9-prototypes-load-more-wrapper {
	text-align: center;
	margin-top: 40px;
}

.r9-prototypes-load-more-btn {
	background: #278635 !important;
	color: #ffffff !important;
	border: none;
	padding: 15px 36px;
	border-radius: 50px;
	font-size: 14.5px;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 6px 20px rgba(39, 134, 53, 0.35);
}

.r9-prototypes-load-more-btn:hover {
	background: #22c55e !important;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
}

.r9-prototypes-load-more-btn:active {
	transform: translateY(0);
}

.r9-prototypes-load-more-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	pointer-events: none;
}

.r9-btn-spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ffffff;
	animation: r9-spin 0.7s linear infinite;
}

.r9-prototypes-load-more-btn.is-loading .r9-btn-spinner {
	display: inline-block;
}

.r9-prototypes-load-more-btn.is-loading .r9-btn-text {
	opacity: 0.8;
}

/* Пустое состояние */
.r9-prototypes-empty-state {
	background: #161a23 !important;
	border: 1px dashed #333b4a !important;
	border-radius: 16px;
	padding: 50px 30px;
	text-align: center;
	margin: 20px 0;
}

.r9-empty-icon {
	font-size: 42px;
	margin-bottom: 16px;
}

.r9-prototypes-empty-state h3 {
	font-size: 20px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	margin: 0 0 10px !important;
}

.r9-prototypes-empty-state p {
	font-size: 15px !important;
	color: #94a3b8 !important;
	max-width: 600px;
	margin: 0 auto 24px !important;
	line-height: 1.55 !important;
}

.r9-empty-cta-btn {
	display: inline-block;
	background: #278635;
	color: #ffffff !important;
	padding: 12px 28px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none !important;
	transition: background 0.2s ease, transform 0.2s ease;
}

.r9-empty-cta-btn:hover {
	background: #22c55e;
	transform: translateY(-2px);
}

/* CTA Баннер генерации индивидуального прототипа */
.r9-prototypes-cta-banner {
	background: linear-gradient(135deg, #161a23 0%, #1c212c 100%) !important;
	border-radius: 20px;
	padding: 44px 48px;
	color: #ffffff !important;
	border: 1px solid #262c38 !important;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
	margin-top: 50px;
}

.r9-cta-pill {
	display: inline-block;
	background: rgba(39, 134, 53, 0.2);
	color: #4ade80 !important;
	border: 1px solid rgba(74, 222, 128, 0.3);
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.r9-cta-title {
	font-size: 28px !important;
	font-weight: 800 !important;
	color: #ffffff !important;
	margin: 0 0 14px !important;
	line-height: 1.3 !important;
}

.r9-cta-desc {
	font-size: 15.5px !important;
	line-height: 1.6 !important;
	color: #94a3b8 !important;
	max-width: 850px;
	margin: 0 0 28px !important;
}

.r9-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.r9-cta-btn-primary {
	background: #278635;
	color: #ffffff !important;
	padding: 14px 30px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 14.5px;
	text-decoration: none !important;
	transition: all 0.2s ease;
	box-shadow: 0 6px 18px rgba(39, 134, 53, 0.35);
}

.r9-cta-btn-primary:hover {
	background: #22c55e;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(34, 197, 94, 0.45);
}

.r9-cta-btn-secondary {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff !important;
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14.5px;
	text-decoration: none !important;
	border: 1px solid #262c38;
	transition: all 0.2s ease;
}

.r9-cta-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

/* АДАПТИВНЫЕ МЕДИА-ЗАПРОСЫ ДЛЯ CSS GRID (MINMAX) */
@media (max-width: 1200px) {
	.r9-prototypes-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 20px;
	}
	.r9-prototypes-hero {
		padding: 32px 32px;
	}
	.r9-hero-metrics-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}

@media (max-width: 860px) {
	.r9-prototypes-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
	.r9-prototypes-h1 {
		font-size: 26px;
	}
	.r9-prototypes-cta-banner {
		padding: 32px 24px;
	}
	.r9-cta-title {
		font-size: 22px;
	}
}

@media (max-width: 560px) {
	.r9-prototypes-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
	}
	.r9-prototypes-hero {
		padding: 24px 20px;
	}
	.r9-hero-metrics-row {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}
	.r9-prototypes-h1 {
		font-size: 22px;
	}
	.r9-cta-actions {
		flex-direction: column;
	}
	.r9-cta-btn-primary, .r9-cta-btn-secondary {
		text-align: center;
		width: 100%;
	}
}

/* ==========================================================================
   Extracted Page & Component Styles (Strict No-Inline-CSS Policy)
   ========================================================================== */

/* Akcii & Discounts Page */
.promo-page-hero {
	background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #311042 100%);
	color: #ffffff;
	padding: 60px 0 80px 0;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-badge-hot {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(90deg, #ff416c 0%, #ff4b2b 100%);
	color: #ffffff;
	padding: 8px 18px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
	margin-bottom: 24px;
}

.promo-title-main {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
	background: linear-gradient(90deg, #ffffff 0%, #cbd5e1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.promo-subtitle {
	font-size: 19px;
	color: #94a3b8;
	max-width: 680px;
	margin-bottom: 36px;
	line-height: 1.6;
}

.promo-main-card {
	background: rgba(30, 41, 59, 0.7);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	margin-top: -40px;
	margin-bottom: 60px;
	position: relative;
	z-index: 10;
}

.promo-code-box {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
	border: 2px dashed #818cf8;
	border-radius: 16px;
	padding: 24px;
	text-align: center;
	margin-bottom: 30px;
}

.promo-code-label {
	font-size: 14px;
	color: #a5b4fc;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	margin-bottom: 8px;
}

.promo-code-val {
	font-size: 38px;
	font-weight: 900;
	color: #ffffff;
	letter-spacing: 3px;
	font-family: monospace, sans-serif;
	display: inline-block;
	margin-right: 15px;
}

.btn-copy-code {
	background: #6366f1;
	color: #ffffff;
	border: none;
	padding: 10px 20px;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-copy-code:hover {
	background: #4f46e5;
	transform: translateY(-2px);
}

.promo-disclaimer {
	font-size: 13px;
}

.promo-countdown-title {
	font-size: 14px;
	color: #94a3b8;
	font-weight: 600;
}

.countdown-container {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 24px;
}

.timer-block {
	background: rgba(15, 23, 42, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 12px 18px;
	min-width: 75px;
	text-align: center;
}

.timer-num {
	font-size: 28px;
	font-weight: 800;
	color: #38bdf8;
	display: block;
	line-height: 1;
}

.timer-lbl {
	font-size: 11px;
	color: #64748b;
	text-transform: uppercase;
	margin-top: 4px;
	display: block;
}

.promo-included-card {
	background: rgba(15, 23, 42, 0.4);
	padding: 24px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-included-title {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 16px;
}

.promo-included-list {
	color: #cbd5e1;
	font-size: 14px;
	line-height: 1.8;
	padding-left: 20px;
	margin: 0;
}

.promo-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.promo-feature-item {
	background: rgba(15, 23, 42, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px;
	border-radius: 16px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.promo-feature-icon {
	width: 38px;
	height: 38px;
	background: rgba(99, 102, 241, 0.2);
	color: #818cf8;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.promo-feature-text h4 {
	font-size: 16px;
	font-weight: 700;
	color: #f8fafc;
	margin: 0 0 4px 0;
}

.promo-feature-text p {
	font-size: 13px;
	color: #94a3b8;
	margin: 0;
	line-height: 1.4;
}

.promo-form-wrapper {
	background: #ffffff;
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	margin-bottom: 60px;
}

.promo-form-title {
	font-size: 28px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 10px;
}

.promo-form-desc {
	color: #64748b;
	font-size: 15px;
	margin-bottom: 30px;
}

.promo-contact-box {
	background: #f8fafc;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
}

.promo-contact-label {
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}

.promo-contact-phone {
	font-size: 18px;
	font-weight: 800;
	color: #6366f1;
}

.promo-phone-link {
	color: inherit;
	text-decoration: none;
}

.promo-contact-hours {
	font-size: 13px;
	color: #64748b;
	margin-top: 4px;
}

.promo-form-label {
	font-weight: 600;
	color: #334155;
}

.promo-submit-btn {
	background: linear-gradient(90deg, #6366f1 0%, #4f46e5 100%) !important;
	border: none !important;
	font-weight: 700 !important;
	padding: 14px !important;
	border-radius: 12px !important;
	font-size: 17px !important;
	color: #ffffff !important;
}

.secondary-promos-title {
	font-size: 32px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 30px;
	text-align: center;
}

.secondary-promo-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	transition: all 0.3s ease;
}

.secondary-promo-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
	border-color: #cbd5e1;
}

.promo-gift-badge, .promo-discount-badge {
	font-size: 13px;
	padding: 6px 12px;
}

.secondary-promo-title {
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 12px;
}

.secondary-promo-desc {
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.secondary-promo-btn {
	border-radius: 8px !important;
	font-weight: 600 !important;
}

@media (max-width: 768px) {
	.promo-title-main { font-size: 30px; }
	.promo-code-val { font-size: 28px; }
	.promo-main-card { padding: 24px; }
	.countdown-container { gap: 8px; }
	.timer-block { min-width: 60px; padding: 8px 10px; }
	.timer-num { font-size: 22px; }
}

/* Contact Page Styles */
.site-contact-page-wrapper {
	padding-top: 30px;
	padding-bottom: 50px;
}

.contact-header-section {
	margin-bottom: 35px;
	text-align: center;
}

.contact-header-title {
	font-size: 32px;
	font-weight: 700;
	color: #222;
	margin-bottom: 10px;
}

.contact-header-desc {
	font-size: 16px;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

.contact-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 45px;
}

.contact-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
	transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
	font-size: 28px;
	margin-bottom: 12px;
}

.contact-card-label {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #718096;
	font-weight: 600;
	margin-bottom: 6px;
}

.contact-card-val {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
}

.contact-card-val-sm {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.contact-card-val-address {
	font-size: 15px;
	font-weight: 600;
	color: #2d3748;
	margin-bottom: 8px;
	line-height: 1.4;
}

.contact-card-val-company {
	font-size: 15px;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 4px;
}

.contact-card-val-unp {
	font-size: 14px;
	color: #4a5568;
	font-weight: 600;
}

.contact-card-desc {
	font-size: 14px;
	color: #718096;
}

.contact-card-desc-mt {
	font-size: 13px;
	color: #718096;
	margin-top: 4px;
}

.contact-main-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 35px;
	align-items: start;
}

.contact-map-wrapper {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.contact-block-title {
	font-size: 22px;
	font-weight: 700;
	color: #2d3748;
	margin-top: 0;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-block-desc {
	font-size: 14px;
	color: #718096;
	margin-bottom: 20px;
}

.contact-map-frame-box {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	height: 440px;
	border: 1px solid #cbd5e0;
}

.contact-map-iframe {
	position: relative;
	border: 0;
	width: 100%;
	height: 100%;
}

.contact-map-address {
	margin-top: 15px;
	font-size: 13px;
	color: #718096;
	text-align: center;
}

.contact-form-wrapper {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.contact-honeypot {
	display: none !important;
}

.contact-form-group-mb {
	margin-bottom: 16px;
}

.contact-form-label {
	font-size: 14px;
	font-weight: 600;
	color: #4a5568;
	margin-bottom: 6px;
	display: block;
}

.contact-form-control {
	width: 100%;
	height: 44px;
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid #cbd5e0;
	font-size: 15px;
}

.contact-form-select {
	width: 100%;
	height: 44px;
	padding: 8px 14px;
	border-radius: 8px;
	border: 1px solid #cbd5e0;
	font-size: 15px;
}

.contact-form-textarea {
	width: 100%;
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid #cbd5e0;
	font-size: 15px;
	resize: vertical;
}

.contact-captcha-group {
	margin-bottom: 20px;
}

.contact-submit-btn-wrap {
	margin-top: 24px;
}

.contact-submit-btn {
	width: 100%;
	height: 48px;
	background: #2b6cb0 !important;
	border: none !important;
	border-radius: 8px !important;
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	cursor: pointer !important;
	transition: background 0.2s !important;
}

.contact-submit-btn:hover {
	background: #2c5282 !important;
}

.contact-privacy-note {
	font-size: 12px;
	color: #a0aec0;
	margin-top: 14px;
	text-align: center;
	line-height: 1.4;
}

.contact-privacy-link {
	color: #718096;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.contact-main-grid {
		grid-template-columns: 1fr !important;
	}
	.contact-cards-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Mega Menu Modifiers */
.mega-menu__sublink--highlight {
	color: #2A9DDD !important;
	font-weight: 600 !important;
}

.mega-menu__col-title--accent {
	color: #ffb454 !important;
}

.mega-menu__sublink--bold-cyan {
	font-weight: 700 !important;
	color: #38bdf8 !important;
}

.mega-menu__sublink--bold {
	font-weight: 700 !important;
}

/* Footer Link Styles */
.footer-links-row {
	margin-top: 5px;
	font-size: 13px;
}

.footer-legal-link {
	color: #888;
	text-decoration: underline;
}

.footer-legal-link-mr {
	margin-right: 15px;
}

/* Universal Interactive Elements */
.faq-q, .faq-accordion-title {
	cursor: pointer;
}

/* Utility hidden helper */
.u-hidden {
	display: none !important;
}

.col-w-50 {
	width: 50px;
}

/* SERP Analyzer Front View Styles */
.serp-header-icon {
	text-align: center;
	margin-bottom: 15px;
}

.serp-header-icon-circle {
	display: inline-flex;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #fff8ec;
	border: 2px solid #ffb454;
	align-items: center;
	justify-content: center;
	color: #ffb454;
	font-size: 28px;
}

.serp-h1-title {
	font-weight: 800;
	font-size: 28px;
	margin-bottom: 10px;
}

.serp-tool-description {
	max-width: 800px;
	margin: 0 auto 30px auto;
	color: #555;
	font-size: 15px;
	line-height: 1.5;
}

.serp-form-card {
	max-width: 850px;
	margin: 0 auto 30px auto;
}

.serp-form-group {
	margin-bottom: 20px;
}

.serp-query-label-bold {
	font-weight: 700;
	margin-bottom: 8px;
	display: block;
}

.serp-input-query {
	padding: 12px 15px;
	font-size: 16px;
}

.serp-hint-text {
	color: #94a3b8;
	font-size: 12px;
	margin-top: 4px;
	display: block;
}

.serp-hint-text-mt {
	color: #94a3b8;
	font-size: 12px;
	margin-top: 8px;
	display: block;
}

.serp-row-flex-gap {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 20px;
}

.serp-col-select {
	flex: 1;
	min-width: 220px;
}

.serp-select-label {
	font-weight: 600;
	margin-bottom: 6px;
	display: block;
}

.serp-select-field {
	padding: 10px;
}

.serp-contacts-box-label {
	font-weight: 700;
	color: #ffb454;
	margin-bottom: 12px;
	font-size: 14px;
}

.serp-contact-inputs-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.serp-col-input {
	flex: 1;
	min-width: 200px;
}

.serp-contact-input {
	padding: 10px;
}

.serp-start-btn {
	width: 100%;
	background: #ffb454 !important;
	border-color: #ffb454 !important;
	color: #0f172a !important;
	font-weight: 800 !important;
	font-size: 16px !important;
	padding: 14px !important;
	border-radius: 8px !important;
	box-shadow: 0 4px 14px rgba(255, 180, 84, 0.35) !important;
}

.serp-error-box-styled {
	display: none;
	max-width: 850px;
	margin: 0 auto 20px auto;
	border-radius: 8px;
	background: #450a0a;
	border-color: #7f1d1d;
	color: #fca5a5;
}

.serp-otp-card {
	display: none;
	max-width: 550px;
	margin: 0 auto 30px auto;
}

.serp-otp-mail-icon {
	font-size: 36px;
	margin-bottom: 10px;
}

.serp-otp-title {
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 10px;
}

.serp-otp-desc {
	color: #94a3b8;
	font-size: 14px;
	margin-bottom: 20px;
}

.serp-otp-email-label {
	color: #ffb454;
}

.serp-otp-hint {
	color: #64748b;
}

.serp-otp-input-field {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 6px;
	padding: 10px;
	max-width: 240px;
	margin: 0 auto;
}

.serp-verify-btn {
	width: 100%;
	font-weight: 800 !important;
	color: #0f172a !important;
	margin-bottom: 15px;
	border-radius: 8px !important;
}

.serp-resend-btn {
	color: #94a3b8 !important;
	font-size: 13px !important;
	text-decoration: none !important;
}

.serp-progress-card {
	display: none;
	max-width: 850px;
	margin: 0 auto 30px auto;
}

.serp-queue-box {
	display: none;
	background: #1e293b;
	border: 1px solid #3b82f6;
	color: #60a5fa;
	padding: 12px 18px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	line-height: 1.5;
}

.serp-queue-desc {
	font-size: 13px;
	color: #cbd5e1;
	font-weight: normal;
}

.serp-progress-title {
	font-weight: 700;
	margin-bottom: 20px;
	color: #ffffff;
}

.serp-progress-track {
	height: 14px;
	border-radius: 7px;
	background: #10131a;
	margin-bottom: 25px;
	border: 1px solid #262c38;
}

.serp-progress-bar-fill {
	width: 10%;
	background: #ffb454;
}

.serp-step-status-text {
	text-align: center;
	font-weight: 600;
	color: #ffb454;
	font-size: 15px;
	margin-bottom: 30px;
}

.serp-stepper-grid {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.serp-results-wrapper {
	display: none;
	max-width: 1050px;
	margin: 0 auto 40px auto;
}

.serp-trophy-icon {
	color: #ffb454;
	margin-right: 6px;
}

.serp-success-banner-flex {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.serp-metric-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 30px;
}

.serp-metric-card-flex {
	flex: 1;
	min-width: 160px;
}

.serp-tab-icon {
	margin-right: 4px;
}

.serp-blocks-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.serp-lsi-container {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 30px;
}

.serp-meta-field {
	margin-bottom: 18px;
}

.seo-cta-section-mt {
	margin-top: 40px;
}

/* SerpSecurityHelper HTML Classes */
.serp-proto-alert {
	background: #1e293b;
	border: 1px solid #3b82f6;
	color: #93c5fd;
	padding: 18px;
	border-radius: 10px;
	margin-bottom: 30px;
}

.serp-proto-alert-title {
	margin-top: 0;
	color: #ffffff;
	font-weight: 800;
}

.serp-proto-alert-desc {
	margin-bottom: 0;
	font-size: 14px;
	color: #cbd5e1;
}

.serp-proto-benchmarks {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 35px;
}

.serp-proto-stat-card {
	flex: 1;
	min-width: 150px;
	background: #161a23;
	border: 1px solid #262c38;
	border-radius: 10px;
	padding: 16px;
	text-align: center;
}

.serp-proto-stat-val {
	font-size: 26px;
	font-weight: 800;
	color: #ffb454;
}

.serp-proto-stat-lbl {
	font-size: 12px;
	color: #94a3b8;
	font-weight: 600;
}

.serp-proto-section-title {
	color: #ffffff;
	font-weight: 800;
	margin-bottom: 20px;
}

.serp-proto-section-title-mt {
	color: #ffffff;
	font-weight: 800;
	margin-top: 35px;
	margin-bottom: 15px;
}

.serp-proto-blocks-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
}

.serp-proto-block-card {
	background: #1c212c;
	border: 1px solid #2e3646;
	border-radius: 10px;
	padding: 20px;
}

.serp-proto-block-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.serp-proto-badge-num {
	background: #ffb454;
	color: #0f172a;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 800;
	font-size: 14px;
}

.serp-proto-block-title {
	font-size: 17px;
	color: #ffffff;
}

.serp-proto-block-desc {
	font-size: 14px;
	color: #cbd5e1;
	margin-bottom: 10px;
	line-height: 1.6;
}

.serp-proto-elements-box {
	font-size: 13px;
	color: #94a3b8;
	background: #12151d;
	border: 1px solid #262c38;
	padding: 10px 14px;
	border-radius: 6px;
}

.serp-proto-elements-label {
	color: #ffb454;
}

.serp-proto-lsi-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 35px;
}

.serp-proto-lsi-tag {
	background: #1c212c;
	color: #f1f5f9;
	border: 1px solid #2e3646;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
}

.serp-proto-table-desc {
	color: #cbd5e1;
	font-size: 13.5px;
	margin-bottom: 15px;
}

.serp-proto-table-wrap {
	margin-bottom: 35px;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	overflow-x: auto;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.serp-proto-table {
	width: 100%;
	margin-bottom: 0;
	background: #ffffff;
	color: #0f172a;
	font-size: 13.5px;
	border-collapse: collapse;
}

.serp-proto-thead {
	background: #f1f5f9;
	color: #0f172a;
	border-bottom: 2px solid #cbd5e1;
}

.serp-proto-th {
	padding: 12px 10px;
	font-weight: 800;
	color: #0f172a;
	border-bottom: 2px solid #cbd5e1;
}

.serp-proto-th-center {
	padding: 12px 10px;
	text-align: center;
	font-weight: 800;
	color: #0f172a;
	border-bottom: 2px solid #cbd5e1;
}

.serp-proto-badge-yes {
	color: #16a34a;
	font-weight: 800;
}

.serp-proto-badge-no {
	color: #64748b;
	font-weight: 600;
}

.serp-proto-tr-even {
	background: #ffffff;
	color: #0f172a;
	border-bottom: 1px solid #e2e8f0;
}

.serp-proto-tr-odd {
	background: #f8fafc;
	color: #0f172a;
	border-bottom: 1px solid #e2e8f0;
}

.serp-proto-td {
	padding: 12px 10px;
}

.serp-proto-td-idx {
	padding: 12px 10px;
	font-weight: 800;
	color: #0f172a;
}

.serp-proto-td-title {
	padding: 12px 10px;
	color: #0f172a;
	font-weight: 500;
	max-width: 280px;
	line-height: 1.4;
}

.serp-proto-td-center-bold {
	padding: 12px 10px;
	text-align: center;
	font-weight: 800;
	color: #0f172a;
}

.serp-proto-td-center-semi {
	padding: 12px 10px;
	text-align: center;
	color: #0f172a;
	font-weight: 600;
}

.serp-proto-td-center {
	padding: 12px 10px;
	text-align: center;
}

.serp-proto-td-pages {
	padding: 12px 10px;
	text-align: center;
	color: #2563eb;
	font-weight: 700;
}

.serp-proto-cta-box {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	border: 1px solid #ffb454;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	margin-top: 40px;
}

.serp-proto-cta-title {
	color: #ffb454;
	font-weight: 800;
	margin-top: 0;
	font-size: 22px;
}

.serp-proto-cta-desc {
	color: #cbd5e1;
	font-size: 15px;
	max-width: 700px;
	margin: 0 auto 20px auto;
}

.serp-proto-cta-btn {
	background: #ffb454 !important;
	border-color: #ffb454 !important;
	color: #0f172a !important;
	font-weight: 800 !important;
	padding: 14px 32px !important;
	border-radius: 8px !important;
	display: inline-block;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(255, 180, 84, 0.35);
	font-size: 16px;
	text-decoration: none;
}

.serp-protected-domain-wrap {
	user-select: none;
	-webkit-user-select: none;
}

.serp-protected-domain-img {
	display: inline-block;
	vertical-align: middle;
	border-radius: 4px;
	max-height: 26px;
	pointer-events: none;
	user-select: none;
	-webkit-user-select: none;
}

/* Form hidden & full-width field wrappers */
.honey-field {
	display: none !important;
}

.form-group-hidden-field {
	margin: 0 !important;
	padding: 0 !important;
	display: none !important;
}

.form-group-full-width {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

/* Homepage Hero Teaser Keyword Links */
.main-header .layout:not(.site-header),
.main-header .block.header-2,
.main-header .header-2.teaser {
	position: relative !important;
	z-index: 10 !important;
	pointer-events: auto !important;
}

.main-header header.site-header,
header.site-header {
	z-index: 1000000 !important;
}

.header-2.teaser .teaser-cat-title {
	font-weight: 700 !important;
	color: #ffffff !important;
	text-decoration: none !important;
	display: inline-block !important;
	margin-bottom: 10px !important;
	font-size: 16px !important;
	line-height: 1.3 !important;
	cursor: pointer !important;
	pointer-events: auto !important;
	position: relative !important;
	z-index: 20 !important;
	transition: color 0.2s ease, transform 0.2s ease !important;
}

.header-2.teaser .teaser-cat-title:hover {
	color: #21d3a6 !important;
	text-decoration: underline !important;
	text-underline-offset: 3px !important;
	transform: translateX(2px) !important;
}

.header-2.teaser ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 0 15px 0 !important;
}

.header-2.teaser ul li {
	margin-bottom: 7px !important;
	line-height: 1.4 !important;
	list-style: none !important;
}

.header-2.teaser ul li a {
	color: rgba(255, 255, 255, 0.88) !important;
	text-decoration: none !important;
	display: inline-block !important;
	font-size: 13.5px !important;
	cursor: pointer !important;
	pointer-events: auto !important;
	position: relative !important;
	z-index: 20 !important;
	transition: color 0.2s ease, transform 0.2s ease !important;
}

.header-2.teaser ul li a:hover {
	color: #21d3a6 !important;
	text-decoration: underline !important;
	text-underline-offset: 2px !important;
	transform: translateX(4px) !important;
}

/* ============================================================
   МОБИЛЬНОЕ МЕНЮ (ЕДИНЫЙ СТИЛЬ И РАЗМЕР НА ВСЕХ СТРАНИЦАХ ДО 992px)
   ============================================================ */
@media (max-width: 992px) {
	/* Боковая шторка меню */
	.site-nav.menu-top,
	.menu-top,
	.main-header .site-nav.menu-top,
	.main-header .menu-top {
		position: fixed !important;
		top: 0 !important;
		left: -100% !important;
		width: min(320px, 85vw) !important;
		height: 100vh !important;
		height: 100dvh !important;
		background: #0d131f !important;
		box-shadow: 4px 0 30px rgba(0, 0, 0, 0.85) !important;
		z-index: 999999 !important;
		padding: 46px 0 15px 0 !important;
		overflow-y: auto !important;
		-webkit-overflow-scrolling: touch !important;
		transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1) !important;
		border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
	}

	.site-nav.menu-top.active,
	.menu-top.active,
	.main-header .site-nav.menu-top.active,
	.main-header .menu-top.active {
		left: 0 !important;
	}

	/* Список пунктов меню */
	.site-nav__list,
	.main-header .menu-top > ul,
	.menu-top > ul {
		display: flex !important;
		flex-direction: column !important;
		width: 100% !important;
		padding: 0 !important;
		margin: 0 !important;
		list-style: none !important;
		gap: 0 !important;
	}

	.site-nav__item,
	.main-header .site-nav__item,
	.main-header .menu-top > ul > li,
	.menu-top > ul > li {
		display: block !important;
		width: 100% !important;
		border: none !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
		padding: 0 !important;
		margin: 0 !important;
		transition: background-color 0.2s ease !important;
	}

	/* Ссылки главного меню: сбалансированный средний размер */
	.site-nav__link,
	.main-header .site-nav__link,
	.main-header .menu-top > ul > li > a,
	.menu-top > ul > li > a {
		display: flex !important;
		justify-content: space-between !important;
		align-items: center !important;
		padding: 10px 16px !important;
		color: #f1f5f9 !important;
		font-size: 13px !important;
		font-weight: 600 !important;
		letter-spacing: 0.02em !important;
		text-transform: uppercase !important;
		text-decoration: none !important;
		white-space: normal !important;
		line-height: 1.3 !important;
		border-radius: 0 !important;
		background: transparent !important;
		transition: background 0.2s ease, color 0.2s ease !important;
	}

	.site-nav__link::after,
	.main-header .menu-top > ul > li > a::after {
		display: none !important;
	}

	.site-nav__item:hover > .site-nav__link,
	.site-nav__item:focus-within > .site-nav__link,
	.main-header .menu-top > ul > li:hover > a,
	.main-header .menu-top > ul > li:focus-within > a {
		background: rgba(255, 255, 255, 0.05) !important;
		color: #ffffff !important;
		padding-left: 16px !important;
	}

	.site-nav__item.mobile-open > .site-nav__link,
	.main-header .menu-top > ul > li.mobile-open > a {
		background: #161e2e !important;
		color: #38bdf8 !important;
	}

	/* Стрелка выпадающего списка */
	.site-nav__arrow {
		width: 10px !important;
		height: 6px !important;
		flex-shrink: 0 !important;
		transition: transform 0.22s ease !important;
		opacity: 0.8 !important;
	}

	.site-nav__item--has-mega.mobile-open > .site-nav__link .site-nav__arrow {
		transform: rotate(180deg) !important;
		opacity: 1 !important;
	}

	/* Бургер-кнопка (крестик): чисто белый без оранжевого фона */
	.razrabotka-sajta-page button.burger-menu,
	.razrabotka-sajta-page .burger-menu,
	button.burger-menu,
	.burger-menu,
	.burger-menu:hover,
	.burger-menu:focus,
	.burger-menu:active,
	button.burger-menu:hover,
	button.burger-menu:focus,
	button.burger-menu:active {
		display: flex !important;
		flex-direction: column !important;
		justify-content: space-around !important;
		width: 32px !important;
		height: 25px !important;
		background: none !important;
		background-color: transparent !important;
		border: none !important;
		border-radius: 0 !important;
		outline: none !important;
		box-shadow: none !important;
		padding: 0 !important;
		margin: 0 !important;
		cursor: pointer !important;
		z-index: 1000001 !important;
	}

	.razrabotka-sajta-page button.burger-menu span,
	.razrabotka-sajta-page .burger-menu span,
	button.burger-menu span,
	.burger-menu span {
		display: block !important;
		width: 30px !important;
		height: 3px !important;
		background-color: #ffffff !important;
		background: #ffffff !important;
		border-radius: 3px !important;
		transition: all 0.3s ease-in-out !important;
	}

	.burger-menu.is-active span:nth-child(1),
	.burger-menu.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg) !important;
	}

	.burger-menu.is-active span:nth-child(2),
	.burger-menu.active span:nth-child(2) {
		opacity: 0 !important;
	}

	.burger-menu.is-active span:nth-child(3),
	.burger-menu.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg) !important;
	}
}




