/* Yavit Tech Cyber Theme */

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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background-color: #050505;
	color: #c8d0d8;
	overflow-x: hidden;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

html {
	background-color: #050505;
	overflow-x: hidden;
	max-width: 100%;
}

:root {
	--site-header-height: 108px;
}

#matrix-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	opacity: 0.2;
}

.site-content,
footer,
.site-header-fixed {
	position: relative;
	z-index: 1;
}

.site-content {
	padding-top: var(--site-header-height);
	background-color: transparent;
	margin-top: 0;
	max-width: 100%;
	overflow-x: clip;
}

.glow-text {
	text-shadow: 0 0 20px rgba(0, 255, 200, 0.3), 0 0 60px rgba(0, 255, 200, 0.1);
}

.neon-border {
	border: 1px solid rgba(0, 255, 200, 0.2);
	box-shadow: 0 0 30px rgba(0, 255, 200, 0.05);
}

.neon-border:hover {
	border-color: rgba(0, 255, 200, 0.5);
	box-shadow: 0 0 50px rgba(0, 255, 200, 0.15);
	transition: all 0.4s ease;
}

.bg-black-custom { background-color: rgba(5, 5, 5, 0.78); }
.bg-dark-surface { background-color: rgba(13, 13, 13, 0.82); }

.bg-dark-card {
	background-color: rgba(15, 15, 15, 0.88);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 255, 200, 0.12);
	transition: all 0.3s ease;
}

.bg-dark-card:hover {
	border-color: rgba(0, 255, 200, 0.3);
	box-shadow: 0 0 40px rgba(0, 255, 200, 0.05);
	transform: translateY(-4px);
}

