/**
 * NOVA GLASS FRONT-PAGE STYLES & INTERACTIVE COMPONENTS
 * Theme: Samodvizhec / Nova Glass
 * Version: 2026.1.0
 */

.ng-frontpage {
	padding-top: 100px;
	position: relative;
	z-index: 1;
}

/* Common Section Wrapper */
.ng-section {
	padding: clamp(40px, 6vw, 80px) 0;
	position: relative;
}

.ng-section-header {
	text-align: center;
	max-width: 780px;
	margin: 0 auto clamp(32px, 5vw, 60px) auto;
}

.ng-section-tag {
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ng-accent-cyan);
	margin-bottom: 12px;
}

.ng-section-title {
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 16px;
	color: var(--ng-text-primary);
}

.ng-section-subtitle {
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	color: var(--ng-text-secondary);
	line-height: 1.6;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.ng-hero-section {
	padding-top: clamp(20px, 4vw, 50px);
	padding-bottom: clamp(40px, 6vw, 80px);
}

.ng-hero-card {
	padding: clamp(30px, 5vw, 60px);
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(30px, 5vw, 60px);
	align-items: center;
	border-radius: var(--ng-radius-xl);
}

.ng-hero-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.ng-hero-badge-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.ng-hero-subtitle {
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	font-weight: 600;
	color: var(--ng-text-primary);
	line-height: 1.35;
}

.ng-hero-desc {
	font-size: clamp(0.98rem, 1.5vw, 1.1rem);
	color: var(--ng-text-secondary);
	line-height: 1.65;
}

.ng-hero-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 10px;
}

.ng-hero-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ng-hero-img-wrap {
	position: relative;
	width: 100%;
	max-width: 480px;
	border-radius: var(--ng-radius-lg);
	overflow: hidden;
	box-shadow: 0 20px 50px -10px rgba(56, 189, 248, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.9);
	transition: transform 0.6s var(--ng-spring);
}

.ng-hero-img-wrap:hover {
	transform: scale(1.02) perspective(1000px) rotateY(-2deg);
}

.ng-hero-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.ng-hero-seal-badge {
	position: absolute;
	bottom: -15px;
	right: -15px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.9);
	padding: 12px 18px;
	border-radius: var(--ng-radius-pill);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--ng-text-primary);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	display: flex;
	align-items: center;
	gap: 8px;
}

/* ==========================================================================
   2. STATS & QUOTE ROW
   ========================================================================== */
.ng-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr) 1.5fr;
	gap: 18px;
}

.ng-stat-card {
	padding: 24px 20px;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.ng-stat-icon {
	font-size: 1.4rem;
	color: var(--ng-accent-cyan);
	margin-bottom: 12px;
}

.ng-stat-number {
	font-family: 'Syne', sans-serif;
	font-size: clamp(2rem, 3.2vw, 2.8rem);
	font-weight: 800;
	color: var(--ng-text-primary);
	line-height: 1;
	margin-bottom: 6px;
}

.ng-stat-label {
	font-size: 0.85rem;
	color: var(--ng-text-muted);
	font-weight: 500;
}

.ng-quote-card {
	padding: 24px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-left: 3px solid var(--ng-accent-cyan);
}

.ng-quote-text {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ng-text-primary);
	line-height: 1.5;
	margin-bottom: 8px;
	font-style: italic;
}

.ng-quote-author {
	font-size: 0.82rem;
	color: var(--ng-accent-cyan);
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* ==========================================================================
   3. FEATURED CASE STUDIES (01, 02, 03)
   ========================================================================== */
.ng-cases-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.ng-case-card {
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: var(--ng-radius-lg);
}

.ng-case-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.ng-case-num {
	font-family: 'Syne', sans-serif;
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--ng-accent-cyan);
	background: rgba(56, 189, 248, 0.12);
	padding: 4px 12px;
	border-radius: var(--ng-radius-pill);
	border: 1px solid rgba(56, 189, 248, 0.3);
}

