:root {
	--blue-dark: #0a2c5e;
	--blue-mid: #1a4fa0;
	--blue-light: #2e6cc7;
	--orange: #f47320;
	--orange-dark: #d45e0a;
	--orange-light: #ffa04d;
	--white: #ffffff;
	--off-white: #f5f7fb;
	--gray-100: #eef1f7;
	--gray-300: #c8d0df;
	--gray-600: #4a5568;
	--gray-900: #1a202c;
	--footer-bg: #061829;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Segoe UI', system-ui, sans-serif;
	color: var(--gray-900);
	overflow-x: hidden;
}

a {
	text-decoration: none;
}

/* ── NAVBAR ── */
.navbar {
	background: var(--blue-dark);
	padding: 0 0;
	border-bottom: 3px solid var(--orange);
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.brand-icon {
	width: 38px;
	height: 38px;
	background: var(--orange);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-icon i {
	color: #fff;
	font-size: 20px;
}

.brand-name {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.5px;
}

.brand-name span {
	color: var(--orange);
}

.navbar-nav .nav-link {
	color: rgba(255, 255, 255, 0.85) !important;
	font-size: 14px;
	font-weight: 500;
	padding: 24px 16px !important;
	transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
	color: var(--orange-light) !important;
}

.nav-cta {
	background: var(--orange) !important;
	color: #fff !important;
	border-radius: 6px;
	padding: 10px 22px !important;
	margin-left: 8px;
	font-weight: 600;
}

.nav-cta:hover {
	background: var(--orange-dark) !important;
}

.navbar-toggler {
	border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
	filter: invert(1);
}

/* ── BANNER ── */
.banner {
	background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, #1e3a6e 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.banner::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: rgba(244, 115, 32, 0.12);
	pointer-events: none;
}

.banner::after {
	content: '';
	position: absolute;
	bottom: -120px;
	left: -60px;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	pointer-events: none;
}

.banner-badge {
	display: inline-block;
	background: rgba(244, 115, 32, 0.18);
	border: 1px solid var(--orange);
	color: var(--orange-light);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 24px;
}

.banner h1 {
	font-size: clamp(32px, 5vw, 58px);
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 20px;
}

.banner h1 span {
	color: var(--orange);
}

.banner p.lead {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.7;
	max-width: 520px;
	margin-bottom: 36px;
}

.btn-orange {
	background: var(--orange);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	font-size: 15px;
	font-weight: 600;
	transition: background 0.2s, transform 0.15s;
}

.btn-orange:hover {
	background: var(--orange-dark);
	color: #fff;
	transform: translateY(-1px);
}

.btn-outline-light-custom {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 8px;
	padding: 12px 30px;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.2s;
}

.btn-outline-light-custom:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.banner-visual {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	padding: 40px 32px;
	text-align: center;
}

.stat-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 32px;
}

.stat-box {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	padding: 20px;
	text-align: center;
}

.stat-box .num {
	font-size: 32px;
	font-weight: 800;
	color: var(--orange);
}

.stat-box .lbl {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 4px;
}

.banner-icon-main {
	font-size: 80px;
	color: var(--orange-light);
	margin-bottom: 12px;
	display: block;
}

/* ── ABOUT ── */
.section-eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 12px;
}

.section-title {
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 800;
	color: var(--blue-dark);
	line-height: 1.2;
	margin-bottom: 16px;
}

.section-sub {
	font-size: 16px;
	color: var(--gray-600);
	line-height: 1.7;
}

.about-line {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--gray-100);
}

.about-line:last-child {
	border-bottom: none;
}

