/**
 * OutdoorPro Theme Main Stylesheet
 * 
 * Design System: Obsidian Indigo Background with Cyber Teal & Purple Accents
 * Senior UI/UX & Product Design System (DOOH 2.0 - Decoupled & Managerial)
 */

/* ==========================================
   1. CSS Reset & Variables
   ========================================== */
:root {
	--bg-primary: hsl(230, 16%, 6%);
	--bg-secondary: hsl(230, 14%, 9%);
	--accent-teal: hsl(174, 90%, 45%);
	--accent-teal-hover: hsl(174, 100%, 38%);
	--accent-teal-glow: rgba(11, 230, 200, 0.25);
	--accent-purple: hsl(265, 90%, 62%);
	--accent-purple-glow: rgba(155, 75, 252, 0.25);
	--accent-gradient: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-purple) 100%);
	
	--text-white: hsl(0, 0%, 98%);
	--text-muted: hsla(0, 0%, 100%, 0.65);
	--text-dark: hsl(230, 16%, 8%);
	--glass-bg: rgba(22, 22, 28, 0.65);
	--glass-border: rgba(255, 255, 255, 0.08);
	--glass-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
	
	--font-display: 'Syne', sans-serif;
	--font-body: 'Inter', sans-serif;
	
	--transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-elastic: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
	scroll-behavior: smooth;
	font-size: 16px;
	background-color: var(--bg-primary);
	color: var(--text-white);
}

body {
	font-family: var(--font-body);
	overflow-x: hidden;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-smooth);
}

button, input, textarea {
	font-family: inherit;
	border: none;
	background: none;
	outline: none;
	color: inherit;
}

ul {
	list-style: none;
}

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

.container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 80px;
}

/* ==========================================
   2. Global Typography & Core Elements
   ========================================== */
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.section-header {
	margin-bottom: 60px;
}

.section-title {
	font-size: 3.5rem;
	text-transform: uppercase;
	margin-bottom: 15px;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--accent-teal);
	box-shadow: 0 0 10px var(--accent-teal-glow);
}

.section-subtitle {
	font-size: 1.2rem;
	color: var(--text-muted);
	max-width: 600px;
}

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

.text-center .section-title::after {
	left: 50%;
	transform: translateX(-50%);
}

/* Scroll Reveal animation triggers */
.scroll-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Star Rotation animation */
.star-spin {
	animation: spin 15s linear infinite;
	transform-origin: center;
}

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

/* Glassmorphic Panel utility */
.glass-panel {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: var(--glass-shadow);
	border-radius: 16px;
	padding: 40px;
	transition: var(--transition-smooth);
}

.glass-panel:hover {
	border-color: rgba(11, 230, 200, 0.25);
	box-shadow: 0 40px 80px -20px rgba(11, 230, 200, 0.15);
}

/* ==========================================
   3. Glassmorphic Navigation Header
   ========================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 25px 0;
	transition: var(--transition-smooth);
}

.site-header.scrolled {
	padding: 15px 0;
	background: rgba(16, 16, 22, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.header-body {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Logo */
.header-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--text-white);
}

.header-logo .logo-text span {
	color: var(--accent-teal);
}

.header-logo .logo-icon-wrap {
	display: flex;
	align-items: center;
	color: var(--accent-teal);
}

/* Navigation Links (Fully dynamic menu styling support) */
.header-nav {
	display: block;
}

.header-nav-list {
	display: flex;
	align-items: center;
	gap: 40px;
}

.header-nav-list li a {
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--text-muted);
	padding: 10px 0;
	position: relative;
}

.header-nav-list li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent-teal);
	transition: var(--transition-smooth);
}

.header-nav-list li a:hover {
	color: var(--text-white);
}

.header-nav-list li a:hover::after {
	width: 100%;
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-phone-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 10px 20px;
	border-radius: 50px;
}

.header-phone-btn:hover {
	background: var(--text-white);
	color: var(--text-dark);
	border-color: var(--text-white);
}

.header-phone-btn .phone-icon {
	display: none;
}

/* Modern Pill Button CTA */
.header-cta-btn {
	background-color: var(--accent-teal);
	color: var(--text-white);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	padding: 12px 24px;
	border-radius: 50px;
	cursor: pointer;
	box-shadow: 0 8px 24px var(--accent-teal-glow);
	transition: var(--transition-elastic);
}

.header-cta-btn:hover {
	transform: scale(1.05);
	background-color: var(--accent-teal-hover);
	box-shadow: 0 12px 30px rgba(11, 230, 200, 0.4);
}

/* Burger menu */
.mobile-burger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	cursor: pointer;
	background: transparent;
	z-index: 1001;
}

.burger-line {
	width: 100%;
	height: 2px;
	background-color: var(--text-white);
	transition: var(--transition-smooth);
	transform-origin: left;
}

/* ==========================================
   4. Mobile Menu Overlay
   ========================================== */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background-color: var(--bg-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 100px 40px 40px;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	width: 100%;
}

.mobile-nav-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}

.mobile-nav-list li a {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.mobile-menu-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--text-muted);
}

.mobile-menu-footer a:hover {
	color: var(--accent-teal);
}

/* Active burger states */
.mobile-burger.active .line-1 { transform: rotate(45deg) translate(2px, -1px); }
.mobile-burger.active .line-2 { opacity: 0; }
.mobile-burger.active .line-3 { transform: rotate(-45deg) translate(2px, 1px); }

/* ==========================================
   5. Hero Section (Product split-layout)
   ========================================== */
.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	padding-top: 140px;
	overflow: hidden;
}

.hero-bg-glow {
	position: absolute;
	top: -15%;
	right: -15%;
	width: 65vw;
	height: 65vw;
	background: radial-gradient(circle, rgba(11, 230, 200, 0.08) 0%, rgba(155, 75, 252, 0.05) 50%, rgba(0,0,0,0) 80%);
	pointer-events: none;
	z-index: 1;
}

.hero-body.split-layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-pre-title {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.25em;
	color: var(--accent-teal);
	margin-bottom: 20px;
}

.hero-display-title {
	font-size: 5rem;
	line-height: 0.95;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 30px;
}

.hero-display-title span.accent-text {
	color: transparent;
	background: linear-gradient(90deg, var(--accent-teal) 0%, var(--accent-purple) 100%);
	-webkit-background-clip: text;
	-webkit-text-stroke: 1.5px transparent;
	text-shadow: 0 0 30px rgba(11, 230, 200, 0.15);
}

.hero-lead-text {
	font-size: 1.15rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 45px;
	max-width: 580px;
}

.hero-action-buttons {
	display: flex;
	align-items: center;
	gap: 25px;
}

.hero-btn-primary {
	background: var(--accent-gradient);
	color: var(--text-white);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1rem;
	letter-spacing: 0.05em;
	padding: 16px 36px;
	border-radius: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 10px 30px var(--accent-teal-glow);
	transition: var(--transition-elastic);
}

