/* ==========================================================================
   Landing page styles  —  brand colours: #062dec (electric indigo) / #3fbaf0 (sky)
   Redesigned: glassmorphic cards, animated gradient mesh, modern motion.
   ========================================================================== */

:root {
	--indigo: #062dec;
	--sky: #3fbaf0;
	--indigo-deep: #041aa6;
	--brand-gradient: linear-gradient(135deg, #062dec 0%, #3fbaf0 100%);
	--brand-gradient-soft: linear-gradient(135deg, rgba(6, 45, 236, .12) 0%, rgba(63, 186, 240, .12) 100%);
	--ink: #0c1b3f;
	--navy: #062dec;          /* legacy alias used in markup */
	--blue: #3fbaf0;          /* legacy alias used in markup */
	--muted: #5b6585;
	--soft: #f3f6ff;
	--ring: rgba(6, 45, 236, .12);
	--ring-sky: rgba(63, 186, 240, .16);
	--glass: rgba(255, 255, 255, .72);
	--shadow-brand: 0 26px 60px -26px rgba(6, 45, 236, .55);
}

* { scroll-behavior: smooth; }

/* ==========================================================================
   Scroll reveal  —  hiding is applied ONLY when JS adds `.js-reveal` to <html>.
   If JS never runs, or the failsafe/`.reveal-all` kicks in, content stays visible.
   ========================================================================== */
.js-reveal [data-aos] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
	will-change: opacity, transform;
}
.js-reveal [data-aos="fade-left"]  { transform: translateX(46px); }
.js-reveal [data-aos="fade-right"] { transform: translateX(-46px); }
.js-reveal [data-aos="zoom-in"]    { transform: scale(.92); }
.js-reveal [data-aos].revealed { opacity: 1; transform: none; }