.about-icon {
	width: 46px;
	height: 46px;
	min-width: 46px;
	border-radius: 10px;
	background: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-icon i {
	color: #fff;
	font-size: 22px;
}

.about-line h5 {
	font-size: 16px;
	font-weight: 700;
	color: var(--blue-dark);
	margin-bottom: 4px;
}

.about-line p {
	font-size: 14px;
	color: var(--gray-600);
	margin: 0;
	line-height: 1.6;
}

.about-img-wrap {
	background: var(--blue-dark);
	border-radius: 20px;
	overflow: hidden;
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 16px;
}

.about-img-wrap i {
	font-size: 90px;
	color: var(--orange);
}

.about-img-wrap p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
}

/* ── PRODUCTS ── */
.products-section {
	background: var(--off-white);
}

/* Each product row */
.prod-row {
	display: flex;
	align-items: center;
	gap: 60px;
	background: #fff;
	border-radius: 24px;
	border: 1px solid var(--gray-300);
	padding: 56px 52px;
	margin-bottom: 28px;
	overflow: hidden;
}

.prod-row.reverse {
	flex-direction: row-reverse;
	background: var(--blue-dark);
}

/* Phone mockup side */
.prod-phone-wrap {
	flex: 0 0 260px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.phone-frame {
	width: 230px;
	height: 460px;
	background: var(--blue-dark);
	border-radius: 36px;
	border: 6px solid #1a3a6a;
	box-shadow: 0 8px 40px rgba(10, 44, 94, 0.22), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
}

.prod-row.reverse .phone-frame {
	background: #fff;
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.phone-notch {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 22px;
	background: inherit;
	border-radius: 0 0 14px 14px;
	z-index: 10;
}

.prod-row.reverse .phone-notch {
	background: #fff;
}

.phone-notch::after {
	content: '';
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.prod-row.reverse .phone-notch::after {
	background: rgba(0, 0, 0, 0.15);
}

.phone-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
}

.phone-home-btn {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 36px;
	height: 5px;
	background: rgba(255, 255, 255, 0.25);
	border-radius: 3px;
}

.prod-row.reverse .phone-home-btn {
	background: rgba(0, 0, 0, 0.18);
}

/* Content side */
.prod-content {
	flex: 1;
}

.prod-badge {
	display: inline-block;
	background: var(--orange);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}

.prod-content h3 {
	font-size: 28px;
	font-weight: 800;
	color: var(--blue-dark);
	margin-bottom: 10px;
	line-height: 1.2;
}

.prod-row.reverse .prod-content h3 {
	color: #fff;
}

.prod-content .prod-desc {
	font-size: 15px;
	color: var(--gray-600);
	line-height: 1.7;
	margin-bottom: 28px;
}

.prod-row.reverse .prod-content .prod-desc {
	color: rgba(255, 255, 255, 0.72);
}

.feat-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.feat-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--off-white);
	border: 1px solid var(--gray-100);
	border-radius: 10px;
	padding: 10px 14px;
}

.prod-row.reverse .feat-pill {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.1);
}

.feat-pill i {
	color: var(--orange);
	font-size: 18px;
	flex-shrink: 0;
}

.feat-pill span {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue-dark);
}

.prod-row.reverse .feat-pill span {
	color: rgba(255, 255, 255, 0.9);
}

/* Mobile */
@media (max-width: 768px) {
	.prod-row {
		flex-direction: column !important;
		padding: 32px 24px;
		gap: 36px;
	}

	.prod-phone-wrap {
		width: 100%;
	}

	.phone-frame {
		width: 200px;
		height: 400px;
	}

	.feat-list {
		grid-template-columns: 1fr;
	}

	.prod-content h3 {
		font-size: 22px;
	}

	.stat-row {
		grid-template-columns: 1fr 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

/* ── CTA BUTTONS ── */
.cta-section {
	background: var(--blue-dark);
}

.cta-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	padding: 36px 32px;
	text-align: center;
}

.cta-card i {
	font-size: 48px;
	color: var(--orange-light);
	margin-bottom: 16px;
	display: block;
}

.cta-card h4 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
}

.cta-card p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 24px;
}

/* ── PRODUCT URL ── */
.url-section {
	background: var(--gray-100);
}

