/* Private Technologies - Custom Styles */
:root {
	--primary-500: #4f46e5;
	--primary-600: #4338ca;
	--primary-700: #3730a3;
	--accent-500: #f97316;
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-300: #d1d5db;
	--gray-500: #6b7280;
	--gray-700: #374151;
	--gray-900: #0f172a;
	--radius-md: 12px;
	--radius-lg: 20px;
	--shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.08);
	--shadow-card: 0 10px 35px rgba(79, 70, 229, 0.18);
	--font-sans: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	color: var(--gray-700);
	background: var(--gray-50);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

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

.container {
	width: min(1200px, 92vw);
	margin: 0 auto;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: var(--radius-md);
	font-weight: 600;
	padding: 14px 26px;
	font-size: 0.95rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border: 0;
	cursor: pointer;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
	color: #fff;
	box-shadow: var(--shadow-card);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 45px rgba(79, 70, 229, 0.28);
}

.btn-accent {
	background: var(--accent-500);
	color: #fff;
}

.btn-outline {
	border: 1px solid rgba(255, 255, 255, 0.65);
	color: #fff;
	background: transparent;
}

.section {
	padding: 90px 0;
}

.section-split {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 40px;
	align-items: center;
}

.section-heading {
	text-align: center;
	margin-bottom: 48px;
}

.section-heading span {
	display: inline-block;
	color: var(--accent-500);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
}

.section-heading h2 {
	font-size: clamp(2rem, 4vw, 2.8rem);
	color: var(--gray-900);
	margin: 0 0 16px;
}

.section-heading p {
	max-width: 640px;
	margin: 0 auto;
	color: var(--gray-500);
}

/* Header */
.hero {
	position: relative;
	padding: 140px 0 120px;
	overflow: hidden;
	background: radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.25), transparent 55%),
	linear-gradient(135deg, var(--gray-900), #1e1b4b);
	color: #fff;
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(45deg, rgba(79, 70, 229, 0.4), transparent 60%);
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	align-items: center;
}

.hero h1 {
	font-size: clamp(2.8rem, 5vw, 3.6rem);
	margin: 0 0 20px;
	color: #fff;
	line-height: 1.15;
}

.hero p {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: 28px;
	max-width: 520px;
}

.hero-stat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 18px;
	margin-top: 36px;
}

.hero-stat {
	background: rgba(15, 23, 42, 0.45);
	padding: 18px;
	border-radius: var(--radius-md);
	backdrop-filter: blur(8px);
}

.hero-stat strong {
	display: block;
	font-size: 1.6rem;
	color: #fff;
}

.hero-visual {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 35px 60px rgba(15, 23, 42, 0.3);
}

.hero-visual img {
	width: 100%;
	height: auto;
}

.illustration {
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	background: #fff;
	padding: 26px;
}

.illustration img {
	width: 100%;
	height: auto;
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	padding: 18px 0;
	transition: background 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
	background: rgba(15, 23, 42, 0.92);
	backdrop-filter: blur(14px);
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
}

.navbar .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand-badge {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--accent-500), var(--primary-600));
	display: grid;
	place-items: center;
	font-weight: 700;
	color: #fff;
	font-size: 1.05rem;
}

.brand h1 {
	font-size: 1.2rem;
	margin: 0;
	color: #fff;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 18px;
}

.nav-links a {
	color: rgba(255, 255, 255, 0.82);
	font-weight: 500;
	padding: 8px 14px;
	border-radius: 10px;
	transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

/* Cards */
.grid {
	display: grid;
	gap: 24px;
}

.grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 32px;
	box-shadow: var(--shadow-soft);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

.card h3 {
	margin: 0 0 12px;
	color: var(--gray-900);
	font-size: 1.3rem;
}

.card p {
	margin: 0;
	color: var(--gray-500);
}

.card .icon {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: rgba(79, 70, 229, 0.12);
	color: var(--primary-500);
	font-size: 1.4rem;
	margin-bottom: 18px;
}

/* Partners */
.partner-row {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
}

.partner-tag {
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(79, 70, 229, 0.12);
	color: var(--primary-600);
	font-weight: 600;
	letter-spacing: 0.02em;
}

/* Commander */
.product-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 32px;
	box-shadow: var(--shadow-soft);
	display: flex;
	flex-direction: column;
	gap: 22px;
	border: 1px solid transparent;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-card);
	border: 1px solid rgba(79, 70, 229, 0.25);
}

.product-price {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-600);
}

.product-features {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.product-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--gray-500);
}

.product-features li span {
	display: inline-flex;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(79, 70, 229, 0.12);
	color: var(--primary-600);
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
}

/* Payment */
.payment-panel {
	background: #fff;
	padding: 40px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	max-width: 640px;
	margin: 0 auto;
}

.payment-status {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}

.payment-status .status-line {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--gray-500);
	font-weight: 500;
}

.payment-status .status-line span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--accent-500);
	box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

/* Contact */
.contact-cards {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-item {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow-soft);
}

.contact-item h4 {
	margin: 0 0 8px;
	color: var(--gray-900);
}

.contact-item p {
	margin: 0;
	color: var(--gray-500);
}

/* Footer */
.footer {
	background: #0f172a;
	color: rgba(255, 255, 255, 0.7);
	padding: 70px 0 30px;
}

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

.footer h3 {
	color: #fff;
	margin: 0 0 16px;
}

.footer-bottom {
	border-top: 1px solid rgba(148, 163, 184, 0.2);
	padding-top: 24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 18px;
	font-size: 0.9rem;
}

/* Utilities */
.badge {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(79, 70, 229, 0.15);
	color: var(--primary-600);
	font-size: 0.85rem;
	font-weight: 600;
}

.highlight {
	color: var(--accent-500);
}

.bg-light {
	background: #fff;
}

.bg-muted {
	background: var(--gray-100);
}

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

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

@media (max-width: 860px) {
	.nav-links {
		display: none;
	}
}

@media (max-width: 680px) {
	.hero {
		padding: 120px 0 90px;
	}
	.section {
		padding: 70px 0;
	}
	.section-split {
		gap: 30px;
	}
	.card,
	.product-card,
	.payment-panel,
	.contact-item {
		padding: 24px;
	}
}