.hero-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(155, 75, 252, 0.45);
}

.hero-btn-secondary {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 1rem;
	color: var(--text-white);
	border-bottom: 1.5px solid rgba(255,255,255,0.2);
	padding: 10px 0;
	transition: var(--transition-smooth);
}

.hero-btn-secondary:hover {
	color: var(--accent-teal);
	border-color: var(--accent-teal);
	padding-right: 8px;
}

/* Programmatic Screen Mockup Visual (Hero Right) */
.screen-mockup-wrap {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.screen-glow {
	position: absolute;
	width: 105%;
	height: 105%;
	top: -2.5%;
	left: -2.5%;
	background: linear-gradient(135deg, rgba(11, 230, 200, 0.12) 0%, rgba(155, 75, 252, 0.08) 50%, rgba(0,0,0,0) 80%);
	filter: blur(30px);
	border-radius: 20px;
	pointer-events: none;
}

.mockup-frame {
	width: 100%;
	max-width: 480px;
	border-color: rgba(255,255,255,0.06);
	box-shadow: var(--glass-shadow), inset 0 20px 40px rgba(255,255,255,0.02);
}

.mockup-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 25px;
	font-family: var(--font-display);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	font-weight: 800;
	color: var(--text-muted);
}

.dot-red {
	width: 8px;
	height: 8px;
	background: var(--accent-teal);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--accent-teal);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 0.4; }
	50% { opacity: 1; }
}

.mockup-ad-visual {
	height: 240px;
	background: #0d0d14;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.04);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.ad-mesh-glow {
	position: absolute;
	width: 130%;
	height: 130%;
	background: radial-gradient(circle at center, rgba(11, 230, 200, 0.25) 0%, rgba(155, 75, 252, 0.15) 45%, rgba(0,0,0,0) 65%);
	animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow {
	0% { transform: translate(-10%, -10%) scale(1); }
	100% { transform: translate(10%, 10%) scale(1.1); }
}

.ad-title {
	font-size: 2.2rem;
	text-transform: uppercase;
	position: relative;
	z-index: 2;
	text-shadow: 0 5px 15px rgba(0,0,0,0.5);
	background: linear-gradient(135deg, #fff 40%, var(--accent-teal) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ad-tagline {
	font-size: 0.9rem;
	color: var(--text-muted);
	position: relative;
	z-index: 2;
	margin-top: 5px;
}

.mockup-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 20px;
}

.metric-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.metric-item .num {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--text-white);
}

.metric-item .label {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.metric-item.pulse-accent .num {
	color: var(--accent-teal);
	text-shadow: 0 0 10px var(--accent-teal-glow);
}

/* ==========================================
   6. Technology Loop (Impact Flow)
   ========================================== */
.impact-loop-section {
	padding: 120px 0;
	position: relative;
}

.loop-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
}

.loop-card {
	position: relative;
	min-height: 280px;
}

.loop-num {
	font-family: var(--font-display);
	font-size: 3.5rem;
	font-weight: 800;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.1);
	line-height: 1;
	margin-bottom: 20px;
}

.loop-card h3 {
	font-size: 1.3rem;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.loop-card p {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.6;
}

.loop-connector {
	position: absolute;
	right: -15%;
	top: 60px;
	width: 25%;
	z-index: 2;
	pointer-events: none;
}

/* ==========================================
   7. Interactive Media Grid with Filtering
   ========================================== */
.media-selector-section {
	padding: 120px 0;
}

.section-header-flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;
	flex-wrap: wrap;
	gap: 30px;
}

.filter-pills-wrap {
	display: flex;
	gap: 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 6px;
	border-radius: 50px;
}

.filter-pill {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.02em;
	padding: 10px 20px;
	border-radius: 50px;
	cursor: pointer;
	color: var(--text-muted);
	transition: var(--transition-smooth);
}

.filter-pill:hover {
	color: var(--text-white);
}

.filter-pill.active {
	background: var(--accent-teal);
	color: var(--text-white);
	box-shadow: 0 5px 15px var(--accent-teal-glow);
}

.placements-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.placement-card {
	background: var(--bg-secondary);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.04);
	transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.4s ease;
}

.placement-card.hidden {
	opacity: 0;
	transform: scale(0.95);
	position: absolute;
	pointer-events: none;
	width: 0;
	height: 0;
	overflow: hidden;
	border: none;
	margin: 0;
	padding: 0;
}

.placement-card .card-img-wrap {
	position: relative;
	height: 280px;
	overflow: hidden;
}

.placement-card .card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.placement-card:hover .card-img-wrap img {
	transform: scale(1.06);
}

.card-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--bg-primary);
	border: 1px solid var(--accent-teal);
	box-shadow: 0 0 15px var(--accent-teal-glow);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	padding: 6px 15px;
	border-radius: 50px;
}