.url-card {
	background: #fff;
	border: 1px solid var(--gray-300);
	border-radius: 16px;
	overflow: hidden;
}

.url-card-header {
	background: var(--blue-dark);
	padding: 20px 28px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.url-card-header i {
	color: var(--orange);
	font-size: 24px;
}

.url-card-header h5 {
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	margin: 0;
}

.url-card-body {
	padding: 28px;
}

.cred-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.cred-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--gray-600);
	min-width: 90px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cred-value {
	flex: 1;
	background: var(--gray-100);
	border: 1px solid var(--gray-300);
	border-radius: 8px;
	padding: 10px 16px;
	font-size: 15px;
	color: var(--blue-dark);
	font-weight: 500;
	font-family: 'Courier New', monospace;
}

.copy-btn {
	background: var(--orange);
	border: none;
	color: #fff;
	border-radius: 8px;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 16px;
	transition: background 0.2s;
}

.copy-btn:hover {
	background: var(--orange-dark);
}

.url-link {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--gray-100);
	border: 1px solid var(--gray-300);
	border-radius: 8px;
	padding: 12px 16px;
	color: var(--blue-mid);
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 20px;
}

.url-link i {
	color: var(--orange);
	font-size: 18px;
}

/* ── DOWNLOAD APPS ── */
.apps-section {
	background: #fff;
}

.app-card {
	background: var(--gray-100);
	border: 1px solid var(--gray-300);
	border-radius: 20px;
	padding: 40px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: border-color 0.2s, transform 0.2s;
}

.app-card:hover {
	border-color: var(--orange);
	transform: translateY(-4px);
}

.app-logo {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 46px;
}

.app-logo.android {
	background: #d4edda;
	color: #198754;
}

.app-logo.apple {
	background: #f0f0f0;
	color: #333;
}

.app-card h4 {
	font-size: 20px;
	font-weight: 700;
	color: var(--blue-dark);
	margin-bottom: 8px;
}

.app-card p {
	font-size: 14px;
	color: var(--gray-600);
	margin-bottom: 24px;
}

.download-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--blue-dark);
	color: #fff;
	border-radius: 12px;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 600;
	transition: background 0.2s;
}

.download-btn:hover {
	background: var(--blue-light);
	color: #fff;
}

.download-btn.apple-btn {
	background: #1c1c1e;
}

.download-btn.apple-btn:hover {
	background: #3a3a3c;
}

.download-btn i {
	font-size: 22px;
}

.btn-text small {
	font-size: 11px;
	display: block;
	font-weight: 400;
	opacity: 0.75;
}

/* ── FOOTER ── */
footer {
	background: var(--footer-bg);
	color: rgba(255, 255, 255, 0.7);
}

.footer-top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 60px 0 40px;
}

.footer-brand {
	font-size: 24px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
}

.footer-brand span {
	color: var(--orange);
}

.footer-desc {
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 20px;
	max-width: 280px;
}

.social-links {
	display: flex;
	gap: 10px;
}

.social-btn {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.social-btn:hover {
	background: var(--orange);
	color: #fff;
	border-color: var(--orange);
}

.footer-heading {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 20px;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--orange);
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
}

.footer-contact-item i {
	color: var(--orange);
	font-size: 16px;
	margin-top: 2px;
}

.footer-contact-item span {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
}

.footer-bottom {
	padding: 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
}

.footer-bottom-links {
	display: flex;
	gap: 20px;
}

.footer-bottom-links a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	transition: color 0.2s;
}

.footer-bottom-links a:hover {
	color: var(--orange);
}

.divider-orange {
	width: 60px;
	height: 4px;
	background: var(--orange);
	border-radius: 2px;
	margin-bottom: 24px;
}

@media (max-width: 768px) {
	.stat-row {
		grid-template-columns: 1fr 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}
.prod-phone-wrap-desktop{
	flex: 1 0 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}