.ng-case-visual {
	width: 100%;
	height: 180px;
	border-radius: var(--ng-radius-sm);
	overflow: hidden;
	background: #0f172a;
	margin-bottom: 20px;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.ng-case-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ng-spring);
}

.ng-case-card:hover .ng-case-img {
	transform: scale(1.06);
}

.ng-case-title {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--ng-text-primary);
}

.ng-case-desc {
	font-size: 0.92rem;
	color: var(--ng-text-secondary);
	margin-bottom: 18px;
	line-height: 1.55;
}

.ng-case-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
}

.ng-case-tag {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--ng-text-muted);
	background: rgba(255, 255, 255, 0.6);
	padding: 4px 10px;
	border-radius: var(--ng-radius-pill);
	border: 1px solid rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   4. YANDEX VS GOOGLE: ALGORITHM DUALISM
   ========================================================================== */
.ng-dual-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.ng-dual-card {
	padding: clamp(28px, 4vw, 44px);
	border-radius: var(--ng-radius-xl);
}

.ng-dual-badge {
	font-size: 0.82rem;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: var(--ng-radius-pill);
	margin-bottom: 16px;
	display: inline-block;
}

.ng-dual-badge-yandex {
	background: rgba(255, 59, 48, 0.12);
	color: #e11d48;
	border: 1px solid rgba(255, 59, 48, 0.25);
}

.ng-dual-badge-google {
	background: rgba(59, 130, 246, 0.12);
	color: #2563eb;
	border: 1px solid rgba(59, 130, 246, 0.25);
}

.ng-dual-list {
	list-style: none;
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ng-dual-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 0.95rem;
}

.ng-dual-bullet {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--ng-btn-grad);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

/* ==========================================================================
   5. GEO & AEO STRATEGY SECTION
   ========================================================================== */
.ng-geo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.ng-geo-card {
	padding: clamp(28px, 4vw, 40px);
}

.ng-geo-icon-wrap {
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: var(--ng-btn-grad);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1.5rem;
	margin-bottom: 20px;
	box-shadow: var(--ng-glow-cyan);
}

/* ==========================================================================
   6. SKILLS, TECH STACK & PHILOSOPHY (3 COLUMNS)
   ========================================================================== */
.ng-trio-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1.2fr;
	gap: 24px;
}

.ng-trio-card {
	padding: clamp(24px, 3vw, 36px);
}

.ng-trio-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--ng-text-primary);
}

/* Column 1: Skills Bars */
.ng-skill-row {
	margin-bottom: 18px;
}

.ng-skill-meta {
	display: flex;
	justify-content: space-between;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--ng-text-primary);
	margin-bottom: 6px;
}

.ng-skill-bar {
	height: 7px;
	width: 100%;
	background: rgba(15, 23, 42, 0.08);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.ng-skill-fill {
	height: 100%;
	background: var(--ng-btn-grad);
	border-radius: 10px;
	transition: width 1.2s var(--ng-spring);
}

/* Column 2: Tech Badges */
.ng-tech-badges-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.ng-tech-badge {
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid var(--ng-glass-border);
	padding: 12px 10px;
	border-radius: 12px;
	text-align: center;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ng-text-primary);
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
	transition: transform 0.3s var(--ng-spring), background 0.3s ease;
}

.ng-tech-badge:hover {
	background: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(56, 189, 248, 0.2);
}

/* Column 3: Philosophy Prism */
.ng-prism-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.ng-prism-img {
	width: 160px;
	height: 160px;
	object-fit: contain;
	margin-bottom: 18px;
	animation: ng-float 6s infinite ease-in-out;
}

@keyframes ng-float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-8px) rotate(3deg); }
}

.ng-philosophy-points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	width: 100%;
}

.ng-phil-item {
	font-size: 0.8rem;
	font-weight: 600;
	padding: 8px 10px;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid var(--ng-glass-border);
	border-radius: 10px;
	color: var(--ng-text-primary);
}

/* ==========================================================================
   7. STEP-BY-STEP ROADMAP 2026
   ========================================================================== */