.placement-card .card-body {
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.card-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.ots-stat strong {
	color: var(--accent-teal);
	text-shadow: 0 0 5px rgba(11, 230, 200, 0.2);
}

.size-tag {
	background: rgba(255, 255, 255, 0.05);
	padding: 4px 12px;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.placement-card h3 {
	font-size: 1.5rem;
	text-transform: uppercase;
}

.placement-card p {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

.card-select-btn {
	margin-top: 10px;
	border: 1.5px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	padding: 12px 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.85rem;
	cursor: pointer;
	transition: var(--transition-elastic);
}

.placement-card:hover {
	border-color: rgba(11, 230, 200, 0.2);
	box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.placement-card:hover .card-select-btn {
	background: var(--text-white);
	color: var(--text-dark);
	border-color: var(--text-white);
	transform: scale(1.02);
}

/* ==========================================
   8. Services Grid (Decoupled blocks)
   ========================================== */
.services-section {
	padding: 120px 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.service-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-height: 380px;
}

.service-card .card-icon {
	color: var(--accent-teal);
	background: rgba(11, 230, 200, 0.04);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(11, 230, 200, 0.1);
	transition: var(--transition-elastic);
}

.service-card:hover .card-icon {
	transform: scale(1.1) rotate(5deg);
	background: var(--accent-teal);
	color: var(--text-white);
	border-color: var(--accent-teal);
	box-shadow: 0 10px 25px var(--accent-teal-glow);
}

.service-card h3 {
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.service-card p {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ==========================================
   9. Infinite Marquee
   ========================================== */
.marquee-section {
	background: var(--accent-gradient);
	color: var(--text-white);
	padding: 30px 0;
	overflow: hidden;
	position: relative;
	z-index: 5;
}

.marquee-wrapper {
	display: flex;
	align-items: center;
}

.marquee-track {
	display: flex;
	white-space: nowrap;
	gap: 10px;
	animation: marquee 25s linear infinite;
}

.marquee-track span {
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	text-transform: uppercase;
}

.marquee-track .marquee-accent {
	color: var(--bg-primary);
	animation: spin 6s linear infinite;
	display: inline-block;
}

@keyframes marquee {
	0% { transform: translateX(0%); }
	100% { transform: translateX(-50%); }
}

/* ==========================================
   10. Interactive ROI Estimator Widget
   ========================================== */
.calculator-section {
	padding: 120px 0;
}

.calculator-grid {
	display: grid;
	grid-template-columns: 5.5fr 6.5fr;
	gap: 50px;
}

.calc-inputs-block {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.calc-title {
	font-size: 2.2rem;
	text-transform: uppercase;
}

.calc-subtitle {
	color: var(--text-muted);
	font-size: 1rem;
	margin-bottom: 20px;
}

.sliders-wrap {
	display: flex;
	flex-direction: column;
	gap: 35px;
}

.calc-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.calc-group-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.calc-group-header label {
	font-family: var(--font-display);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--accent-teal);
}

.calc-value-display {
	font-size: 1.3rem;
	color: var(--text-white);
}

.calc-value-display strong {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 800;
}

/* Premium Styled Range Slider */
.range-slider {
	-webkit-appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	outline: none;
	transition: background 0.3s;
}

.range-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--accent-teal);
	cursor: pointer;
	box-shadow: 0 0 12px var(--accent-teal);
	transition: var(--transition-elastic);
}

.range-slider::-webkit-slider-thumb:hover {
	transform: scale(1.25);
}

.range-slider::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border: none;
	border-radius: 50%;
	background: var(--accent-teal);
	cursor: pointer;
	box-shadow: 0 0 12px var(--accent-teal);
	transition: var(--transition-elastic);
}

.range-limits {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	color: var(--text-muted);
}

.calc-label-header {
	font-family: var(--font-display);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--accent-teal);
}

.calc-channels-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.channel-btn {
	background: rgba(255,255,255,0.02);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 8px;
	padding: 12px 6px;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.75rem;
	cursor: pointer;
	transition: var(--transition-smooth);
	text-align: center;
}

.channel-btn.active {
	background: rgba(11, 230, 200, 0.08);
	border-color: var(--accent-teal);
	color: var(--accent-teal);
	box-shadow: inset 0 0 10px rgba(11, 230, 200, 0.1);
}

/* Outputs Panel (Right) */
.calc-outputs-block {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: linear-gradient(135deg, rgba(22, 22, 28, 0.85) 0%, rgba(30, 30, 40, 0.85) 100%);
	position: relative;
	border-color: rgba(11, 230, 200, 0.15);
}

.calc-badge {
	position: absolute;
	top: -15px;
	right: 40px;
	background: var(--accent-purple);
	color: var(--text-white);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	padding: 6px 15px;
	border-radius: 50px;
	box-shadow: 0 5px 15px var(--accent-purple-glow);
}

.outputs-content {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 15px;
}

.output-item {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.output-label {
	font-family: var(--font-display);
	font-size: 0.9rem;
	letter-spacing: 0.02em;
	font-weight: 700;
	color: var(--text-muted);
}

.output-number {
	font-family: var(--font-display);
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1;
	color: var(--text-white);
}

.output-number.accent-glow {
	color: var(--accent-teal);
	text-shadow: 0 0 20px var(--accent-teal-glow);
}

.output-description {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* Submit High-converting CTA */
.calc-submit-cta {
	background: var(--accent-gradient);
	color: var(--text-white);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	padding: 18px;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	box-shadow: 0 10px 30px var(--accent-purple-glow);
	transition: var(--transition-elastic);
	margin-top: 30px;
	width: 100%;
}

.calc-submit-cta:hover {
	transform: scale(1.02);
	box-shadow: 0 15px 35px rgba(155, 75, 252, 0.45);
}

/* ==========================================
   11. Product Comparison Table
   ========================================== */
.comparison-section {
	padding: 120px 0;
	background: var(--bg-secondary);
}

.comparison-table-wrap {
	margin-top: 60px;
	padding: 0;
	overflow-x: auto;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}

.comparison-table th, .comparison-table td {
	padding: 25px 35px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.comparison-table th {
	font-family: var(--font-display);
	font-size: 0.95rem;
	letter-spacing: 0.05em;
	font-weight: 800;
	color: var(--text-muted);
	text-transform: uppercase;
}

.comparison-table .feature-name {
	font-size: 1.05rem;
	color: var(--text-white);
}

.bad-stat {
	color: rgba(255,255,255,0.5);
	font-size: 0.95rem;
}

.good-stat {
	color: var(--text-white);
	font-size: 1.05rem;
}

.highlight-col {
	background: rgba(11, 230, 200, 0.02);
	border-left: 1px solid rgba(11, 230, 200, 0.1);
	border-right: 1px solid rgba(11, 230, 200, 0.1);
}

thead th.highlight-col {
	color: var(--accent-teal);
	font-weight: 800;
}

/* ==========================================
   12. Testimonials / Case Studies
   ========================================== */
.testimonials-section {
	padding: 120px 0;
	background: radial-gradient(circle at 10% 90%, rgba(11, 230, 200, 0.03) 0%, rgba(155, 75, 252, 0.02) 50%, rgba(0,0,0,0) 60%);
}

.testimonials-hr {
	border: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin-bottom: 60px;
}

.testimonials-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 50px;
}

.review-navigation {
	display: flex;
	gap: 15px;
}

.review-nav-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	cursor: pointer;
	transition: var(--transition-smooth);
}

.review-nav-btn:hover {
	background: var(--text-white);
	color: var(--text-dark);
	border-color: var(--text-white);
}

.testimonials-slider {
	position: relative;
	min-height: 280px;
	overflow: hidden;
}

.testimonial-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.testimonial-item.active {
	opacity: 1;
	visibility: visible;
}

.feedback-text {
	font-size: 1.65rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 30px;
	max-width: 1100px;
}

.feedback-author {
	display: flex;
	flex-direction: column;
	gap: 5px;
	border-left: 2px solid var(--accent-teal);
	padding-left: 20px;
}

.author-name {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 700;
}

.author-desc {
	font-size: 0.95rem;
	color: var(--text-muted);
}

/* ==========================================
   13. Final CTA & Contacts
   ========================================== */
.final-cta-section {
	padding: 140px 0;
	position: relative;
	overflow: hidden;
}

.final-cta-glow {
	position: absolute;
	bottom: -10%;
	left: 10%;
	width: 50vw;
	height: 50vw;
	background: radial-gradient(circle, rgba(155, 75, 252, 0.05) 0%, rgba(11, 230, 200, 0.04) 50%, rgba(0,0,0,0) 70%);
	pointer-events: none;
}

.final-cta-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.final-title-1, .final-title-2, .final-title-3 {
	font-size: 7.5rem;
	line-height: 0.9;
	text-transform: uppercase;
}

.final-title-1 {
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.2);
}

.final-btn-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.final-cta-circle-btn {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: var(--bg-primary);
	border: 1px solid var(--accent-teal);
	cursor: pointer;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-shadow: 0 0 40px rgba(11, 230, 200, 0.15);
	transition: var(--transition-elastic);
}

.final-cta-circle-btn:hover {
	transform: scale(1.08) rotate(-3deg);
	box-shadow: 0 0 60px rgba(155, 75, 252, 0.35);
}

.btn-circle-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--accent-teal);
	transform: scale(0);
	border-radius: 50%;
	transition: var(--transition-elastic);
	z-index: 1;
}

