:root {
 --bg-deep: #060a10;
 --bg-panel: #0b1120;
 --bg-card: #0f1929;
 --accent-blue: #1a8fff;
 --accent-cyan: #00d4ff;
 --accent-red: #e8293a;
 --accent-glow: #0a6ef5;
 --text-primary: #e8f0fe;
 --text-secondary: #7a9cc8;
 --text-dark: #2e2e2e;
 --text-white: #ffffff;
 --text-muted: #3d5a7a;
 --border: rgba(26,143,255,0.18);
 --border-bright: rgba(0,212,255,0.35);
 --border-white: rgba(255,255,255,1);
}
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Exo 2', sans-serif;
	background: var(--bg-deep);
	color: var(--text-primary);
	overflow-x: hidden;
	line-height: 1.6;
}
/* ─── GRID OVERLAY ─── */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: linear-gradient(rgba(26,143,255,0.04) 1px, transparent 1px),  linear-gradient(90deg, rgba(26,143,255,0.04) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
	z-index: 0;
}
/* ─── NAV ─── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
	height: 70px;
	background: rgba(6,10,16,0.85);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
}
.nav-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}
.nav-logo img {
	height: 62px;
	width: auto;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
}
.nav-links a {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	font-size: 0.88rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.2s;
}
.nav-links a:hover {
	color: var(--accent-cyan);
}
.nav-cta {
	background: linear-gradient(135deg, var(--accent-glow), var(--accent-cyan));
	color: #fff !important;
	padding: 9px 22px;
	border-radius: 4px;
	font-weight: 700 !important;
	transition: box-shadow 0.3s, transform 0.2s !important;
}
.nav-cta:hover {
	box-shadow: 0 0 20px rgba(0,212,255,0.5);
	transform: translateY(-1px);
	color: #fff !important;
}
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px;
}
.hamburger span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--accent-cyan);
	transition: all 0.3s;
}
/* ─── HERO ─── */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 100px 5% 60px;
	overflow: hidden;
}
.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
}
.hero-orb-1 {
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(10,110,245,0.25) 0%, transparent 70%);
	top: -200px;
	right: -100px;
}
.hero-orb-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(232,41,58,0.12) 0%, transparent 70%);
	bottom: -100px;
	left: 5%;
}
.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border: 1px solid var(--border-bright);
	border-radius: 100px;
	font-family: 'Space Mono', monospace;
	font-size: 0.7rem;
	color: var(--accent-cyan);
	letter-spacing: 0.1em;
	margin-bottom: 24px;
	background: rgba(0,212,255,0.05);
}
.hero-badge::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent-cyan);
	box-shadow: 0 0 8px var(--accent-cyan);
	animation: pulse-dot 2s ease-in-out infinite;
}
 @keyframes pulse-dot {
 0%, 100% {
opacity: 1;
transform: scale(1);
}
 50% {
opacity: 0.5;
transform: scale(0.8);
}
}
h1 {
	font-family: 'Rajdhani', sans-serif;
	font-size: clamp(2.8rem, 5vw, 4.4rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.01em;
	margin-bottom: 20px;
}
h1 .line-accent {
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero-sub {
	font-size: 1.08rem;
	color: var(--text-secondary);
	max-width: 500px;
	margin-bottom: 36px;
	line-height: 1.75;
	font-weight: 300;
}
.hero-btns {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}
.btn-primary {
	padding: 14px 32px;
	background: linear-gradient(135deg, var(--accent-glow), var(--accent-cyan));
	color: #fff;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: box-shadow 0.3s, transform 0.2s;
}
.btn-primary:hover {
	box-shadow: 0 0 30px rgba(0,212,255,0.45), 0 8px 24px rgba(0,0,0,0.4);
	transform: translateY(-2px);
}
.btn-secondary {
	padding: 13px 30px;
	background: transparent;
	color: var(--text-primary);
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid var(--border-bright);
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.btn-secondary:hover {
	background: rgba(0,212,255,0.07);
	border-color: var(--accent-cyan);
	box-shadow: 0 0 16px rgba(0,212,255,0.15);
}
.hero-stats {
	display: flex;
	gap: 32px;
}
.stat-item {
	text-align: left;
}
.stat-number {
	font-family: 'Rajdhani', sans-serif;
	font-size: 1.9rem;
	font-weight: 700;
	color: var(--accent-cyan);
	line-height: 1;
}
.stat-label {
	font-size: 0.75rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: 4px;
}
/* ─── HERO VISUAL ─── */
.hero-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tracker-display {
	position: relative;
	max-width: 420px;
	height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid;
	animation: spin-ring linear infinite;
}
.ring-1 {
	width: 380px;
	height: 380px;
	border-color: rgba(0,212,255,0.15);
	animation-duration: 30s;
}
.ring-2 {
	width: 300px;
	height: 300px;
	border-color: rgba(26,143,255,0.2);
	border-style: dashed;
	animation-duration: 20s;
	animation-direction: reverse;
}
.ring-3 {
	width: 220px;
	height: 220px;
	border-color: rgba(0,212,255,0.25);
	animation-duration: 15s;
}
 @keyframes spin-ring {
 from {
transform: rotate(0deg);
}
 to {
transform: rotate(360deg);
}
}
.ring-dot {
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent-cyan);
	box-shadow: 0 0 10px var(--accent-cyan);
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.hero-logo-center {
	position: relative;
	z-index: 2;
	width: 130px;
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-logo-center img {
	width: 120px;
	height: 120px;
	object-fit: contain;
	filter: drop-shadow(0 0 20px rgba(0,212,255,0.4));
	animation: logo-glow 3s ease-in-out infinite;
}
 @keyframes logo-glow {
 0%, 100% {
filter: drop-shadow(0 0 20px rgba(0,212,255,0.4));
}
 50% {
filter: drop-shadow(0 0 35px rgba(0,212,255,0.7));
}
}
.map-ping {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: 'Space Mono', monospace;
	font-size: 0.62rem;
	color: var(--accent-cyan);
	gap: 4px;
	animation: float-ping 4s ease-in-out infinite;
}
.map-ping::before {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent-red);
	box-shadow: 0 0 14px var(--accent-red);
}
.map-ping-1 {
	top: 40px;
	right: 30px;
	animation-delay: 0s;
}
.map-ping-2 {
	bottom: 70px;
	left: 20px;
	animation-delay: 1.5s;
	color: #fff;
}
.map-ping-2::before {
	background: var(--accent-blue);
	box-shadow: 0 0 14px var(--accent-blue);
}
.map-ping-3 {
	top: 120px;
	left: 0;
	animation-delay: 0.8s;
}
.map-ping-3::before {
	background: #00ff9d;
	box-shadow: 0 0 14px #00ff9d;
}
 @keyframes float-ping {
 0%, 100% {
transform: translateY(0);
opacity: 1;
}
 50% {
transform: translateY(-8px);
opacity: 0.7;
}
}
/* ─── SECTION BASE ─── */
section {
	position: relative;
	z-index: 1;
}
.section-label {
	font-family: 'Space Mono', monospace;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent-blue);
	margin-bottom: 12px;
}
.section-title {
	font-family: 'Rajdhani', sans-serif;
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	font-weight: 700;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
}
.section-sub {
	color: var(--text-secondary);
	font-size: 1.02rem;
	max-width: 560px;
	font-weight: 300;
	line-height: 1.7;
}
/* ─── FEATURES ─── */
.features {
	padding: 100px 5%;
	/*background: linear-gradient(180deg, transparent, rgba(11,17,32,0.8), transparent);*/
	background: #fff;
}
.features-header {
	text-align: center;
	margin-bottom: 64px;
}
.features-header .section-sub {
	margin: 0 auto;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	max-width: 1200px;
	margin: 0 auto;
	border: 1px solid var(--border);
}
.feature-card {
	padding: 40px 32px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	position: relative;
	overflow: hidden;
	transition: background 0.3s, border-color 0.3s;
}
.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
	opacity: 0;
	transition: opacity 0.3s;
}
.feature-card:hover {
	background: var(--bg-card);
	border-color: var(--border-bright);
}
.feature-card:hover::before {
	opacity: 1;
}
.feature-icon {
	width: 52px;
	height: 52px;
	background: rgba(26,143,255,0.1);
	border: 1px solid var(--border);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	font-size: 1.5rem;
	transition: background 0.3s, box-shadow 0.3s;
}
.feature-card:hover .feature-icon {
	background: rgba(0,212,255,0.12);
	box-shadow: 0 0 20px rgba(0,212,255,0.2);
}
.feature-title {
	font-family: 'Rajdhani', sans-serif;
	font-size: 1.18rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 12px;
	text-transform: uppercase;
}
.feature-desc {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.7;
	font-weight: 300;
}
.feature-number {
	position: absolute;
	bottom: 16px;
	right: 20px;
	font-family: 'Space Mono', monospace;
	font-size: 3.5rem;
	font-weight: 700;
	color: rgba(26,143,255,0.06);
	line-height: 1;
}
/* ─── HOW IT WORKS ─── */
.how-it-works {
	padding: 100px 5%;
}
.hiw-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.steps-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-top: 48px;
}
.step {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 24px;
	border: 1px solid transparent;
	border-radius: 8px;
	transition: border-color 0.3s, background 0.3s;
	cursor: default;
}
.step:hover {
	border-color: var(--border);
	background: rgba(15,25,41,0.6);
}
.step-num {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--accent-glow), var(--accent-cyan));
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Space Mono', monospace;
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
	box-shadow: 0 4px 16px rgba(0,212,255,0.3);
}
.step-content h4 {
	font-family: 'Rajdhani', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.step-content p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 1.6;
}
.hiw-visual {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.dashboard-mock {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
}
.dash-topbar {
	background: rgba(26,143,255,0.07);
	border-bottom: 1px solid var(--border);
	padding: 12px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.dash-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}
.dash-body {
	padding: 20px;
}
.dash-body img{
	max-width:520px;
	width: 100%;
}
.dash-map-area {
	background: linear-gradient(135deg, #0a1628, #0d1f38);
	border: 1px solid var(--border);
	border-radius: 8px;
	height: 160px;
	margin-bottom: 16px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.map-grid-lines {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(26,143,255,0.07) 1px, transparent 1px),  linear-gradient(90deg, rgba(26,143,255,0.07) 1px, transparent 1px);
	background-size: 25px 25px;
}
.map-center-dot {
	position: relative;
	z-index: 2;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--accent-cyan);
	box-shadow: 0 0 0 4px rgba(0,212,255,0.2), 0 0 20px rgba(0,212,255,0.4);
	animation: pulse-map 2s ease-in-out infinite;
}
 @keyframes pulse-map {
 0%, 100% {
box-shadow: 0 0 0 4px rgba(0,212,255,0.2), 0 0 20px rgba(0,212,255,0.4);
}
 50% {
box-shadow: 0 0 0 12px rgba(0,212,255,0.08), 0 0 30px rgba(0,212,255,0.6);
}
}
.map-pins-mock {
	position: absolute;
	inset: 0;
	z-index: 2;
}
.mock-pin {
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent-red);
	box-shadow: 0 0 8px var(--accent-red);
}
.mock-pin:nth-child(1) {
	top: 30%;
	left: 25%;
}
.mock-pin:nth-child(2) {
	top: 60%;
	right: 20%;
	background: #00ff9d;
	box-shadow: 0 0 8px #00ff9d;
}
.mock-pin:nth-child(3) {
	top: 20%;
	right: 35%;
	background: var(--accent-blue);
	box-shadow: 0 0 8px var(--accent-blue);
}
.dash-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.dash-metric {
	background: rgba(26,143,255,0.06);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 12px;
}
.dm-label {
	font-size: 0.65rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 4px;
}
.dm-value {
	font-family: 'Space Mono', monospace;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--accent-cyan);
}
/* ─── PRICING ─── */
.pricing {
	padding: 100px 5%;
	/*background: linear-gradient(180deg, transparent, rgba(11,17,32,0.7), transparent);*/
	background:#ffffff;
}
.pricing-header {
	text-align: center;
	margin-bottom: 64px;
}
.pricing-header .section-sub {
	margin: 0 auto;
}
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
}
.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 40px 32px;
	position: relative;
	transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.pricing-card.featured {
	border-color: var(--accent-cyan);
	/*background: linear-gradient(180deg, rgba(0,212,255,0.07), var(--bg-card));*/
	box-shadow: 0 0 40px rgba(0,212,255,0.1);
}
.featured-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--accent-glow), var(--accent-cyan));
	color: #fff;
	font-family: 'Space Mono', monospace;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 4px 14px;
	border-radius: 100px;
	text-transform: uppercase;
}
.plan-name {
	font-family: 'Rajdhani', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--text-secondary);
	margin-bottom: 16px;
}
.plan-price {
	font-family: 'Rajdhani', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1;
	margin-bottom: 6px;
}
.plan-price span {
	font-size: 1.2rem;
	color: var(--text-secondary);
	vertical-align: super;
	font-weight: 400;
}
.plan-period {
	font-size: 0.82rem;
	color: var(--text-muted);
	margin-bottom: 28px;
}
.plan-divider {
	height: 1px;
	background: var(--border);
	margin-bottom: 28px;
}
.plan-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 32px;
}
.plan-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: var(--text-secondary);
	font-weight: 300;
}
.plan-features li::before {
	content: '✓';
	width: 18px;
	height: 18px;
	background: rgba(0,212,255,0.1);
	border: 1px solid rgba(0,212,255,0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	color: var(--accent-cyan);
	flex-shrink: 0;
	font-weight: 700;
	text-align: center;
	line-height: 18px;
}
/* ─── FORM SECTION ─── */
.contact-section {
	padding: 100px 5%;
}
.contact-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: start;
}
.contact-info h2 {
	font-family: 'Rajdhani', sans-serif;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 20px;
}
.contact-info p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	font-weight: 300;
	line-height: 1.75;
	margin-bottom: 40px;
}
.contact-channels {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.channel {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 8px;
	transition: border-color 0.3s;
}
.channel:hover {
	border-color: var(--border-bright);
}
.channel-icon {
	width: 36px;
	height: 36px;
	background: rgba(0,212,255,0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	flex-shrink: 0;
}
.channel-label {
	font-size: 0.72rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 2px;
}
.channel-value {
	font-size: 0.92rem;
	color: var(--text-primary);
	font-weight: 500;
}
/* ─── FORM ─── */
.contact-form-wrap {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 44px 40px;
	position: relative;
	overflow: hidden;
}
.contact-form-wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-glow), var(--accent-cyan), var(--accent-glow));
}
.form-title {
	font-family: 'Rajdhani', sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.form-subtitle {
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 32px;
	font-weight: 300;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}
.form-group label {
	font-family: 'Rajdhani', sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-secondary);
}
.form-group input,  .form-group select,  .form-group textarea {
	background: rgba(26,143,255,0.05);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 13px 16px;
	color: var(--text-primary);
	font-family: 'Exo 2', sans-serif;
	font-size: 0.93rem;
	font-weight: 300;
	transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
	outline: none;
	width: 100%;
}
 .form-group input::placeholder,  .form-group textarea::placeholder {
color: var(--text-muted);
}
.form-group input:focus,  .form-group select:focus,  .form-group textarea:focus {
	border-color: var(--accent-cyan);
	background: rgba(0,212,255,0.05);
	box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.form-group select {
	cursor: pointer;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a9cc8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
}
.form-group select option {
	background: var(--bg-panel);
	color: var(--text-primary);
}
.form-group textarea {
	resize: vertical;
	min-height: 110px;
}
.form-submit {
	width: 100%;
	padding: 15px 32px;
	background: linear-gradient(135deg, var(--accent-glow), var(--accent-cyan));
	color: #fff;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	margin-top: 8px;
	transition: box-shadow 0.3s, transform 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.form-submit:hover {
	box-shadow: 0 0 30px rgba(0,212,255,0.45);
	transform: translateY(-1px);
}
.form-note {
	text-align: center;
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-top: 14px;
}
/* ─── TESTIMONIALS ─── */
.testimonials {
	padding: 80px 5%;
	background: linear-gradient(180deg, transparent, rgba(11,17,32,0.7));
}
.testimonials-header {
	text-align: center;
	margin-bottom: 56px;
}
.testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
}
.testi-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 30px;
	transition: border-color 0.3s;
}
.testi-card:hover {
	border-color: var(--border-bright);
}
.testi-stars {
	color: #f5c842;
	font-size: 0.85rem;
	margin-bottom: 16px;
	letter-spacing: 2px;
}
.testi-text {
	font-size: 0.9rem;
	color: var(--text-secondary);
	font-weight: 300;
	line-height: 1.75;
	margin-bottom: 22px;
	font-style: italic;
}
.testi-author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.testi-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-glow), var(--accent-cyan));
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: #fff;
}
.testi-name {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
}
.testi-role {
	font-size: 0.75rem;
	color: var(--text-muted);
}
/* ─── FOOTER ─── */
footer {
	background: var(--bg-panel);
	border-top: 1px solid var(--border);
	padding: 60px 5% 32px;
}
.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
}
.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}
.footer-brand img {
	height: 60px;
	margin-bottom: 16px;
}
.footer-brand p {
	font-size: 0.88rem;
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 24px;
}
.footer-social {
	display: flex;
	gap: 10px;
}
.social-btn {
	width: 34px;
	height: 34px;
	border: 1px solid var(--border-white);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	color: var(--text-white);
	text-decoration: none;
	transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-btn:hover {
	border-color: var(--accent-cyan);
	color: var(--accent-cyan);
	background: rgba(0,212,255,0.08);
}
.footer-col h5 {
	font-family: 'Rajdhani', sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--text-primary);
	margin-bottom: 20px;
}
.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-col a {
	font-size: 0.88rem;
	color: var(--text-white);
	text-decoration: none;
	font-weight: 300;
	transition: color 0.2s;
}
.footer-col a:hover {
	color: var(--accent-cyan);
}
.footer-bottom {
	border-top: 1px solid var(--border);
	padding-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-bottom p {
	font-size: 0.8rem;
	color: var(--text-white);
}
.footer-bottom span {
	color: var(--accent-cyan);
}
/* ─── SCROLL ANIMATIONS ─── */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
	opacity: 1;
	transform: none;
}
/* ─── SUCCESS MSG ─── */
.success-msg {
	display: none;
	text-align: center;
	padding: 24px;
	background: rgba(0,212,255,0.07);
	border: 1px solid var(--accent-cyan);
	border-radius: 8px;
	margin-top: 16px;
	color: var(--accent-cyan);
	font-family: 'Rajdhani', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.06em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
.features-grid {
	grid-template-columns: repeat(2, 1fr);
}
.footer-top {
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.pricing-grid {
	grid-template-columns: 1fr;
	max-width: 420px;
}
}

@media (max-width: 768px) {
nav {
	padding: 0 5%;
}
.nav-links {
	display: none;
}
.nav-links.open {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 70px;
	left: 0;
	right: 0;
	background: var(--bg-deep);
	border-bottom: 1px solid var(--border);
	padding: 24px 5%;
	gap: 20px;
}
.hamburger {
	display: flex;
}
.hero-inner {
	grid-template-columns: 1fr;
}
.hero-visual {
	/*display: none;*/
}
.hero {
	padding: 100px 5% 60px;
}
.features-grid {
	grid-template-columns: 1fr;
}
.hiw-inner {
	grid-template-columns: 1fr;
	gap: 48px;
}
.contact-inner {
	grid-template-columns: 1fr;
	gap: 48px;
}
.contact-form-wrap {
	padding: 28px 22px;
}
.form-row {
	grid-template-columns: 1fr;
}
.testi-grid {
	grid-template-columns: 1fr;
}
.footer-top {
	grid-template-columns: 1fr;
	gap: 32px;
}
.footer-bottom {
	flex-direction: column;
	gap: 12px;
	text-align: center;
}
.hero-btns {
	flex-direction: column;
}
.btn-primary, .btn-secondary {
	width: 100%;
	justify-content: center;
}
}
.fc-01{
	color:var(--bg-card);
}
.fc-02{
	color:var(--text-dark);
}