.ng-roadmap-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.ng-step-card {
	padding: 28px 24px;
	border-radius: var(--ng-radius-lg);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.ng-step-num {
	font-family: 'Syne', sans-serif;
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--ng-accent-cyan);
	margin-bottom: 12px;
}

.ng-step-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--ng-text-primary);
	margin-bottom: 10px;
}

.ng-step-desc {
	font-size: 0.9rem;
	color: var(--ng-text-secondary);
	line-height: 1.55;
}

/* ==========================================================================
   8. SIGNATURE INTERACTION: GEO/AEO RADAR CALCULATOR
   ========================================================================== */
.ng-calc-card {
	padding: clamp(32px, 5vw, 60px);
	border-radius: var(--ng-radius-xl);
}

.ng-calc-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: center;
}

.ng-calc-options {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ng-calc-checkbox-label {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid var(--ng-glass-border);
	border-radius: var(--ng-radius-md);
	cursor: pointer;
	transition: all 0.25s ease;
	user-select: none;
}

.ng-calc-checkbox-label:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateX(4px);
}

.ng-calc-checkbox {
	width: 20px;
	height: 20px;
	accent-color: var(--ng-accent-cyan);
	cursor: pointer;
}

.ng-calc-score-box {
	background: var(--ng-glass-bg-hover);
	padding: 36px 28px;
	border-radius: var(--ng-radius-lg);
	text-align: center;
	border: 1px solid var(--ng-glass-border);
	box-shadow: var(--ng-shadow-glass);
}

.ng-calc-score-num {
	font-family: 'Syne', sans-serif;
	font-size: 4rem;
	font-weight: 800;
	color: var(--ng-accent-cyan);
	line-height: 1;
	margin-bottom: 10px;
}

.ng-calc-score-status {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ng-text-primary);
	margin-bottom: 8px;
}

.ng-calc-score-tip {
	font-size: 0.9rem;
	color: var(--ng-text-secondary);
	margin-bottom: 20px;
}

/* ==========================================================================
   9. FAQ ACCORDION
   ========================================================================== */
.ng-faq-list {
	max-width: 860px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ng-faq-item {
	padding: 0;
	overflow: hidden;
	border-radius: var(--ng-radius-md);
}

.ng-faq-trigger {
	width: 100%;
	padding: 22px 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ng-text-primary);
	transition: color 0.2s ease;
}

.ng-faq-trigger:hover {
	color: var(--ng-accent-cyan);
}

.ng-faq-icon {
	font-size: 1.2rem;
	color: var(--ng-accent-cyan);
	transition: transform 0.3s var(--ng-spring);
}

.ng-faq-item.is-open .ng-faq-icon {
	transform: rotate(180deg);
}

.ng-faq-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s var(--ng-spring), padding 0.3s ease;
	padding: 0 28px;
	color: var(--ng-text-secondary);
	font-size: 0.96rem;
	line-height: 1.65;
}

.ng-faq-item.is-open .ng-faq-body {
	max-height: 400px;
	padding: 0 28px 24px 28px;
}

/* ==========================================================================
   10. CONTACT SECTION: LET'S BUILD SOMETHING EXTRAORDINARY
   ========================================================================== */
.ng-contact-card {
	padding: clamp(32px, 5vw, 60px);
	border-radius: var(--ng-radius-xl);
}

.ng-contact-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 36px;
}

/* Form */
.ng-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 18px;
}

.ng-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ng-form-input {
	width: 100%;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid var(--ng-glass-border);
	border-radius: var(--ng-radius-sm);
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--ng-text-primary);
	outline: none;
	transition: all 0.25s ease;
}

.ng-form-input:focus {
	border-color: var(--ng-accent-cyan);
	box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
	background: #ffffff;
}