/* Failsafe + reduced-motion: show everything instantly, no animation */
.reveal-all [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
	[data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
	* { animation: none !important; }
}

body {
	font-family: 'Poppins', system-ui, -apple-system, sans-serif;
	color: var(--ink);
	background: #ffffff;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -.02em; }
section { position: relative; }
/* Offset anchor jumps so headings aren't hidden behind the fixed navbar */
section[id], header[id], footer[id] { scroll-margin-top: 88px; }

.text-navy { color: var(--indigo) !important; }
.text-blue {
	background: var(--brand-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.bg-soft { background: var(--soft); }

.section-pad { padding: 100px 0; }
.eyebrow {
	display: inline-block;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--indigo);
	background: var(--ring);
	padding: 7px 18px;
	border-radius: 999px;
	margin-bottom: 16px;
	position: relative;
}
.section-title h2 {
	font-size: clamp(1.9rem, 3.6vw, 2.8rem);
	color: var(--ink);
	line-height: 1.15;
}
.section-title p { color: var(--muted); max-width: 640px; margin: 16px auto 0; }

/* Animated gradient utility (used by gradient text / accents) */
.gradient-text {
	background: linear-gradient(120deg, #062dec, #3fbaf0, #062dec);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-brand {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--brand-gradient);
	background-size: 160% auto;
	color: #fff;
	border: none;
	padding: 13px 30px;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	overflow: hidden;
	box-shadow: var(--shadow-brand);
	transition: transform .3s ease, box-shadow .3s ease, background-position .5s ease;
}
.btn-brand::before {
	content: '';
	position: absolute;
	top: 0; left: -120%;
	width: 60%; height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
	transform: skewX(-20deg);
	transition: left .6s ease;
}
.btn-brand:hover {
	color: #fff;
	text-decoration: none;
	transform: translateY(-4px);
	background-position: right center;
	box-shadow: 0 30px 50px -20px rgba(6, 45, 236, .75);
}
.btn-brand:hover::before { left: 130%; }

.btn-outline-brand {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--indigo);
	color: var(--indigo);
	padding: 11px 28px;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	background: transparent;
	transition: all .3s ease;
}
.btn-outline-brand:hover {
	background: var(--brand-gradient);
	border-color: transparent;
	color: #fff;
	text-decoration: none;
	transform: translateY(-4px);
	box-shadow: var(--shadow-brand);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
	transition: all .35s ease;
	padding: 18px 0;
	background: transparent;
}
.navbar.scrolled {
	background: rgba(255, 255, 255, .82);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	box-shadow: 0 10px 36px rgba(6, 45, 236, .1);
	padding: 10px 0;
}
.navbar .nav-link {
	font-weight: 500;
	color: var(--ink) !important;
	margin: 0 6px;
	position: relative;
}
.navbar .nav-link::after {
	content: '';
	position: absolute;
	left: 12px; right: 12px; bottom: 2px;
	height: 2px;
	background: var(--brand-gradient);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .nav-link.active { color: var(--indigo) !important; }
.navbar-brand img { max-width: 52px; }

/* Hamburger toggler (mobile) */
.navbar-toggler {
	border: none;
	padding: 8px 12px;
	border-radius: 14px;
	background: var(--ring);
	color: var(--indigo);
	font-size: 1.5rem;
	line-height: 1;
	display: inline-flex;
	transition: background .25s ease, transform .2s ease;
}
.navbar-toggler:hover { background: var(--brand-gradient); color: #fff; }
.navbar-toggler:active { transform: scale(.94); }
.navbar-toggler:focus { box-shadow: 0 0 0 .25rem var(--ring); outline: none; }

/* ---- Off-canvas drawer styling: BELOW lg only (mobile/tablet) ---- */
@media (max-width: 991.98px) {
	.mobile-offcanvas {
		width: 320px !important;
		max-width: 86vw;
		border: none !important;
		background: #fff;
		box-shadow: -20px 0 50px rgba(6, 45, 236, .14);
	}
	.mobile-offcanvas .offcanvas-header {
		padding: 22px 24px;
		border-bottom: 1px solid #e8edff;
	}
	.mobile-offcanvas .offcanvas-header img { max-width: 50px; }
	.mobile-offcanvas .btn-close {
		background-color: var(--ring);
		border-radius: 50%;
		padding: 12px;
		opacity: 1;
		transition: background-color .2s ease;
	}
	.mobile-offcanvas .btn-close:hover { background-color: var(--ring-sky); }
	.mobile-offcanvas .offcanvas-body {
		display: flex;
		flex-direction: column;
		padding: 18px 20px 28px;
	}
	.mobile-offcanvas .navbar-nav { width: 100%; gap: 4px; margin: 0 0 auto !important; }
	.mobile-offcanvas .nav-link {
		display: flex;
		align-items: center;
		gap: 14px;
		padding: 13px 16px !important;
		margin: 0 !important;
		border-radius: 14px;
		font-weight: 600;
		font-size: 1.02rem;
		color: var(--ink) !important;
		transition: background .2s ease, color .2s ease, padding-left .2s ease;
	}
	.mobile-offcanvas .nav-link i { font-size: 1.2rem; color: var(--indigo); }
	.mobile-offcanvas .nav-link::after { display: none; }
	.mobile-offcanvas .nav-link:hover,
	.mobile-offcanvas .nav-link.active {
		background: var(--brand-gradient-soft);
		color: var(--indigo) !important;
		padding-left: 20px !important;
	}
	.mobile-offcanvas .offcanvas-cta {
		flex-direction: column;
		align-items: stretch !important;
		gap: 12px !important;
		margin-top: 26px;
		padding-top: 22px;
		border-top: 1px solid #e8edff;
	}
	.mobile-offcanvas .offcanvas-cta .btn-brand,
	.mobile-offcanvas .offcanvas-cta .btn-outline-brand { width: 100%; text-align: center; }
}

/* ---- Desktop (lg+): Bootstrap renders the offcanvas inline as a normal navbar ---- */
@media (min-width: 992px) {
	.navbar-nav .nav-link i { display: none; }
	.mobile-offcanvas .offcanvas-cta { gap: 8px; }
}

/* ==========================================================================
   Hero  —  animated gradient mesh + floating orbs
   ========================================================================== */
.hero {
	position: relative;
	padding: 170px 0 100px;
	overflow: hidden;
	background:
		radial-gradient(1100px 620px at 82% -8%, rgba(63, 186, 240, .22), transparent 60%),
		radial-gradient(900px 560px at -5% 12%, rgba(6, 45, 236, .16), transparent 58%),
		linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}
/* Floating decorative orbs */
.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(8px);
	opacity: .5;
	z-index: 0;
	pointer-events: none;
}
.hero-orb.o1 { width: 90px; height: 90px; background: var(--brand-gradient); top: 18%; left: 8%; animation: float 7s ease-in-out infinite; }
.hero-orb.o2 { width: 56px; height: 56px; background: var(--sky); top: 60%; left: 16%; animation: float 9s ease-in-out infinite reverse; }
.hero-orb.o3 { width: 70px; height: 70px; background: var(--indigo); top: 24%; right: 10%; animation: float 8s ease-in-out infinite; }
.hero .container { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); line-height: 1.1; color: var(--ink); }
.hero p.lead { color: var(--muted); font-size: 1.12rem; max-width: 540px; }
.hero .badge-pill {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(255, 255, 255, .8);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(6, 45, 236, .14);
	color: var(--indigo);
	font-weight: 600; padding: 9px 18px; border-radius: 999px; margin-bottom: 24px;
	box-shadow: 0 8px 24px -12px rgba(6, 45, 236, .4);
}
.hero .badge-pill i { color: var(--sky); }

.hero-img-wrap { position: relative; animation: floatY 6s ease-in-out infinite; }
.hero-img-wrap img {
	width: 100%; max-width: 540px; position: relative; z-index: 2;
	filter: drop-shadow(0 36px 60px rgba(6, 45, 236, .28));
}
.hero-blob {
	position: absolute; inset: -6%; z-index: 1;
	background: var(--brand-gradient);
	border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%;
	opacity: .18;
	animation: morph 9s ease-in-out infinite;
}
@keyframes morph {
	0%, 100% { border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%; }
	50% { border-radius: 58% 42% 37% 63% / 55% 58% 42% 45%; transform: rotate(8deg); }
}
@keyframes float {
	0%, 100% { transform: translateY(0) translateX(0); }
	50% { transform: translateY(-26px) translateX(12px); }
}
@keyframes floatY {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-18px); }
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats-wrap {
	background: var(--brand-gradient);
	border-radius: 28px;
	box-shadow: var(--shadow-brand);
	position: relative;
	overflow: hidden;
}
.stats-wrap::after {
	content: ''; position: absolute; right: -80px; top: -80px;
	width: 240px; height: 240px; border-radius: 50%;
	background: rgba(255, 255, 255, .1);
}
.stat-card { text-align: center; padding: 14px; position: relative; z-index: 2; }
.stat-card .num { font-size: 2.6rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-card .num span { color: #d6ecff; }
.stat-card .label { color: rgba(255, 255, 255, .82); font-weight: 500; margin-top: 8px; }

/* ==========================================================================
   Service cards  —  glassy, gradient border on hover
   ========================================================================== */
.service-card {
	position: relative;
	background: #fff;
	border: 1px solid #e8edff;
	border-radius: 22px;
	padding: 34px 28px;
	height: 100%;
	overflow: hidden;
	transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease, border-color .35s ease;
}
.service-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1.5px;
	background: var(--brand-gradient);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity .35s ease;
}
.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px -28px rgba(6, 45, 236, .45);
	border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card .icon {
	width: 66px; height: 66px;
	display: grid; place-items: center;
	border-radius: 18px;
	background: var(--brand-gradient-soft);
	color: var(--indigo);
	font-size: 1.75rem;
	margin-bottom: 22px;
	transition: all .35s ease;
}
.service-card:hover .icon {
	background: var(--brand-gradient);
	color: #fff;
	transform: rotate(-6deg) scale(1.06);
	box-shadow: 0 16px 28px -12px rgba(6, 45, 236, .6);
}
.service-card h3 { font-size: 1.2rem; color: var(--ink); }
.service-card p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.service-card a.more {
	display: inline-flex; align-items: center; gap: 4px;
	color: var(--indigo); font-weight: 600; text-decoration: none;
	transition: gap .25s ease;
}
.service-card a.more:hover { gap: 10px; }

/* ==========================================================================
   How it works
   ========================================================================== */
.step {
	background: #fff; border-radius: 22px; padding: 34px 26px; height: 100%;
	border: 1px solid #e8edff; text-align: center; position: relative;
	transition: transform .35s ease, box-shadow .35s ease;
}
.step:hover { transform: translateY(-8px); box-shadow: 0 28px 56px -28px rgba(6, 45, 236, .4); }
.step .num-badge {
	width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center;
	background: var(--brand-gradient); color: #fff; font-weight: 800; font-size: 1.3rem;
	margin: 0 auto 20px;
	box-shadow: 0 14px 26px -12px rgba(6, 45, 236, .6);
}
.step h4 { font-size: 1.12rem; color: var(--ink); }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ==========================================================================
   Overview / about
   ========================================================================== */
.features-list { list-style: none; padding: 0; margin: 26px 0 0; }
.features-list li {
	display: flex; align-items: center; gap: 12px;
	font-weight: 500; color: var(--ink); margin-bottom: 14px;
}
.features-list li i {
	color: #fff; background: var(--brand-gradient);
	width: 30px; height: 30px; border-radius: 50%;
	display: grid; place-items: center; font-size: .9rem; flex: none;
	box-shadow: 0 8px 16px -8px rgba(6, 45, 236, .6);
}

/* ==========================================================================
   Become An Agent
   ========================================================================== */
#agent { overflow: hidden; }
.agent-glow {
	position: absolute;
	top: 50%; left: -120px;
	width: 360px; height: 360px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(63, 186, 240, .28), transparent 70%);
	pointer-events: none;
	z-index: 0;
}
#agent .container { position: relative; z-index: 2; }
.agent-img-wrap {
	position: relative;
	display: inline-block;
	animation: floatY 6.5s ease-in-out infinite;
}
.agent-img-wrap img {
	width: 100%;
	position: relative;
	z-index: 2;
	filter: drop-shadow(0 34px 56px rgba(6, 45, 236, .28));
}
.agent-blob {
	position: absolute; inset: -8%; z-index: 1;
	background: var(--brand-gradient);
	border-radius: 58% 42% 37% 63% / 55% 58% 42% 45%;
	opacity: .16;
	animation: morph 10s ease-in-out infinite;
}
.agent-float-card {
	position: absolute;
	bottom: 14%; left: -6%;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, .9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(6, 45, 236, .1);
	padding: 14px 18px;
	border-radius: 18px;
	box-shadow: 0 22px 44px -22px rgba(6, 45, 236, .5);
	animation: floatY 5s ease-in-out infinite reverse;
}
.agent-float-card i {
	width: 44px; height: 44px;
	display: grid; place-items: center;
	border-radius: 14px;
	background: var(--brand-gradient);
	color: #fff;
	font-size: 1.3rem;
	flex: none;
}
.agent-float-card strong { display: block; color: var(--ink); font-size: .95rem; line-height: 1.2; }
.agent-float-card span { color: var(--muted); font-size: .8rem; }
@media (max-width: 575px) {
	.agent-float-card { left: 2%; bottom: 6%; padding: 11px 14px; }
	.agent-float-card i { width: 38px; height: 38px; font-size: 1.1rem; }
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.price-card {
	border-radius: 24px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e8edff;
	display: flex;
	flex-direction: column;
	align-self: start;
	transition: transform .35s ease, box-shadow .35s ease;
}
.price-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px -28px rgba(6, 45, 236, .45); }
.price-card .price-head {
	background: var(--brand-gradient);
	color: #fff; text-align: center; padding: 28px 18px 22px;
	position: relative;
}
.price-card .price-head img {
	max-width: 72px; background: #fff;
	border-radius: 14px; padding: 8px;
	box-shadow: 0 10px 22px -8px rgba(0, 0, 0, .35);
}
.price-card .price-head h3 { margin: 14px 0 0; font-size: 1.35rem; letter-spacing: .05em; font-weight: 700; }

.price-table { width: 100%; font-size: .9rem; table-layout: fixed; border-collapse: collapse; }
.price-table td {
	padding: 12px 14px;
	border-bottom: 1px solid #eef2ff;
	vertical-align: middle;
	overflow-wrap: anywhere;
	word-break: break-word;
}
.price-table thead th {
	background: #f1f5ff;
	color: var(--indigo);
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	padding: 11px 14px;
	border-bottom: 2px solid #e2e9ff;
	position: sticky;
	top: 0;
}
.price-table thead .th-plan   { text-align: left; }
.price-table thead .th-amount { text-align: left; }
.price-table thead .th-days   { text-align: center; }
.price-table tbody tr:nth-child(even) { background: #fafbff; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table .col-plan   { width: 24%; }
.price-table .col-amount { width: 35%; }
.price-table .col-days   { width: 41%; }
.price-table .plan { font-weight: 600; color: var(--ink); line-height: 1.3; }
.price-table .amount { font-weight: 700; }
.price-table .amount span {
	display: inline-block;
	background: var(--brand-gradient-soft); color: var(--indigo);
	padding: 4px 10px; border-radius: 999px; font-size: .85rem; font-weight: 700;
}
.price-table .days { text-align: center; }
.price-table .days span {
	display: inline-block;
	background: var(--ring-sky); color: #0a6ea0;
	padding: 4px 9px; border-radius: 999px;
	font-size: .72rem; font-weight: 600; line-height: 1.2;
}
.price-foot { padding: 18px; text-align: center; margin-top: auto; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-card {
	position: relative;
	background: #fff; border: 1px solid #e8edff; border-radius: 22px;
	padding: 32px 30px; height: 100%;
	transition: transform .35s ease, box-shadow .35s ease;
}
.testi-card::before {
	content: '\201C';
	position: absolute; top: 6px; right: 24px;
	font-size: 5rem; line-height: 1;
	font-family: Georgia, serif;
	background: var(--brand-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: .18;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: 0 28px 56px -28px rgba(6, 45, 236, .4); }
.testi-card .stars { color: #ffb020; margin-bottom: 14px; }
.testi-card p { color: var(--ink); font-style: italic; position: relative; z-index: 1; }
.testi-bio { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.testi-bio img {
	width: 54px; height: 54px; border-radius: 50%; object-fit: cover;
	border: 2px solid transparent;
	background: linear-gradient(#fff, #fff) padding-box, var(--brand-gradient) border-box;
}
.testi-bio h5 { margin: 0; font-size: 1rem; color: var(--ink); }
.testi-bio span { font-size: .82rem; color: var(--indigo); font-weight: 600; }

/* ==========================================================================
   Partners marquee
   ========================================================================== */
.partners { padding: 64px 0; }
.marquee {
	position: relative;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
	display: flex;
	width: max-content;
	align-items: center;
	gap: 70px;
	animation: marquee 18s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { flex: none; display: grid; place-items: center; height: 60px; }
.marquee__item img {
	max-height: 52px;
	max-width: 130px;
	width: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: .6;
	transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}
.marquee__item img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.1); }
@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (max-width: 575px) {
	.marquee__track { gap: 44px; animation-duration: 14s; }
	.marquee__item img { max-height: 40px; max-width: 100px; }
}

/* ==========================================================================
   Download app
   ========================================================================== */
.download-app {
	background: var(--brand-gradient);
	border-radius: 32px;
	padding: 54px;
	color: #fff;
	overflow: hidden;
	position: relative;
	box-shadow: var(--shadow-brand);
}
.download-app::after {
	content: ''; position: absolute; right: -60px; top: -60px;
	width: 280px; height: 280px; border-radius: 50%;
	background: rgba(255, 255, 255, .1);
}
.download-app::before {
	content: ''; position: absolute; left: -50px; bottom: -90px;
	width: 220px; height: 220px; border-radius: 50%;
	background: rgba(255, 255, 255, .07);
}
.download-app h2 { color: #fff; }
.download-app p { color: rgba(255, 255, 255, .88); }
.download-app .eyebrow { background: rgba(255, 255, 255, .18); color: #fff; }
.store-btns img { height: 52px; transition: transform .25s ease; }
.store-btns img:hover { transform: translateY(-4px); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.accordion-button {
	font-weight: 600; color: var(--ink); border-radius: 16px !important;
	box-shadow: none;
}
.accordion-button:not(.collapsed) { background: var(--brand-gradient-soft); color: var(--indigo); }
.accordion-button:focus { box-shadow: 0 0 0 .2rem var(--ring); }
.accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='%23062dec' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
.accordion-item { border: 1px solid #e8edff; border-radius: 16px !important; margin-bottom: 14px; overflow: hidden; }
.accordion-body { color: var(--muted); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
	background: linear-gradient(160deg, #041aa6 0%, #062dec 60%, #0a3bff 100%);
	color: rgba(255, 255, 255, .78);
	padding: 80px 0 0;
	position: relative;
	overflow: hidden;
}
.footer::before {
	content: ''; position: absolute; top: -120px; right: -80px;
	width: 320px; height: 320px; border-radius: 50%;
	background: radial-gradient(circle, rgba(63, 186, 240, .35), transparent 70%);
}
.footer .container { position: relative; z-index: 2; }
.footer h5 { color: #fff; margin-bottom: 22px; font-size: 1.05rem; }
.footer a { color: rgba(255, 255, 255, .78); text-decoration: none; transition: color .2s ease; }
.footer a:hover { color: #fff; }
.footer .quick-links li { margin-bottom: 12px; }
.footer .social a {
	width: 42px; height: 42px; border-radius: 50%;
	display: inline-grid; place-items: center;
	background: rgba(255, 255, 255, .1); margin-right: 8px;
	transition: background .25s ease, transform .25s ease;
}
.footer .social a:hover { background: var(--sky); transform: translateY(-4px); }
.footer .contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
.footer .contact-item i { color: var(--sky); font-size: 1.1rem; margin-top: 3px; }
.copyright { border-top: 1px solid rgba(255, 255, 255, .12); padding: 22px 0; margin-top: 54px; font-size: .9rem; }
.copyright a { color: #9fd8ff; }

/* ==========================================================================
   Go top
   ========================================================================== */
.go-top {
	position: fixed; right: 24px; bottom: 24px; z-index: 99;
	width: 50px; height: 50px; border-radius: 16px;
	background: var(--brand-gradient); color: #fff;
	display: grid; place-items: center; cursor: pointer;
	opacity: 0; visibility: hidden; transform: translateY(15px);
	transition: all .3s ease; box-shadow: var(--shadow-brand);
}
.go-top:hover { transform: translateY(-4px); }
.go-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
	.hero { padding: 140px 0 80px; text-align: center; }
	.hero p.lead { margin-left: auto; margin-right: auto; }
	.hero-orb { display: none; }
	.download-app { padding: 38px 28px; text-align: center; }
}
