:root {
	--bg-dark: #050510;
	--bg-panel: rgba(20, 20, 40, 0.6);
	--primary: #FF7F50;
	/* Coral */
	--primary-glow: rgba(255, 127, 80, 0.4);
	--secondary: #B0C4DE;
	/* Light Steel Blue */
	--secondary-glow: rgba(176, 196, 222, 0.4);
	--text-main: #ffffff;
	--text-muted: #a0a0b0;
	--font-main: 'Outfit', sans-serif;
	--glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
	background-color: var(--bg-dark);
	color: var(--text-main);
	font-family: var(--font-main);
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Header */
.glass-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(5, 5, 16, 0.8);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--glass-border);
	padding: 1rem 0;
}

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

.logo {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.brand-logo {
	height: 60px;
	width: auto;
}

.highlight {
	color: var(--primary);
	text-shadow: 0 0 10px var(--primary-glow);
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.nav-links a:not(.btn):hover {
	color: var(--primary);
}

/* Buttons */
.btn {
	padding: 0.8rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	display: inline-block;
}

.primary-btn {
	background: var(--primary);
	color: #fff;
	border: none;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.primary-btn::before {
	content: '';
	position: absolute;
	top: 1px;
	left: 1px;
	right: 1px;
	bottom: 1px;
	background: var(--bg-dark);
	border-radius: 49px;
	z-index: -1;
	transition: opacity 0.3s ease;
	opacity: 0.1;
}

.primary-btn.glow-effect {
	box-shadow: 0 0 20px var(--secondary-glow);
}

.primary-btn:hover {
	box-shadow: 0 0 30px var(--primary-glow);
	transform: translateY(-2px);
}

.secondary-btn {
	border: 1px solid var(--secondary);
	color: var(--secondary);
	background: rgba(176, 196, 222, 0.05);
}

.secondary-btn:hover {
	border-color: var(--secondary);
	background: rgba(176, 196, 222, 0.15);
	box-shadow: 0 0 15px var(--secondary-glow);
}

/* Hero - Centered with Background Image */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 80px;
	background: url('hero-bg.png') no-repeat center center;
	background-size: cover;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(5, 5, 16, 0.8) 0%, rgba(5, 5, 16, 0.55) 40%, rgba(5, 5, 16, 0.85) 100%);
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-content h1 {
	font-size: 3.8rem;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.gradient-text {
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	color: var(--primary);
}

.text-secondary {
	color: var(--secondary);
}

.paladem-link {
	color: var(--primary);
	text-decoration: underline;
	text-decoration-color: rgba(176, 196, 222, 0.3);
}

.hero-content p {
	font-size: 1.2rem;
	color: var(--text-muted);
	max-width: 650px;
	margin: 0 auto 2.5rem;
}

.cta-group {
	display: flex;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

/* Phone CTA in Hero */
.phone-cta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.8rem 1.8rem;
	border: 2px solid var(--secondary);
	border-radius: 50px;
	color: var(--secondary);
	font-weight: 700;
	font-size: 1.1rem;
	background: rgba(176, 196, 222, 0.08);
	transition: all 0.3s ease;
	animation: ringPulse 3s ease-in-out infinite;
}

.phone-cta:hover {
	background: rgba(176, 196, 222, 0.2);
	box-shadow: 0 0 25px var(--secondary-glow);
	transform: translateY(-2px);
}

.phone-icon {
	font-size: 1.2rem;
	animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
	0%, 100% { transform: rotate(0); }
	10%, 30% { transform: rotate(-10deg); }
	20%, 40% { transform: rotate(10deg); }
	50% { transform: rotate(0); }
}

@keyframes ringPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(176, 196, 222, 0); }
	50% { box-shadow: 0 0 20px 4px rgba(176, 196, 222, 0.15); }
}

/* Stats Bar */
.stats-bar {
	background: linear-gradient(135deg, rgba(176, 196, 222, 0.08), rgba(176, 196, 222, 0.02));
	border-top: 1px solid rgba(176, 196, 222, 0.15);
	border-bottom: 1px solid rgba(176, 196, 222, 0.15);
	padding: 3rem 0;
}

.stats-grid {
	display: flex;
	justify-content: center;
	gap: 4rem;
	flex-wrap: wrap;
}

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

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary);
	display: block;
}