/* QR Box */
.ng-qr-box {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.ng-qr-img {
	width: 140px;
	height: 140px;
	border-radius: 16px;
	border: 1px solid var(--ng-glass-border);
	box-shadow: var(--ng-shadow-glass);
	margin-bottom: 14px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS & MOBILE FIXES
   ========================================================================== */
@media (max-width: 1100px) {
	.ng-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.ng-quote-card {
		grid-column: 1 / -1;
	}
	.ng-trio-grid {
		grid-template-columns: 1fr;
	}
	.ng-contact-grid {
		grid-template-columns: 1fr 1fr;
	}
	.ng-roadmap-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 860px) {
	.ng-hero-card {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.ng-hero-badge-wrap, .ng-hero-actions {
		justify-content: center;
	}
	.ng-cases-grid {
		grid-template-columns: 1fr;
	}
	.ng-dual-grid, .ng-geo-grid, .ng-calc-grid {
		grid-template-columns: 1fr;
	}
	.ng-contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.ng-stats-grid, .ng-roadmap-grid {
		grid-template-columns: 1fr;
	}
	.ng-calc-card, .ng-contact-card, .ng-hero-card {
		padding: 24px 16px;
		overflow: hidden;
	}
	.ng-hero-seal-badge {
		position: static;
		margin: 14px auto 0 auto;
		justify-content: center;
		max-width: 100%;
		box-sizing: border-box;
		font-size: 0.72rem;
		padding: 8px 14px;
	}
	.ng-hero-actions {
		flex-direction: column;
		width: 100%;
	}
	.ng-hero-actions .ng-btn {
		width: 100%;
	}
	.ng-calc-checkbox-label {
		padding: 12px 14px;
		font-size: 0.9rem;
	}
	.ng-calc-score-box {
		padding: 24px 16px;
	}
	.ng-calc-score-num {
		font-size: 3.2rem;
	}
	.ng-philosophy-points {
		grid-template-columns: 1fr;
	}
	.ng-chrome-title {
		font-size: clamp(1.8rem, 6.5vw, 2.5rem);
		letter-spacing: 0;
	}
	.ng-quote-card {
		padding: 18px 16px;
	}
	.ng-case-card {
		padding: 20px 16px;
	}
	.ng-dual-card, .ng-geo-card, .ng-trio-card, .ng-step-card {
		padding: 22px 16px;
	}
	.ng-faq-trigger {
		padding: 18px 16px;
		font-size: 0.95rem;
	}
	.ng-faq-body {
		padding: 0 16px;
	}
	.ng-faq-item.is-open .ng-faq-body {
		padding: 0 16px 18px 16px;
	}
}

@media (max-width: 380px) {
	.ng-calc-card, .ng-contact-card, .ng-hero-card {
		padding: 18px 12px;
	}
	.ng-btn {
		font-size: 0.85rem;
		padding: 12px 14px;
	}
}

/* ==========================================================================
   FRONT-PAGE INFOGRAPHICS & PINTEREST SHOWCASE
   ========================================================================== */
.ng-infographics-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

@media (max-width: 1100px) {
	.ng-infographics-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.ng-infographics-grid {
		grid-template-columns: 1fr;
	}
}

.ng-info-card {
	padding: 18px;
	border-radius: var(--ng-radius-lg);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.4s var(--ng-spring);
}

.ng-info-img-wrap {
	position: relative;
	width: 100%;
	border-radius: var(--ng-radius-md);
	overflow: hidden;
	background: #0f172a;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.ng-info-img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s var(--ng-spring);
}

.ng-info-card:hover .ng-info-img {
	transform: scale(1.03);
}

.ng-info-hover-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.75) 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	opacity: 0;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	transition: opacity 0.35s ease;
	padding: 20px;
}

.ng-info-img-wrap:hover .ng-info-hover-overlay {
	opacity: 1;
}

.ng-pin-hover-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	background: #e60023;
	color: #ffffff !important;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: var(--ng-radius-pill);
	box-shadow: 0 8px 24px rgba(230, 0, 35, 0.45);
	transition: transform 0.25s var(--ng-spring), background 0.2s ease;
}

.ng-pin-hover-btn:hover {
	transform: scale(1.06);
	background: #ad081b;
}