.btn-circle-text {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1rem;
	letter-spacing: 0.05em;
	z-index: 2;
	color: var(--text-white);
	transition: var(--transition-smooth);
}

.btn-circle-icon {
	margin-top: 10px;
	z-index: 2;
	color: var(--text-white);
	transition: var(--transition-smooth);
}

.final-cta-circle-btn:hover .btn-circle-bg {
	transform: scale(1.1);
	background: var(--accent-gradient);
}

/* ==========================================
   14. Contacts CTA Section
   ========================================== */
.contacts-cta-section {
	padding: 100px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 80px;
}

.contacts-cta-body {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.cta-title {
	font-size: 3.5rem;
	text-transform: uppercase;
}

.cta-details-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.cta-col {
	display: flex;
	flex-direction: column;
	gap: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 25px;
}

.col-letter {
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--accent-teal);
	font-weight: 800;
}

.col-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.col-links a {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--text-white);
}

.col-links a:hover {
	color: var(--accent-teal);
	padding-left: 8px;
}

.socials-list {
	gap: 8px;
}

.socials-list a {
	font-size: 1.15rem;
	font-family: var(--font-display);
	text-transform: uppercase;
}

/* ==========================================
   15. Site Footer
   ========================================== */
.site-footer {
	background: var(--bg-secondary);
	padding: 80px 0 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 80px;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 50px;
}

.footer-brand {
	max-width: 320px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-logo {
	font-size: 1.8rem;
	font-weight: 800;
}

.footer-logo span {
	color: var(--accent-teal);
}

.footer-tagline {
	color: var(--text-muted);
	font-size: 0.95rem;
}

.footer-nav-columns {
	display: flex;
	gap: 80px;
	flex-wrap: wrap;
}

.footer-nav-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-nav-col h4 {
	font-family: var(--font-display);
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--accent-teal);
}

.footer-nav-col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-nav-col a {
	font-size: 0.95rem;
	color: var(--text-muted);
}

.footer-nav-col a:hover {
	color: var(--text-white);
}

.footer-nav-col span {
	font-size: 0.95rem;
	color: var(--text-muted);
}

.footer-separator {
	border: 0;
	height: 1px;
	background: rgba(255,255,255,0.06);
	margin: 60px 0 30px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 0.9rem;
	color: var(--text-muted);
}

/* ==========================================
   16. Dynamic Modal & Contact Form (Premium UI)
   ========================================== */
.contact-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-smooth);
}

.contact-modal.active {
	opacity: 1;
	visibility: visible;
}