.stat-label {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin-top: 0.25rem;
}

/* Sections */
section {
	padding: 6rem 0;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.section-subtitle {
	color: var(--text-muted);
	font-size: 1.1rem;
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

.mt-2 {
	margin-top: 2rem;
}

.about-logo-text {
	width: 100%;
	max-width: 400px;
	height: auto;
	margin-bottom: 0.5rem;
}

/* Card Grid */
.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.quad-grid {
	grid-template-columns: repeat(2, 1fr);
}

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

.tech-card {
	background: var(--bg-panel);
	border: 1px solid var(--glass-border);
	padding: 2rem;
	border-radius: 16px;
	transition: transform 0.3s ease;
}

.tech-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary);
}

.icon-box {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.tech-card h3 {
	margin-bottom: 0.5rem;
	color: var(--text-main);
}

.tech-card p {
	color: var(--text-muted);
	font-size: 0.95rem;
}

/* Industry Strip */
.industry-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.industry-card {
	background: var(--bg-panel);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.industry-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary);
}

.industry-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: block;
}

.industry-card h3 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.industry-card p {
	color: var(--text-muted);
	font-size: 0.85rem;
}

@media (max-width: 900px) {
	.industry-strip {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 500px) {
	.industry-strip {
		grid-template-columns: 1fr;
	}
}

/* Demo Section */
.demo-section {
	text-align: center;
	padding: 5rem 0;
	background: linear-gradient(180deg, transparent, rgba(176, 196, 222, 0.03), transparent);
}

.demo-phone {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary);
	display: block;
	margin: 1rem 0;
	letter-spacing: 0.02em;
}

.demo-subtitle {
	color: var(--text-muted);
	font-size: 1rem;
	margin-top: 0.5rem;
}

/* Animation Utilities */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s forwards;
}

.delay-1 {
	animation-delay: 0.2s;
}

.delay-2 {
	animation-delay: 0.4s;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* FAQ Section */
.faq-section {
	background: var(--bg-panel);
	border-top: 1px solid var(--glass-border);
	border-bottom: 1px solid var(--glass-border);
}

.faq-list {
	max-width: 860px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-list details {
	background: rgba(20, 20, 40, 0.5);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-list details[open] {
	border-color: var(--primary);
	background: rgba(20, 20, 40, 0.75);
	box-shadow: 0 0 0 1px var(--primary-glow);
}

.faq-list summary {
	list-style: none;
	cursor: pointer;
	padding: 1.25rem 1.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-main);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	transition: color 0.3s ease;
}

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

.faq-list summary::after {
	content: "";
	flex: 0 0 10px;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--primary);
	border-bottom: 2px solid var(--primary);
	transform: rotate(45deg);
	transition: transform 0.3s ease;
	margin-right: 4px;
	margin-top: -4px;
}

.faq-list details[open] summary::after {
	transform: rotate(-135deg);
	margin-top: 2px;
}

.faq-list summary:hover {
	color: var(--primary);
}

.faq-list details > p {
	padding: 0 1.5rem 1.5rem 1.5rem;
	color: var(--text-muted);
	line-height: 1.75;
	font-size: 1rem;
	margin: 0;
}

/* Footer */
footer {
	padding: 2rem 0;
	border-top: 1px solid var(--glass-border);
	color: var(--text-muted);
	font-size: 0.9rem;
}

.footer-content {
	display: flex;
	justify-content: space-between;
}

.footer-right {
	display: flex;
	gap: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
	.glass-header nav {
		flex-direction: column;
		gap: 1rem;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.nav-links {
		gap: 1rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.stats-grid {
		gap: 2rem;
	}

	.demo-phone {
		font-size: 2.2rem;
	}
}