.ng-lightbox-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	background: rgba(255, 255, 255, 0.85);
	color: #0f172a;
	font-size: 0.85rem;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: var(--ng-radius-pill);
	cursor: pointer;
	transition: transform 0.25s var(--ng-spring);
}

.ng-lightbox-btn:hover {
	transform: scale(1.05);
	background: #ffffff;
}

.ng-info-body {
	padding: 16px 4px 4px 4px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ng-info-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ng-info-title {
	font-size: 1.18rem;
	font-weight: 800;
	color: var(--ng-text-primary);
	line-height: 1.3;
}

.ng-info-subtitle {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--ng-accent-cyan);
	line-height: 1.4;
}

.ng-info-desc {
	font-size: 0.88rem;
	color: var(--ng-text-secondary);
	line-height: 1.55;
}

.ng-info-tags {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-top: 4px;
}

.ng-info-tag {
	font-size: 0.76rem;
	font-weight: 600;
	color: var(--ng-text-muted);
	background: var(--ng-glass-bg-subtle);
	padding: 2px 8px;
	border-radius: 6px;
}

.ng-social-share-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--ng-glass-border);
	flex-wrap: wrap;
}

.ng-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border-radius: var(--ng-radius-pill);
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	background: var(--ng-glass-bg-subtle);
	border: 1px solid var(--ng-glass-border);
	color: var(--ng-text-secondary);
	cursor: pointer;
	transition: all 0.25s var(--ng-spring);
}

.ng-share-btn:hover {
	transform: translateY(-2px);
	border-color: var(--ng-accent-cyan);
	color: var(--ng-text-primary);
}

.ng-share-pin:hover {
	background: rgba(230, 0, 35, 0.1);
	border-color: #e60023;
	color: #e60023;
}

.ng-share-vk:hover {
	background: rgba(0, 119, 255, 0.1);
	border-color: #0077ff;
	color: #0077ff;
}

.ng-share-tg:hover {
	background: rgba(56, 189, 248, 0.1);
	border-color: var(--ng-accent-cyan);
	color: var(--ng-accent-cyan);
}

/* Lightbox Modal & Toast (Global on Front Page) */
.ng-lightbox-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: clamp(16px, 4vw, 40px);
	box-sizing: border-box;
}

.ng-lightbox-modal.is-open {
	display: flex;
}

.ng-lightbox-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.65);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.ng-lightbox-container {
	position: relative;
	z-index: 2;
	max-width: 960px;
	width: 100%;
	max-height: 90vh;
	background: rgba(240, 245, 252, 0.96);
	backdrop-filter: blur(30px) saturate(190%);
	-webkit-backdrop-filter: blur(30px) saturate(190%);
	padding: clamp(20px, 4vw, 40px);
	border-radius: var(--ng-radius-xl);
	overflow-y: auto;
	box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
}

.ng-lightbox-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.08);
	border: none;
	font-size: 1.1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ng-text-primary);
	transition: all 0.2s ease;
	z-index: 10;
}

.ng-lightbox-close:hover {
	background: #0f172a;
	color: #ffffff;
	transform: rotate(90deg);
}

.ng-lightbox-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 30px;
	align-items: center;
}

@media (max-width: 768px) {
	.ng-lightbox-grid {
		grid-template-columns: 1fr;
	}
}

.ng-lightbox-img-pane {
	text-align: center;
	border-radius: var(--ng-radius-md);
	overflow: hidden;
	background: #0f172a;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.ng-lightbox-img {
	width: 100%;
	max-height: 60vh;
	object-fit: contain;
	display: block;
}

.ng-lightbox-info-pane {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ng-toast {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	background: #0f172a;
	color: #ffffff;
	padding: 12px 24px;
	border-radius: var(--ng-radius-pill);
	font-size: 0.92rem;
	font-weight: 600;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
	border: 1px solid rgba(56, 189, 248, 0.5);
	z-index: 3000;
	pointer-events: none;
	opacity: 0;
	transition: all 0.4s var(--ng-spring);
}

.ng-toast.is-show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}