.text-cyber {
	background: linear-gradient(135deg, #00f5d4, #00b4d8, #0077b6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.btn-cyber {
	background: linear-gradient(135deg, #00f5d4, #00b4d8);
	border: none;
	color: #050505 !important;
	font-weight: 700;
	padding: 0.85rem 2.5rem;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 0 30px rgba(0, 245, 212, 0.25);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.9rem;
	text-decoration: none;
	display: inline-block;
}

.btn-cyber:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 0 60px rgba(0, 245, 212, 0.4);
	color: #050505 !important;
}

.btn-outline-cyber {
	border: 1px solid rgba(0, 245, 212, 0.4);
	color: #00f5d4 !important;
	border-radius: 50px;
	padding: 0.85rem 2.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.9rem;
	background: transparent;
	text-decoration: none;
	display: inline-block;
}

.btn-outline-cyber:hover {
	background: rgba(0, 245, 212, 0.1);
	border-color: #00f5d4;
	color: #00f5d4 !important;
	box-shadow: 0 0 40px rgba(0, 245, 212, 0.15);
}

/* Fixed header stack: status bar + navbar */
.site-header-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(5, 5, 5, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.site-header-fixed .navbar-cyber {
	position: relative;
	border-bottom: 1px solid rgba(0, 245, 212, 0.08);
	margin-bottom: 0 !important;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

body.yavittech-cyber {
	padding-top: 0;
	margin-top: 0;
	padding-bottom: env(safe-area-inset-bottom);
	background-color: #050505 !important;
}

.site-content > section:first-child {
	margin-top: 0;
}

/* Live status bar */
.live-status-bar {
	background: linear-gradient(90deg, rgba(0, 40, 35, 0.95), rgba(5, 5, 5, 0.98), rgba(0, 40, 35, 0.95));
	border-bottom: 1px solid rgba(0, 245, 212, 0.12);
	font-size: 0.8rem;
	letter-spacing: 0.02em;
	margin: 0;
}

.live-status-bar--awake {
	border-bottom-color: rgba(0, 245, 212, 0.2);
}

.live-status-bar--away {
	background: linear-gradient(90deg, rgba(30, 25, 5, 0.95), rgba(5, 5, 5, 0.98), rgba(30, 25, 5, 0.95));
}

.live-status-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	padding: 0.45rem 0;
}

.live-status-pill {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.live-status-text {
	color: #b8c8d8;
	line-height: 1.3;
}

.live-status-title {
	color: #e8f0f8;
	font-weight: 600;
	font-family: 'Orbitron', monospace;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.live-status-bar--awake .live-status-title {
	color: #00f5d4;
}

.live-status-sub {
	color: #7a90a8;
	font-size: 0.78rem;
}

.live-status-meta {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	color: #6a8098;
	font-size: 0.75rem;
	flex-wrap: wrap;
}

.live-meta-label {
	color: #8aa0b8;
}

.live-clock-sep {
	opacity: 0.4;
}

.live-clock {
	color: #00f5d4;
	font-family: 'Orbitron', monospace;
	font-size: 0.72rem;
	font-weight: 600;
}

/* Heartbeat animation */
.heartbeat-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.heartbeat-icon {
	position: relative;
	z-index: 2;
	color: #ff4d6d;
	font-size: 0.95rem;
	animation: heartbeat 1.2s ease-in-out infinite;
	display: flex;
	align-items: center;
	justify-content: center;
}

.live-status-bar--awake .heartbeat-icon {
	color: #ff4d6d;
	text-shadow: 0 0 12px rgba(255, 77, 109, 0.6);
}

.live-status-bar--away .heartbeat-icon {
	color: #c9a227;
	animation-duration: 2s;
}

.heartbeat-pulse {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: rgba(255, 77, 109, 0.35);
	animation: heartbeat-pulse 1.2s ease-out infinite;
	z-index: 1;
}

.heartbeat-pulse--delay {
	animation-delay: 0.4s;
}

.live-status-bar--away .heartbeat-pulse {
	background: rgba(201, 162, 39, 0.25);
}

@keyframes heartbeat {
	0%, 100% { transform: scale(1); }
	14% { transform: scale(1.18); }
	28% { transform: scale(1); }
	42% { transform: scale(1.12); }
	56% { transform: scale(1); }
}

@keyframes heartbeat-pulse {
	0% {
		transform: scale(0.6);
		opacity: 0.8;
	}
	100% {
		transform: scale(2.2);
		opacity: 0;
	}
}

.live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #00f5d4;
	box-shadow: 0 0 10px rgba(0, 245, 212, 0.6);
	animation: live-blink 2s ease-in-out infinite;
	flex-shrink: 0;
}

.live-status-bar--away .live-dot {
	background: #c9a227;
	box-shadow: 0 0 8px rgba(201, 162, 39, 0.5);
}

@keyframes live-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}

/* Let's Talk — awake badge */
.btn-talk-live {
	display: inline-flex !important;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 1.35rem !important;
	font-size: 0.82rem !important;
}

.btn-talk-live .heartbeat-wrap {
	width: 18px;
	height: 18px;
}

.btn-talk-live .heartbeat-icon {
	font-size: 0.8rem;
}

.btn-talk-live .heartbeat-pulse {
	background: rgba(255, 77, 109, 0.4);
}

.btn-talk-text {
	white-space: nowrap;
}

.awake-badge {
	display: inline-block;
	padding: 0.15rem 0.55rem;
	border-radius: 50px;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.4;
	animation: badge-glow 2s ease-in-out infinite;
}

.awake-badge--awake {
	background: rgba(0, 245, 212, 0.15);
	color: #050505;
	border: 1px solid rgba(0, 245, 212, 0.5);
	box-shadow: 0 0 12px rgba(0, 245, 212, 0.25);
}

.awake-badge--away {
	background: rgba(201, 162, 39, 0.15);
	color: #e8d48a;
	border: 1px solid rgba(201, 162, 39, 0.35);
	animation: none;
}

@keyframes badge-glow {
	0%, 100% { box-shadow: 0 0 8px rgba(0, 245, 212, 0.2); }
	50% { box-shadow: 0 0 18px rgba(0, 245, 212, 0.45); }
}

/* Navbar */
.navbar-cyber {
	background: rgba(5, 5, 5, 0.85);
	backdrop-filter: blur(20px);
	z-index: 1000;
}

.nav-link-cyber {
	color: #8899aa !important;
	font-weight: 500;
	margin: 0 0.25rem;
	padding: 0.6rem 1rem !important;
	border-radius: 8px;
	transition: all 0.3s ease;
	font-size: 0.9rem;
	letter-spacing: 0.02em;
}

.nav-link-cyber:hover,
.nav-link-cyber.active {
	color: #00f5d4 !important;
	background: rgba(0, 245, 212, 0.08);
}

.brand-cyber {
	font-family: 'Orbitron', monospace;
	font-weight: 800;
	font-size: 1.6rem;
	letter-spacing: -0.02em;
	text-decoration: none;
}

.custom-logo-link img {
	max-height: 48px;
	width: auto;
}

/* Hero */
.hero-section {
	position: relative;
	z-index: 1;
	min-height: calc(100vh - var(--site-header-height));
	display: flex;
	align-items: center;
	padding-top: 2rem;
	padding-bottom: 60px;
	margin-top: 0;
}

.hero-title {
	font-family: 'Orbitron', monospace;
	font-weight: 900;
	font-size: 3.8rem;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.hero-subtitle {
	font-size: 1.15rem;
	color: #8aa0b8;
	max-width: 580px;
	line-height: 1.7;
}

.typing-badge {
	display: inline-block;
	background: rgba(0, 245, 212, 0.08);
	border: 1px solid rgba(0, 245, 212, 0.2);
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-family: 'Orbitron', monospace;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	color: #00f5d4;
	margin-bottom: 1.5rem;
}

.typing-badge .blink {
	animation: blink 1s step-end infinite;
}

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

.stat-number {
	font-family: 'Orbitron', monospace;
	font-weight: 700;
	font-size: 2.5rem;
	color: #00f5d4;
}

.stat-label {
	color: #6a8098;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Sections */
.section-padding {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.section-title {
	font-family: 'Orbitron', monospace;
	font-weight: 800;
	font-size: 2.6rem;
	letter-spacing: -0.02em;
}

.section-subtitle {
	color: #7a90a8;
	font-size: 1.1rem;
	max-width: 680px;
}

.section-tag {
	display: inline-block;
	background: rgba(0, 245, 212, 0.06);
	border: 1px solid rgba(0, 245, 212, 0.15);
	padding: 0.3rem 1.2rem;
	border-radius: 50px;
	font-family: 'Orbitron', monospace;
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	color: #00f5d4;
	text-transform: uppercase;
	margin-bottom: 0.8rem;
}

.service-icon-cyber {
	font-size: 2.8rem;
	color: #00f5d4;
	filter: drop-shadow(0 0 20px rgba(0, 245, 212, 0.15));
}

.service-card-title {
	font-family: 'Orbitron', monospace;
	font-weight: 700;
	font-size: 1.15rem;
	margin-top: 1rem;
	color: #e0e8f0;
}

.service-card-desc {
	color: #7a90a8;
	font-size: 0.95rem;
	line-height: 1.6;
}

.service-tag {
	display: inline-block;
	background: rgba(0, 245, 212, 0.06);
	border: 1px solid rgba(0, 245, 212, 0.15);
	color: #00f5d4;
	font-size: 0.7rem;
	padding: 0.2rem 0.7rem;
	border-radius: 50px;
	margin: 0.15rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Portfolio */
.portfolio-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}

.portfolio-tab {
	background: rgba(10, 10, 10, 0.8);
	border: 1px solid rgba(0, 245, 212, 0.12);
	color: #8899aa;
	padding: 0.6rem 1.5rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Orbitron', monospace;
	letter-spacing: 0.03em;
}

.portfolio-tab:hover,
.portfolio-tab.active {
	border-color: rgba(0, 245, 212, 0.4);
	color: #00f5d4;
	background: rgba(0, 245, 212, 0.08);
	box-shadow: 0 0 30px rgba(0, 245, 212, 0.08);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.25rem;
}

.portfolio-item {
	background: rgba(10, 10, 10, 0.8);
	border: 1px solid rgba(0, 245, 212, 0.08);
	border-radius: 16px;
	padding: 1.75rem 1.25rem;
	text-align: center;
	transition: all 0.4s ease;
	backdrop-filter: blur(5px);
	text-decoration: none;
	display: block;
}

.portfolio-item:hover {
	border-color: rgba(0, 245, 212, 0.3);
	box-shadow: 0 0 60px rgba(0, 245, 212, 0.05);
	transform: translateY(-6px);
}

.portfolio-item h5 {
	color: #fff;
	margin-top: 0.75rem;
	font-weight: 700;
	font-size: 1rem;
}

.portfolio-item p {
	color: #7a90a8;
	font-size: 0.85rem;
	margin-bottom: 0.75rem;
}

.portfolio-badge {
	display: inline-block;
	background: rgba(0, 245, 212, 0.06);
	border: 1px solid rgba(0, 245, 212, 0.2);
	color: #00f5d4;
	font-size: 0.7rem;
	padding: 0.25rem 0.8rem;
	border-radius: 50px;
}

.portfolio-category-panel {
	display: none;
}

.portfolio-category-panel.active {
	display: block;
	animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Testimonial */
.testimonial-cyber {
	background: rgba(10, 10, 10, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 245, 212, 0.1);
	border-radius: 20px;
	padding: 3rem;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.testimonial-cyber .quote-icon {
	font-size: 3rem;
	color: rgba(0, 245, 212, 0.3);
}

.testimonial-cyber .quote-text {
	font-size: 1.4rem;
	color: #c8d8e8;
	line-height: 1.7;
	font-style: italic;
}

/* Leadership */
.leader-card-cyber {
	background: rgba(10, 10, 10, 0.6);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(0, 245, 212, 0.06);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition: all 0.4s ease;
}

.leader-card-cyber:hover {
	border-color: rgba(0, 245, 212, 0.25);
	transform: translateY(-5px);
	box-shadow: 0 0 50px rgba(0, 245, 212, 0.05);
}

.leader-avatar-cyber {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(0, 245, 212, 0.15), rgba(0, 180, 216, 0.05));
	border: 2px solid rgba(0, 245, 212, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-family: 'Orbitron', monospace;
	font-weight: 700;
	font-size: 1.6rem;
	color: #00f5d4;
}

/* About */
.about-feature {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.about-feature i {
	font-size: 1.5rem;
	color: #00f5d4;
	margin-top: 0.15rem;
}

/* Contact */
.cta-cyber {
	background: linear-gradient(135deg, rgba(0, 245, 212, 0.05), rgba(0, 180, 216, 0.03));
	border-top: 1px solid rgba(0, 245, 212, 0.06);
	border-bottom: 1px solid rgba(0, 245, 212, 0.06);
}

.contact-form-cyber .form-control,
.contact-form-cyber .form-select {
	background: rgba(10, 10, 10, 0.8);
	border: 1px solid rgba(0, 245, 212, 0.15);
	color: #c8d0d8;
	border-radius: 12px;
	padding: 0.85rem 1rem;
}

.contact-form-cyber .form-control:focus {
	background: rgba(10, 10, 10, 0.9);
	border-color: rgba(0, 245, 212, 0.4);
	box-shadow: 0 0 20px rgba(0, 245, 212, 0.08);
	color: #fff;
}

.contact-form-cyber .form-label {
	color: #8aa0b8;
	font-size: 0.9rem;
	font-weight: 500;
}

.contact-alert {
	border-radius: 12px;
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
}

.contact-alert.success {
	background: rgba(0, 245, 212, 0.08);
	border: 1px solid rgba(0, 245, 212, 0.25);
	color: #00f5d4;
}

.contact-alert.error {
	background: rgba(255, 80, 80, 0.08);
	border: 1px solid rgba(255, 80, 80, 0.25);
	color: #ff8888;
}

.contact-info-card {
	background: rgba(10, 10, 10, 0.6);
	border: 1px solid rgba(0, 245, 212, 0.1);
	border-radius: 16px;
	padding: 2rem;
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.contact-info-item i {
	font-size: 1.5rem;
	color: #00f5d4;
}

/* Entry gate */
.site-entry-gate {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	overflow: hidden;
}

html.site-locked .site-entry-gate {
	display: flex;
}

html.site-locked body {
	overflow: hidden;
}

html.site-locked body > *:not(#site-entry-gate) {
	visibility: hidden;
}

html.site-entered .site-entry-gate {
	display: none !important;
}

html.site-entered .site-page-visible {
	animation: site-fade-in 0.65s ease forwards;
}

@keyframes site-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

.entry-matrix-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 0;
}

.site-entry-gate__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.35) 0%, rgba(5, 5, 5, 0.88) 70%);
	pointer-events: none;
}

.site-entry-gate__content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 520px;
	padding: 2.5rem 2rem;
	background: rgba(8, 8, 8, 0.75);
	border: 1px solid rgba(0, 245, 212, 0.25);
	border-radius: 20px;
	box-shadow: 0 0 80px rgba(0, 245, 212, 0.12), 0 0 120px rgba(178, 75, 243, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	animation: entry-panel-in 0.8s ease;
}

@keyframes entry-panel-in {
	from {
		opacity: 0;
		transform: translateY(24px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.site-entry-gate.is-leaving {
	animation: entry-gate-out 0.55s ease forwards;
}

@keyframes entry-gate-out {
	to {
		opacity: 0;
		visibility: hidden;
	}
}

.site-entry-gate__tag {
	font-family: 'Orbitron', monospace;
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	color: #00f5d4;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.site-entry-gate__title {
	font-family: 'Orbitron', monospace;
	font-weight: 900;
	font-size: clamp(2rem, 6vw, 3rem);
	color: #fff;
	margin-bottom: 0.75rem;
	line-height: 1.1;
}

.site-entry-gate__subtitle {
	color: #8aa0b8;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1.75rem;
}

.site-entry-gate__btn {
	padding: 0.95rem 2.5rem !important;
	font-size: 0.95rem !important;
	min-width: 220px;
}

.site-entry-gate__note {
	color: #6a8098;
	font-size: 0.75rem;
	line-height: 1.55;
	margin-top: 1.25rem;
	margin-bottom: 0;
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
}

/* Footer */
.footer-cyber {
	position: relative;
	z-index: 1;
	border-top: 1px solid rgba(0, 245, 212, 0.1);
	background: linear-gradient(180deg, rgba(5, 5, 5, 0.9) 0%, rgba(10, 8, 16, 0.93) 100%);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 3.25rem 0 2.5rem;
}

.footer-cyber::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 245, 212, 0.35), rgba(178, 75, 243, 0.3), transparent);
	pointer-events: none;
}

.footer-cyber-inner {
	position: relative;
	width: 100%;
}

.footer-heading {
	color: #fff;
	font-family: 'Orbitron', monospace;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 1.1rem;
}

.footer-col {
	min-width: 0;
}

.footer-brand-text {
	line-height: 1.65;
	max-width: 320px;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-contact-list li {
	min-width: 0;
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
}

.footer-bottom-row {
	margin-top: 2.25rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0, 245, 212, 0.08);
	align-items: center;
}

.footer-bottom-row small {
	display: block;
	line-height: 1.65;
	word-break: break-word;
}

.footer-tagline {
	letter-spacing: 0.04em;
	font-size: 0.8rem;
}

/* SEO FAQ accordion */
.faq-accordion-item {
	background: rgba(10, 10, 10, 0.85);
	border: 1px solid rgba(0, 245, 212, 0.12) !important;
	margin-bottom: 0.75rem;
	border-radius: 12px !important;
	overflow: hidden;
}

.faq-accordion .accordion-button {
	background: rgba(8, 8, 8, 0.95);
	color: #e0e8f0;
	font-weight: 600;
	font-size: 0.95rem;
	box-shadow: none;
	padding: 1.1rem 1.25rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
	background: rgba(0, 245, 212, 0.06);
	color: #00f5d4;
}

.faq-accordion .accordion-button::after {
	filter: invert(1);
}

.faq-accordion .accordion-body {
	background: rgba(5, 5, 5, 0.6);
	color: #8aa0b8;
	line-height: 1.75;
	padding: 1.1rem 1.25rem 1.25rem;
}

body.sidebar-hanger-open {
	overflow: hidden;
}

.footer-divider {
	border-color: rgba(0, 245, 212, 0.06) !important;
}

.footer-link-cyber {
	color: #8aa0b8;
	text-decoration: none;
	transition: color 0.3s ease;
	display: inline-block;
	padding: 0.2rem 0;
	line-height: 1.6;
	word-break: break-word;
	max-width: 100%;
}

.footer-link-cyber:hover {
	color: #00f5d4;
}

.social-icon-cyber {
	color: #6a8098;
	font-size: 1.4rem;
	margin-right: 0;
	transition: all 0.3s ease;
	text-decoration: none;
	line-height: 1;
}

.social-icon-cyber:hover {
	color: #00f5d4;
	transform: translateY(-2px);
}

/* Blog / inner pages */
.page-hero {
	padding-top: 2.5rem;
	padding-bottom: 3rem;
	margin-top: 0;
	position: relative;
	z-index: 1;
}

.inner-content {
	position: relative;
	z-index: 1;
	padding-bottom: 4rem;
}

.inner-content .entry-content {
	color: #b0bec8;
	line-height: 1.8;
}

.inner-content .entry-content h2,
.inner-content .entry-content h3,
.inner-content .entry-content h4 {
	color: #e0e8f0;
	font-family: 'Orbitron', monospace;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.inner-content .entry-content a {
	color: #00f5d4;
}

.blog-card {
	background: rgba(10, 10, 10, 0.8);
	border: 1px solid rgba(0, 245, 212, 0.08);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%;
}

.blog-card:hover {
	border-color: rgba(0, 245, 212, 0.25);
	transform: translateY(-4px);
	box-shadow: 0 0 40px rgba(0, 245, 212, 0.05);
}

.blog-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.blog-card-body {
	padding: 1.5rem;
}

.blog-card-title {
	font-family: 'Orbitron', monospace;
	font-size: 1rem;
	font-weight: 700;
	color: #e0e8f0;
	margin-bottom: 0.75rem;
}

.blog-card-title a {
	color: inherit;
	text-decoration: none;
}

.blog-card-title a:hover {
	color: #00f5d4;
}

.blog-card-meta {
	color: #6a8098;
	font-size: 0.8rem;
	margin-bottom: 0.75rem;
}

.blog-card-excerpt {
	color: #7a90a8;
	font-size: 0.9rem;
	line-height: 1.6;
}

/* Process steps */
.process-step {
	text-align: center;
	padding: 1.5rem 1rem;
}

.process-number {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(0, 245, 212, 0.1);
	border: 1px solid rgba(0, 245, 212, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-family: 'Orbitron', monospace;
	font-weight: 700;
	color: #00f5d4;
}

/* CTA & phone visibility */
.cta-phone-banner {
	background: rgba(0, 245, 212, 0.04);
	border: 1px solid rgba(0, 245, 212, 0.15);
	border-radius: 16px;
	padding: 1.5rem 2rem;
}

.cta-phone-btn {
	font-size: 1.15rem !important;
	letter-spacing: 0.03em;
}

.contact-phone-display {
	color: #fff !important;
	font-size: 1.15rem;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.02em;
}

.contact-phone-display:hover {
	color: #00f5d4 !important;
}

.btn-phone-visible {
	background: #fff;
	border: none;
	color: #050505 !important;
	font-weight: 700;
	padding: 0.85rem 1.75rem;
	border-radius: 50px;
	text-decoration: none;
	display: inline-block;
	font-size: 0.95rem;
	white-space: nowrap;
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.btn-phone-visible:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 40px rgba(255, 255, 255, 0.25);
	color: #050505 !important;
}

.btn-whatsapp {
	background: #25d366;
	border: none;
	color: #fff !important;
	font-weight: 700;
	padding: 0.85rem 1.75rem;
	border-radius: 50px;
	text-decoration: none;
	display: inline-block;
	font-size: 0.9rem;
	box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
	transition: all 0.3s ease;
}

.btn-whatsapp:hover {
	background: #1ebe57;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 0 50px rgba(37, 211, 102, 0.45);
}

.contact-card-actions {
	border-color: rgba(0, 245, 212, 0.1) !important;
}

/* Sidebar hanger — AI & GenAI CTA */
.sidebar-hanger-backdrop {
	position: fixed;
	inset: 0;
	z-index: 9997;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(2px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.sidebar-hanger-backdrop:not([hidden]) {
	opacity: 1;
	pointer-events: auto;
}

.sidebar-hanger {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9998;
	display: flex;
	align-items: stretch;
}

.sidebar-hanger-tab {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	width: 44px;
	padding: 1rem 0.5rem;
	background: linear-gradient(180deg, #00f5d4, #00b4d8);
	border: none;
	border-radius: 0 12px 12px 0;
	color: #050505;
	cursor: pointer;
	box-shadow: 4px 0 30px rgba(0, 245, 212, 0.35);
	transition: all 0.3s ease;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-family: 'Orbitron', monospace;
	font-weight: 800;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sidebar-hanger-tab:hover,
.sidebar-hanger.is-open .sidebar-hanger-tab {
	width: 48px;
	box-shadow: 6px 0 40px rgba(0, 245, 212, 0.5);
}

.sidebar-hanger-icon {
	writing-mode: horizontal-tb;
	font-size: 1.1rem;
	transform: rotate(90deg);
}

.sidebar-hanger-tab-label {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	white-space: nowrap;
}

.sidebar-hanger-pulse {
	position: absolute;
	inset: 0;
	border-radius: 0 12px 12px 0;
	background: rgba(0, 245, 212, 0.4);
	animation: hanger-pulse 2s ease-out infinite;
	pointer-events: none;
}

@keyframes hanger-pulse {
	0% { opacity: 0.6; transform: scale(1); }
	100% { opacity: 0; transform: scale(1.15); }
}

.sidebar-hanger-panel {
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	width: 300px;
	margin-left: 0;
	background: rgba(8, 8, 8, 0.97);
	border: 1px solid rgba(0, 245, 212, 0.25);
	border-left: none;
	border-radius: 0 16px 16px 0;
	box-shadow: 8px 0 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 245, 212, 0.08);
	backdrop-filter: blur(12px);
	animation: hanger-slide-in 0.35s ease;
}

.sidebar-hanger-panel[hidden] {
	display: none !important;
}

@keyframes hanger-slide-in {
	from {
		opacity: 0;
		transform: translateY(-50%) translateX(-12px);
	}
	to {
		opacity: 1;
		transform: translateY(-50%) translateX(0);
	}
}

.sidebar-hanger-panel-inner {
	padding: 1.25rem 1.25rem 1.25rem 1rem;
}

.sidebar-hanger-close {
	position: absolute;
	top: 8px;
	right: 8px;
	background: transparent;
	border: none;
	color: #6a8098;
	font-size: 1.1rem;
	cursor: pointer;
	padding: 0.25rem;
	line-height: 1;
	transition: color 0.2s ease;
}

.sidebar-hanger-close:hover {
	color: #00f5d4;
}

.sidebar-hanger-tag {
	display: inline-block;
	background: rgba(0, 245, 212, 0.08);
	border: 1px solid rgba(0, 245, 212, 0.2);
	color: #00f5d4;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 0.25rem 0.65rem;
	border-radius: 50px;
	margin-bottom: 0.75rem;
	font-family: 'Orbitron', monospace;
}

.sidebar-hanger-title {
	color: #fff;
	font-family: 'Orbitron', monospace;
	font-weight: 700;
	font-size: 0.95rem;
	margin-bottom: 0.65rem;
	line-height: 1.35;
}

.sidebar-hanger-text {
	color: #8aa0b8;
	font-size: 0.82rem;
	line-height: 1.65;
	margin-bottom: 1rem;
}

.sidebar-hanger-call {
	padding: 0.7rem 1rem !important;
	font-size: 0.78rem !important;
	margin-bottom: 0.5rem;
}

.sidebar-hanger-phone {
	margin-top: 0.35rem;
}

.sidebar-hanger-phone .contact-phone-display {
	font-size: 0.95rem;
}

@media (min-width: 992px) {
	.sidebar-hanger:hover .sidebar-hanger-panel,
	.sidebar-hanger.is-open .sidebar-hanger-panel {
		display: block !important;
	}

	.sidebar-hanger:hover .sidebar-hanger-panel[hidden] {
		display: block !important;
	}
}

@media (max-width: 991px) {
	.sidebar-hanger-panel {
		position: fixed;
		left: 0;
		right: 0;
		top: auto;
		bottom: 0;
		width: 100%;
		max-width: 100%;
		margin: 0;
		transform: translateY(100%);
		border-left: 1px solid rgba(0, 245, 212, 0.25);
		border-radius: 16px 16px 0 0;
		border-bottom: none;
		box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.6), 0 0 50px rgba(178, 75, 243, 0.12);
		transition: transform 0.32s ease;
		animation: none;
	}

	.sidebar-hanger.is-open .sidebar-hanger-panel {
		transform: translateY(0);
	}

	.sidebar-hanger-panel[hidden] {
		display: block !important;
		visibility: hidden;
		pointer-events: none;
	}

	.sidebar-hanger.is-open .sidebar-hanger-panel[hidden] {
		visibility: visible;
		pointer-events: auto;
	}

	.sidebar-hanger-tab {
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
		z-index: 9999;
	}
}

@media (max-width: 576px) {
	.sidebar-hanger-tab {
		width: 38px;
		font-size: 0.6rem;
		padding: 0.75rem 0.35rem;
	}
}

/* Breadcrumb */
.page-breadcrumb {
	color: #6a8098;
	font-size: 0.9rem;
}

.page-breadcrumb a {
	color: #8899aa;
	text-decoration: none;
	transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
	color: #00f5d4;
}

/* Pagination */
.pagination-cyber .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	margin: 0 0.25rem;
	padding: 0 0.75rem;
	border-radius: 8px;
	border: 1px solid rgba(0, 245, 212, 0.15);
	color: #8899aa;
	text-decoration: none;
	transition: all 0.3s ease;
}

.pagination-cyber .page-numbers:hover,
.pagination-cyber .page-numbers.current {
	border-color: rgba(0, 245, 212, 0.4);
	color: #00f5d4;
	background: rgba(0, 245, 212, 0.08);
}

/* Responsive */
@media (max-width: 992px) {
	.hero-title { font-size: 2.8rem; }
	.section-title { font-size: 2rem; }
}

@media (max-width: 768px) {
	.live-status-sub,
	.live-status-sep {
		display: none !important;
	}
	.live-status-meta {
		font-size: 0.68rem;
	}
	.hero-title { font-size: 2.2rem; }
	.testimonial-cyber .quote-text { font-size: 1.1rem; }
	.testimonial-cyber { padding: 1.5rem; }
	.stat-number { font-size: 1.8rem; }
}