.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(5, 5, 8, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.modal-container {
	position: relative;
	width: 100%;
	max-width: 580px;
	background: var(--bg-secondary);
	border: 1px solid var(--glass-border);
	box-shadow: 0 40px 80px rgba(0,0,0,0.8);
	border-radius: 20px;
	padding: 50px;
	z-index: 2;
	transform: scale(0.9);
	transition: var(--transition-elastic);
}

.contact-modal.active .modal-container {
	transform: scale(1);
}

.modal-close {
	position: absolute;
	top: 25px;
	right: 25px;
	cursor: pointer;
	color: var(--text-muted);
	transition: var(--transition-smooth);
}

.modal-close:hover {
	color: var(--accent-teal);
	transform: rotate(90deg);
}

.modal-title {
	font-size: 2.2rem;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.modal-subtitle {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin-bottom: 30px;
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

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

.form-group label {
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--accent-teal);
}

.form-group input, .form-group textarea {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	padding: 14px 20px;
	border-radius: 8px;
	font-size: 1rem;
	transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
	border-color: var(--accent-teal);
	background: rgba(255,255,255,0.06);
	box-shadow: 0 0 15px rgba(11, 230, 200, 0.15);
}

/* Submit Button */
.form-submit-btn {
	background: var(--accent-gradient);
	color: var(--text-white);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.95rem;
	letter-spacing: 0.05em;
	padding: 16px;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 10px 25px var(--accent-teal-glow);
	transition: var(--transition-elastic);
}

.form-submit-btn:hover {
	transform: scale(1.02);
	box-shadow: 0 15px 30px rgba(155, 75, 252, 0.4);
}

.btn-spinner {
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: var(--text-white);
	animation: spin 1s ease-in-out infinite;
}

/* Status Box */
.form-status-box {
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	font-weight: 500;
}

.error-box {
	background: rgba(255, 26, 64, 0.1);
	border: 1px solid rgba(255, 26, 64, 0.3);
	color: #ff3355;
}

.success-box {
	background: rgba(0, 200, 100, 0.1);
	border: 1px solid rgba(0, 200, 100, 0.3);
	color: #00cc66;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.success-icon-wrap {
	width: 60px;
	height: 60px;
}

.checkmark-svg {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: block;
	stroke-width: 2;
	stroke: #00cc66;
	stroke-miterlimit: 10;
	box-shadow: inset 0px 0px 0px #00cc66;
	animation: fillCheckmark .4s ease-in-out .4s forwards, scaleCheckmark .3s ease-in-out .9s both;
}

.checkmark-circle {
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	stroke-width: 2;
	stroke-miterlimit: 10;
	stroke: #00cc66;
	fill: none;
	animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
	transform-origin: 50% 50%;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	stroke: #00cc66;
	animation: strokeCheckmark 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes strokeCircle {
	100% { stroke-dashoffset: 0; }
}

@keyframes strokeCheckmark {
	100% { stroke-dashoffset: 0; }
}

@keyframes fillCheckmark {
	100% { box-shadow: inset 0px 0px 0px 30px rgba(0, 200, 100, 0.1); }
}

@keyframes scaleCheckmark {
	0%, 100% { transform: none; }
	50% { transform: scale3d(1.1, 1.1, 1); }
}

/* ==========================================
   17. Responsive Design Media Queries
   ========================================== */
@media (max-width: 1200px) {
	.container {
		padding: 0 40px;
	}
	.hero-display-title {
		font-size: 3.8rem;
	}
	.hero-body.split-layout {
		gap: 30px;
	}
	.placements-grid {
		gap: 25px;
	}
	.calculator-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 991px) {
	.site-header {
		padding: 20px 0;
	}
	.header-nav {
		display: none;
	}
	.mobile-burger {
		display: flex;
	}
	.header-phone-btn .phone-text {
		display: none;
	}
	.header-phone-btn .phone-icon {
		display: block;
	}
	.header-phone-btn {
		padding: 10px;
		border-radius: 50%;
	}
	.hero-body.split-layout {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.hero-left {
		order: 1;
	}
	.hero-right {
		order: 2;
		justify-content: center;
	}
	.screen-mockup-wrap {
		justify-content: center;
	}
	.loop-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.loop-connector {
		display: none;
	}
	.cta-details-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.footer-top {
		flex-direction: column;
		gap: 40px;
	}
	.footer-nav-columns {
		gap: 40px;
	}
}

@media (max-width: 767px) {
	.container {
		padding: 0 20px;
	}
	.section-title {
		font-size: 2.2rem;
	}
	.header-cta-btn {
		display: none;
	}
	.header-logo {
		font-size: 1.3rem;
		gap: 6px;
	}
	.header-logo svg.star-spin {
		width: 18px;
		height: 18px;
	}
	.header-actions {
		gap: 12px;
	}
	.hero-section {
		padding-top: 100px;
	}
	.hero-display-title {
		font-size: 2.4rem;
	}
	@media (max-width: 480px) {
		.hero-display-title {
			font-size: 1.9rem;
		}
		.section-title {
			font-size: 1.8rem;
		}
	}
	.hero-action-buttons {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		width: 100%;
	}
	.hero-btn-primary {
		width: 100%;
		justify-content: center;
	}
	.loop-grid {
		grid-template-columns: 1fr;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}
	.loop-card {
		min-height: auto;
	}
	.placements-grid {
		grid-template-columns: 1fr;
	}
	.filter-pills-wrap {
		width: 100%;
		overflow-x: auto;
		white-space: nowrap;
		border-radius: 12px;
	}
	.calc-channels-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.output-number {
		font-size: 2.6rem;
	}
	.comparison-table th, .comparison-table td {
		padding: 15px;
	}
	.final-title-1, .final-title-2, .final-title-3 {
		font-size: 3.5rem;
	}
	.final-btn-row {
		flex-direction: column;
		gap: 20px;
	}
	.final-cta-circle-btn {
		width: 140px;
		height: 140px;
	}
	.modal-container {
		padding: 30px 20px;
		width: 95%;
	}
	.modal-title {
		font-size: 1.8rem;
	}
	.cta-title {
		font-size: 2.2rem;
	}
	.col-links a {
		font-size: 1.15rem;
	}
}

/* ==========================================
   18. Cyber Light Theme (Premium UI/UX Redesign)
   ========================================== */
body.light-theme {
	/* Backgrounds & Layout */
	--bg-primary: hsl(215, 25%, 98%); /* Soft Luminous Pearl Snow background */
	--bg-secondary: hsl(215, 18%, 94%); /* Elegant warm slate mist canvas */
	--text-white: hsl(220, 35%, 15%); /* Crisp Charcoal Obsidian Typography */
	--text-muted: hsl(220, 15%, 45%); /* Elegant Slate copy text */
	--text-dark: hsl(220, 30%, 98%); /* Contrast text inside dark buttons */
	
	/* Highly Saturated Luminous Cyber Tech Accents */
	--accent-teal: hsl(174, 90%, 33%); /* Luminous Tech Teal (rich contrast & pop) */
	--accent-teal-hover: hsl(174, 100%, 25%);
	--accent-teal-glow: rgba(11, 180, 160, 0.22);
	--accent-purple: hsl(255, 80%, 48%); /* Royal Tech Violet / Amethyst */
	--accent-purple-glow: rgba(100, 75, 230, 0.22);
	
	/* High Frosted Glassmorphism with Thick Ambient Shadows */
	--glass-bg: rgba(255, 255, 255, 0.82);
	--glass-border: rgba(20, 20, 35, 0.04);
	--glass-shadow: 0 25px 50px -12px rgba(24, 28, 45, 0.07), 
	                0 8px 24px -8px rgba(100, 75, 230, 0.08), 
	                0 1px 3px rgba(0, 0, 0, 0.02);
}

body.light-theme {
	background-color: var(--bg-primary);
	color: var(--text-white);
}

/* Light Scrolled Header with micro-thin glass border and shadows */
body.light-theme .site-header.scrolled {
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border-bottom: 1px solid rgba(24, 28, 45, 0.05);
	box-shadow: 0 10px 40px -10px rgba(24, 28, 45, 0.06), 
	            0 1px 3px rgba(0, 0, 0, 0.01);
}

body.light-theme .header-logo {
	color: var(--text-white);
}

body.light-theme .header-logo .logo-text span {
	color: var(--accent-purple) !important;
}

body.light-theme .header-nav-list li a {
	color: var(--text-muted);
}

body.light-theme .header-nav-list li a:hover {
	color: var(--accent-teal);
}

body.light-theme .header-phone-btn {
	background: rgba(24, 28, 45, 0.03);
	border: 1px solid rgba(24, 28, 45, 0.06);
	color: var(--text-white);
}

body.light-theme .header-phone-btn:hover {
	background: #ffffff;
	color: var(--accent-purple);
	border-color: var(--accent-purple);
	box-shadow: 0 6px 15px rgba(100, 75, 230, 0.1);
}

body.light-theme .mobile-burger .burger-line {
	background-color: var(--text-white);
}

/* Loop connectors, loop card numbers and loop cards */
body.light-theme .loop-num {
	-webkit-text-stroke: 1.5px rgba(24, 28, 45, 0.08);
	color: transparent;
	background: linear-gradient(135deg, rgba(100, 75, 230, 0.2) 0%, rgba(11, 180, 160, 0.08) 100%);
	-webkit-background-clip: text;
}

body.light-theme .loop-connector line {
	stroke: var(--accent-purple) !important;
	stroke-dasharray: 6 6 !important;
	opacity: 0.35 !important;
}

/* Placements filters, cards, size tags and card buttons */
body.light-theme .card-badge {
	background: #ffffff !important;
	border-color: var(--accent-teal) !important;
	color: var(--accent-teal) !important;
	box-shadow: 0 4px 12px rgba(11, 180, 160, 0.15) !important;
}

body.light-theme .size-tag {
	background: rgba(24, 28, 45, 0.03);
	border-color: rgba(24, 28, 45, 0.06);
	color: var(--text-muted);
}

body.light-theme .card-select-btn {
	border-color: rgba(24, 28, 45, 0.1);
	color: var(--text-white);
}

body.light-theme .placement-card:hover .card-select-btn {
	background: var(--accent-teal);
	color: #ffffff;
	border-color: var(--accent-teal);
	box-shadow: 0 6px 15px var(--accent-teal-glow);
}

body.light-theme .filter-pills-wrap {
	background: rgba(24, 28, 45, 0.02);
	border-color: rgba(24, 28, 45, 0.05);
}

body.light-theme .filter-pill {
	color: var(--text-muted);
}

body.light-theme .filter-pill:hover {
	color: var(--text-white);
}

body.light-theme .filter-pill.active {
	background: var(--accent-teal);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(11, 180, 160, 0.3);
}

body.light-theme .comparison-table th,
body.light-theme .comparison-table td {
	border-bottom: 1px solid rgba(24, 28, 45, 0.06);
}

body.light-theme .highlight-col {
	background: rgba(11, 180, 160, 0.015);
	border-left: 1px solid rgba(11, 180, 160, 0.05);
	border-right: 1px solid rgba(11, 180, 160, 0.05);
}

body.light-theme .review-nav-btn {
	border-color: rgba(24, 28, 45, 0.12);
	color: var(--text-muted);
}

body.light-theme .review-nav-btn:hover {
	background: var(--text-white);
	color: var(--accent-purple);
	border-color: var(--accent-purple);
	box-shadow: 0 8px 20px rgba(24, 28, 45, 0.06);
}

body.light-theme .testimonials-hr {
	background: rgba(24, 28, 45, 0.08);
}

body.light-theme .final-title-1 {
	-webkit-text-stroke: 1.5px rgba(24, 28, 45, 0.12);
}

body.light-theme .contacts-cta-section {
	border-top: 1px solid rgba(24, 28, 45, 0.06);
}

body.light-theme .cta-col {
	border-top: 1px solid rgba(24, 28, 45, 0.06);
}

body.light-theme .cta-col a {
	color: var(--text-white);
}

body.light-theme .cta-col a:hover {
	color: var(--accent-teal);
}

body.light-theme .site-footer {
	border-top: 1px solid rgba(24, 28, 45, 0.04);
}

body.light-theme .footer-separator {
	background: rgba(24, 28, 45, 0.06);
}

body.light-theme .channel-btn {
	background: rgba(24, 28, 45, 0.02);
	border: 1px solid rgba(24, 28, 45, 0.06);
	color: var(--text-muted);
}

body.light-theme .channel-btn:hover {
	border-color: rgba(24, 28, 45, 0.15);
	color: var(--text-white);
}

body.light-theme .channel-btn.active {
	background: rgba(100, 75, 230, 0.06);
	border-color: var(--accent-purple);
	color: var(--accent-purple);
	box-shadow: 0 4px 12px rgba(100, 75, 230, 0.12);
}

body.light-theme .calc-outputs-block {
	background: linear-gradient(135deg, #09090e 0%, #12121c 100%) !important;
	border: 1px solid rgba(255, 255, 255, 0.06) !important;
	box-shadow: 0 35px 70px -15px rgba(24, 28, 45, 0.28), 
	            0 0 45px rgba(100, 75, 230, 0.15) !important;
}

body.light-theme .output-number {
	color: #ffffff !important;
}

body.light-theme .output-number.accent-glow {
	color: var(--accent-teal) !important;
	text-shadow: 0 0 15px rgba(11, 230, 200, 0.25) !important;
}

body.light-theme .form-group input,
body.light-theme .form-group textarea {
	background: rgba(24, 28, 45, 0.02);
	border: 1px solid rgba(24, 28, 45, 0.08);
	color: var(--text-white);
}

body.light-theme .form-group input:focus,
body.light-theme .form-group textarea:focus {
	background: #ffffff;
	border-color: var(--accent-purple);
	box-shadow: 0 0 0 3px rgba(100, 75, 230, 0.08);
}

body.light-theme .modal-container {
	background: var(--bg-secondary);
	border-color: var(--glass-border);
	box-shadow: 0 40px 80px rgba(24, 28, 45, 0.15);
}

body.light-theme .modal-close {
	color: var(--text-muted);
}

/* Fluid auto-flowing 10 channels grid */
.calc-channels-grid {
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
}

/* ==========================================
   19. Contact Form 7 Premium Styling Integration
   ========================================== */
.wpcf7 {
	width: 100%;
}

.wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.wpcf7-text,
.wpcf7-textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 14px 20px;
	border-radius: 8px;
	font-size: 1rem;
	color: var(--text-white);
	transition: var(--transition-smooth);
	box-sizing: border-box;
	font-family: var(--font-body);
}

.wpcf7-text:focus,
.wpcf7-textarea:focus {
	border-color: var(--accent-teal);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 0 15px rgba(11, 230, 200, 0.15);
	outline: none;
}

body.light-theme .wpcf7-text,
body.light-theme .wpcf7-textarea {
	background: rgba(24, 28, 45, 0.02);
	border: 1px solid rgba(24, 28, 45, 0.08);
	color: var(--text-white);
	box-shadow: inset 0 2px 4px rgba(24, 28, 45, 0.02);
}

body.light-theme .wpcf7-text:focus,
body.light-theme .wpcf7-textarea:focus {
	background: rgba(255, 255, 255, 0.9);
	border-color: var(--accent-teal);
}

.wpcf7-submit {
	width: 100%;
	background: var(--accent-gradient);
	color: hsl(0, 0%, 98%) !important;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.95rem;
	letter-spacing: 0.05em;
	padding: 16px;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 25px var(--accent-teal-glow);
	transition: var(--transition-elastic);
	text-transform: uppercase;
	border: none;
}

.wpcf7-submit:hover {
	transform: scale(1.02);
	box-shadow: 0 15px 30px rgba(155, 75, 252, 0.4);
}

/* CF7 Response and Validation Tips */
.wpcf7-not-valid-tip {
	color: #ff3355;
	font-size: 0.85rem;
	margin-top: 6px;
	font-weight: 600;
	text-align: left;
	display: block;
}

.wpcf7-response-output {
	margin: 15px 0 0 !important;
	padding: 15px 20px !important;
	border-radius: 8px !important;
	font-size: 0.9rem;
	text-align: center;
	border: 1px solid transparent !important;
	font-family: var(--font-body);
	box-sizing: border-box;
}

.wpcf7-form.sent .wpcf7-response-output {
	background: rgba(0, 200, 100, 0.1) !important;
	border-color: rgba(0, 200, 100, 0.3) !important;
	color: #00cc66 !important;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output {
	background: rgba(255, 26, 64, 0.1) !important;
	border-color: rgba(255, 255, 64, 0.3) !important;
	color: #ff3355 !important;
}

/* ==========================================
   20. WordPress Admin Bar UI Compatibility
   ========================================== */
.admin-bar .site-header {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
	.admin-bar .mobile-menu-overlay {
		padding-top: 140px;
	}
}

/* ==========================================
   21. Cyber Light Mode Visual Layout Adjustments (Senior UI/UX Spec)
   ========================================== */
body.light-theme .hero-bg-glow {
	background: radial-gradient(circle, rgba(11, 230, 200, 0.06) 0%, rgba(155, 75, 252, 0.05) 40%, rgba(255, 255, 255, 0) 80%);
}

/* Radiant Neon-tube Gradient Title with drop shadow glow */
body.light-theme .hero-display-title span.accent-text,
body.light-theme .section-title span.accent-text {
	color: transparent !important;
	background: linear-gradient(135deg, hsl(174, 90%, 38%) 0%, hsl(255, 80%, 52%) 100%) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	-webkit-text-stroke: 0px transparent;
	text-shadow: none;
	filter: drop-shadow(0 2px 10px rgba(11, 180, 160, 0.25)) 
	        drop-shadow(0 4px 20px rgba(155, 75, 252, 0.15)) !important;
}

/* Premium SaaS Obsidian highlights (Live Screen mockup remains elegant dark contrast anchor) */
body.light-theme .mockup-frame {
	background: #0a0a0f !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	box-shadow: 0 35px 70px -15px rgba(24, 28, 45, 0.25), 
	            0 0 40px rgba(135, 55, 232, 0.12) !important;
}

body.light-theme .mockup-frame .mockup-header {
	color: rgba(255, 255, 255, 0.5) !important;
}

body.light-theme .mockup-frame .metric-item .num,
body.light-theme .mockup-frame .metric-item .label {
	color: rgba(255, 255, 255, 0.8) !important;
}

body.light-theme .mockup-frame .metric-item.pulse-accent .num {
	color: var(--accent-teal) !important;
}

body.light-theme .mockup-ad-visual {
	background: #06060a !important;
	border-color: rgba(255, 255, 255, 0.03) !important;
}

/* Loop connectors, loop card numbers and loop cards */
body.light-theme .loop-connector line {
	stroke: var(--accent-purple) !important;
	stroke-dasharray: 6 6 !important;
	opacity: 0.3 !important;
}

body.light-theme .glass-panel,
body.light-theme .loop-card,
body.light-theme .placement-card,
body.light-theme .service-card,
body.light-theme .calc-inputs-block,
body.light-theme .modal-container {
	background: var(--glass-bg) !important;
	border: 1px solid rgba(255, 255, 255, 0.95) !important;
	box-shadow: var(--glass-shadow) !important;
	transition: var(--transition-smooth) !important;
}

body.light-theme .glass-panel:hover,
body.light-theme .loop-card:hover,
body.light-theme .placement-card:hover,
body.light-theme .service-card:hover,
body.light-theme .calc-inputs-block:hover {
	border-color: rgba(100, 75, 230, 0.25) !important;
	box-shadow: 0 30px 60px -15px rgba(24, 28, 45, 0.12), 
	            0 15px 35px -5px rgba(100, 75, 230, 0.16), 
	            0 0 30px rgba(11, 180, 160, 0.08) !important;
	transform: translateY(-5px) !important;
}

/* Header Action elements in Light Mode with volumetric tactile glows */
body.light-theme .header-cta-btn,
body.light-theme .hero-btn-primary,
body.light-theme .calc-submit-cta,
body.light-theme .form-submit-btn,
body.light-theme .wpcf7-submit {
	background: linear-gradient(135deg, hsl(255, 80%, 48%) 0%, hsl(230, 85%, 42%) 100%) !important;
	color: #ffffff !important;
	border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
	border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
	border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
	box-shadow: 0 10px 25px rgba(90, 75, 230, 0.22), 
	            0 4px 10px rgba(11, 180, 160, 0.12),
	            inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
	transition: var(--transition-elastic) !important;
}

body.light-theme .header-cta-btn:hover,
body.light-theme .hero-btn-primary:hover,
body.light-theme .calc-submit-cta:hover,
body.light-theme .form-submit-btn:hover,
body.light-theme .wpcf7-submit:hover {
	transform: translateY(-3px) scale(1.02);
	background: linear-gradient(135deg, hsl(255, 85%, 52%) 0%, hsl(230, 90%, 45%) 100%) !important;
	box-shadow: 0 15px 35px rgba(90, 75, 230, 0.32), 
	            0 8px 20px rgba(11, 180, 160, 0.2),
	            inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

/* Placements filters, cards, size tags and card buttons */
body.light-theme .card-badge {
	background: #ffffff !important;
	border-color: var(--accent-teal) !important;
	color: var(--accent-teal) !important;
	box-shadow: 0 4px 12px rgba(11, 180, 160, 0.15) !important;
}

/* Service cards enqueues with Teal hover glows */
body.light-theme .service-card .card-icon {
	background: rgba(11, 180, 160, 0.03) !important;
	border-color: rgba(11, 180, 160, 0.1) !important;
	color: var(--accent-teal) !important;
}

body.light-theme .service-card:hover .card-icon {
	background: var(--accent-teal) !important;
	color: hsl(0, 0%, 98%) !important;
	border-color: var(--accent-teal) !important;
	box-shadow: 0 6px 15px var(--accent-teal-glow) !important;
}

/* Dynamic Separator Marquee */
body.light-theme .marquee-section {
	background: linear-gradient(90deg, var(--accent-teal) 0%, var(--accent-purple) 100%) !important;
	color: hsl(0, 0%, 98%) !important;
	box-shadow: 0 10px 30px rgba(135, 55, 232, 0.15) !important;
}

body.light-theme .marquee-track .marquee-accent {
	color: rgba(255, 255, 255, 0.3) !important;
}

/* Frosted Estimator Panel vs High-Tech Dark Dashboard Anchor */
body.light-theme .range-slider {
	background: rgba(24, 28, 45, 0.08) !important;
}

body.light-theme .range-slider::-webkit-slider-thumb {
	background: var(--accent-teal) !important;
	border: 3px solid #ffffff !important;
	box-shadow: 0 0 0 1px rgba(24, 28, 45, 0.05), 
	            0 0 20px rgba(11, 180, 160, 0.6), 
	            0 4px 10px rgba(24, 28, 45, 0.15) !important;
}

body.light-theme .range-slider::-moz-range-thumb {
	background: var(--accent-teal) !important;
	border: 3px solid #ffffff !important;
	box-shadow: 0 0 0 1px rgba(24, 28, 45, 0.05), 
	            0 0 20px rgba(11, 180, 160, 0.6), 
	            0 4px 10px rgba(24, 28, 45, 0.15) !important;
}

/* Dynamic Dark Dashboard highlight remains obsidian with radiant cyber numbers */
body.light-theme .calc-outputs-block {
	background: linear-gradient(135deg, #09090e 0%, #12121c 100%) !important;
	border: 1px solid rgba(255, 255, 255, 0.06) !important;
	box-shadow: 0 35px 70px -15px rgba(24, 28, 45, 0.28), 
	            0 0 45px rgba(100, 75, 230, 0.15) !important;
}

body.light-theme .calc-outputs-block .calc-badge {
	box-shadow: 0 8px 20px rgba(100, 75, 230, 0.25) !important;
	background: var(--accent-purple) !important;
}

body.light-theme .calc-outputs-block .output-label {
	color: rgba(255, 255, 255, 0.5) !important;
}

body.light-theme .calc-outputs-block .output-number {
	color: #ffffff !important;
}

body.light-theme .calc-outputs-block .output-number.accent-glow {
	color: var(--accent-teal) !important;
	text-shadow: 0 0 15px rgba(11, 230, 200, 0.25) !important;
}

body.light-theme .calc-outputs-block .output-description {
	color: rgba(255, 255, 255, 0.4) !important;
}

/* Comparison custom slate table list */
body.light-theme .comparison-section {
	background: #f5f6fa !important;
}

body.light-theme .bad-stat {
	color: rgba(24, 28, 45, 0.55) !important;
}

body.light-theme .good-stat {
	color: var(--text-white) !important;
}

/* Testimonial slider, indicators, and nav buttons */
body.light-theme .testimonials-section {
	background: radial-gradient(circle at 10% 90%, rgba(11, 180, 160, 0.04) 0%, rgba(100, 75, 230, 0.03) 50%, rgba(255, 255, 255, 0) 60%) !important;
}

body.light-theme .feedback-text {
	color: var(--text-white) !important;
}

body.light-theme .feedback-author {
	border-left-color: var(--accent-purple) !important;
}

body.light-theme .review-nav-btn {
	border-color: rgba(24, 28, 45, 0.12) !important;
	color: var(--text-muted) !important;
}

body.light-theme .review-nav-btn:hover {
	background: var(--text-white) !important;
	color: var(--accent-purple) !important;
	border-color: var(--accent-purple) !important;
	box-shadow: 0 8px 20px rgba(24, 28, 45, 0.06) !important;
}

/* Final CTA and connections */
body.light-theme .final-cta-circle-btn {
	background: #ffffff !important;
	border-color: var(--accent-teal) !important;
	box-shadow: 0 10px 30px rgba(11, 180, 160, 0.06) !important;
}

body.light-theme .final-cta-circle-btn:hover {
	box-shadow: 0 15px 40px rgba(100, 75, 230, 0.25) !important;
}

/* Site Footer */
body.light-theme .site-footer {
	background: #f0f1f5 !important;
}

body.light-theme .footer-logo,
body.light-theme .footer-nav-col h4 {
	color: var(--text-white) !important;
}

body.light-theme .footer-nav-col a {
	color: var(--text-muted) !important;
}

body.light-theme .footer-nav-col a:hover {
	color: var(--accent-teal) !important;
}

body.light-theme .footer-bottom {
	color: var(--text-muted) !important;
}

body.light-theme .footer-separator {
	background: rgba(24, 28, 45, 0.06) !important;
}

/* Dynamic forms inputs, Contact Form 7 controls, and modal overlays */
body.light-theme .form-group input,
body.light-theme .form-group textarea {
	background: rgba(24, 28, 45, 0.02) !important;
	border: 1px solid rgba(24, 28, 45, 0.08) !important;
	color: var(--text-white) !important;
}

body.light-theme .form-group input:focus,
body.light-theme .form-group textarea:focus {
	background: #ffffff !important;
	border-color: var(--accent-purple) !important;
	box-shadow: 0 0 0 3px rgba(100, 75, 230, 0.08) !important;
}

/* ==========================================
   22. Cyber Light Mobile Responsiveness Spec
   ========================================== */
@media (max-width: 991px) {
	body.light-theme .mobile-menu-overlay {
		background-color: var(--bg-primary) !important;
	}
	body.light-theme .mobile-nav-list li a {
		color: var(--text-white) !important;
	}
	body.light-theme .mobile-nav-list li a:hover {
		color: var(--accent-purple) !important;
	}
}

@media (max-width: 767px) {
	/* Container Breathing Room Override */
	body.light-theme .container {
		padding: 0 24px !important;
	}
	
	/* Heading Adaptivity specs */
	body.light-theme .hero-display-title {
		font-size: 2.8rem !important;
		line-height: 1.05 !important;
	}
	body.light-theme .section-title {
		font-size: 2.2rem !important;
		line-height: 1.1 !important;
	}
	
	/* Stacked components breathing margin */
	body.light-theme .loop-card {
		margin-bottom: 24px !important;
	}
	body.light-theme .placement-card {
		margin-bottom: 24px !important;
	}
	body.light-theme .service-card {
		margin-bottom: 24px !important;
		min-height: auto !important;
		padding: 30px 24px !important;
	}
	
	/* Mobile details styling */
	body.light-theme .filter-pills-wrap {
		padding: 4px !important;
		border-radius: 10px !important;
	}
	body.light-theme .calc-outputs-block {
		padding: 35px 24px !important;
		border-radius: 16px !important;
		margin-top: 20px !important;
	}
	body.light-theme .modal-container {
		padding: 40px 24px !important;
		border-radius: 16px !important;
	}
	body.light-theme .final-title-1, 
	body.light-theme .final-title-2, 
	body.light-theme .final-title-3 {
		font-size: 3.5rem !important;
	}
}

/* ==========================================
   23. УКР-МЕДІА Target Audience & Footer CTA Hovers
   ========================================== */
.audience-card {
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.audience-card:hover {
	transform: translateY(-5px);
	border-color: var(--accent-teal) !important;
	box-shadow: 0 15px 30px rgba(11, 230, 200, 0.25) !important;
}

body.light-theme .audience-card {
	background: var(--glass-bg) !important;
	border: 1px solid rgba(24, 28, 45, 0.08) !important;
	box-shadow: var(--glass-shadow) !important;
}

body.light-theme .audience-card:hover {
	border-color: var(--accent-purple) !important;
	box-shadow: 0 15px 30px rgba(100, 75, 230, 0.18) !important;
}

body.light-theme .audience-check {
	color: var(--accent-purple) !important;
}

/* Footer buttons premium transitions & Light Theme compatibility */
.footer-cta-btn {
	transition: var(--transition-smooth) !important;
}

.footer-cta-btn:not(.secondary):hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 15px 35px rgba(11, 230, 200, 0.45) !important;
}

.footer-cta-btn.secondary:hover {
	color: var(--accent-teal) !important;
	border-color: var(--accent-teal) !important;
	padding-right: 8px !important;
}

body.light-theme .footer-cta-btn:not(.secondary) {
	background: linear-gradient(135deg, hsl(255, 80%, 48%) 0%, hsl(230, 85%, 42%) 100%) !important;
	box-shadow: 0 10px 25px rgba(90, 75, 230, 0.22) !important;
	border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
}

body.light-theme .footer-cta-btn:not(.secondary):hover {
	background: linear-gradient(135deg, hsl(255, 85%, 52%) 0%, hsl(230, 90%, 45%) 100%) !important;
	box-shadow: 0 15px 35px rgba(90, 75, 230, 0.32) !important;
}

body.light-theme .footer-cta-btn.secondary {
	color: var(--text-white) !important;
	border-color: rgba(24, 28, 45, 0.2) !important;
}

body.light-theme .footer-cta-btn.secondary:hover {
	color: var(--accent-purple) !important;
	border-color: var(--accent-purple) !important;
}

