/*
Theme Name: Qtrack
Text Domain: themelineup
Version: 3.1
Tested up to: 7.0
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns, block-styles, wide-blocks, accessibility-ready
Author: the Awdar Team
Author URI: https://ainexit.com/
Theme URI: https://ainexit.com/
License: GNU General Public License v2 or later

All files, unless otherwise stated, are released under the GNU General Public

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Menu Modal
	6. 	Search Modal
	7. 	Page Templates
		a. 	Template: Cover Template
		c. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Widgets
	16. Site Footer
	17. Media Queries

----------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */

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

:root {
	--navy: #080E1C;
	--navy2: #0F1A30;
	--blue: #2563EB;
	--blue2: #3B82F6;
	--blue3: #93C5FD;
	--bluel: #EFF6FF;
	--purple: #7C3AED;
	--pl: #EDE9FE;
	--amber: #F59E0B;
	--green: #10B981;
	--red: #EF4444;
	--tx: #0F172A;
	--mu: #64748B;
	--hi: #94A3B8;
	--bd: #E2E8F0;
	--bg: #F8FAFF;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: var(--tx);
	background: #fff;
	line-height: 1.6;
	overflow-x: hidden;
	max-width: 100vw;
}

/* NAV */
nav {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 42px 48px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	transition: all .3s;
}

nav.scrolled {
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	flex: 1;
	justify-content: flex-start;
	flex-shrink: 0;
}

.nav-logo-icon {
	width: 34px;
	height: 34px;
	background: var(--blue);
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-logo-icon svg {
	width: 17px;
	height: 17px;
	stroke: #fff;
	fill: none;
	stroke-width: 1.9;
	stroke-linecap: round;
}

.nav-logo-name {
	font-family: 'Fraunces', serif;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	transition: color .3s;
}

nav.scrolled .nav-logo-name {
	color: var(--tx);
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	flex: 0 0 auto;
}

.nav-links a {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, .7);
	text-decoration: none;
	transition: color .2s;
}

nav.scrolled .nav-links a {
	color: var(--mu);
}

.nav-links a:hover {
	color: #fff;
}

nav.scrolled .nav-links a:hover {
	color: var(--tx);
}

.nav-cta {
	display: flex;
	gap: 10px;
	align-items: center;
	flex: 1;
	justify-content: flex-end;
}

.mobile-menu-toggle {
	display: none;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 20px;
	border-radius: 9px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: all .15s;
	border: none;
	font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn:active {
	transform: scale(.97);
}

.btn-ghost {
	color: rgba(255, 255, 255, .8);
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .15);
}

nav.scrolled .btn-ghost {
	color: var(--mu);
	background: transparent;
	border: 1.5px solid var(--bd);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, .18);
}

nav.scrolled .btn-ghost:hover {
	background: var(--bg);
}

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

.btn-blue:hover {
	background: #1D4ED8;
}

.btn-dark {
	background: var(--navy);
	color: #fff;
}

.btn-dark:hover {
	background: #111827;
}

.btn-large {
	padding: 15px 30px;
	font-size: 16px;
	border-radius: 12px;
}

.btn-white {
	background: #fff;
	color: var(--navy);
	font-weight: 800;
}

.btn-white:hover {
	background: #F1F5F9;
}

.btn-outline-white {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, .35);
	font-weight: 700;
}

.btn-outline-white:hover {
	background: rgba(255, 255, 255, .1);
}

/* HERO */
.hero {
	min-height: 100vh;
	background: var(--navy);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 120px 48px 80px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	width: 800px;
	height: 800px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, .18) 0%, transparent 70%);
	top: -200px;
	right: -200px;
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(124, 58, 237, .12) 0%, transparent 70%);
	bottom: -150px;
	left: -100px;
	pointer-events: none;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 40px;
	align-items: center;
	max-width: 1400px;
	width: 100%;
	position: relative;
	z-index: 1;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(37, 99, 235, .18);
	border: 1px solid rgba(37, 99, 235, .3);
	border-radius: 100px;
	padding: 5px 14px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--blue3);
	letter-spacing: .05em;
	margin-bottom: 24px;
}

.hero-eyebrow-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #3B82F6;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: .6;
		transform: scale(.9);
	}
}

.hero-grid h1 {
	font-family: 'Fraunces', serif;
	font-size: 62px;
	font-weight: 900;
	line-height: 1.05;
	color: #fff;
	letter-spacing: -1.5px;
	margin-bottom: 24px;
}

@keyframes typingCursorBlink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}

.hero-grid h1 em {
	display: block;
	font-style: italic;
	position: relative;
	white-space: nowrap;
	min-height: 1em;
}

/* .hero-grid h1 em::after {
	content: "|";
	display: inline-block;
	margin-left: 4px;
	color: #3b82f6;
	font-style: normal;
	font-weight: 400;
	animation: typingCursorBlink 0.8s infinite;
} */

h1 {
	font-family: 'Fraunces', serif;
	font-size: 62px;
	font-weight: 900;
	line-height: 1.05;
	color: #fff;
	letter-spacing: -1.5px;
	margin-bottom: 24px;
}

h1 em {
	font-style: italic;
	color: var(--blue3);
}

.hero-sub {
	font-size: 16px;
	color: rgba(255, 255, 255, .55);
	line-height: 1.7;
	margin-bottom: 36px;
	max-width: 520px;
}

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

.hero-social {
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: start;
	justify-content: start;
}

.hero-social span {
	font-size: 12.5px;
	color: rgba(255, 255, 255, .35);
	font-weight: 600;
}

.hero-orgs {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.hero-org-pill {
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 100px;
	padding: 4px 11px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, .5);
}


.hero-org-pill img {
	width: 12px;
	height: 12px;
	object-fit: contain;
	margin-right: 3px;
}

.ticket-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.big-ticket {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 24px;
	padding: 32px;
	width: 100%;
	backdrop-filter: blur(8px);
	position: relative;
	overflow: hidden;
}

.big-ticket::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), var(--purple));
}

.ticket-org {
	font-size: 12px;
	font-weight: 700;
	color: rgba(255, 255, 255, .4);
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.ticket-num {
	font-family: 'Fraunces', serif;
	font-size: 88px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
	display: block;
	margin-bottom: 4px;
	animation: tickAnim 3s ease-in-out infinite;
}

@keyframes tickAnim {

	0%,
	85%,
	100% {
		opacity: 1;
	}

	90% {
		opacity: .3;
	}

	95% {
		opacity: 1;
	}
}

.ticket-name {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, .5);
	margin-bottom: 20px;
}

.ticket-meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	padding-top: 18px;
}

.ticket-meta-item .lbl {
	font-size: 10.5px;
	font-weight: 700;
	color: rgba(255, 255, 255, .3);
	letter-spacing: .07em;
	text-transform: uppercase;
	margin-bottom: 3px;
}

.ticket-meta-item .val {
	font-size: 14px;
	font-weight: 700;
	color: rgba(255, 255, 255, .75);
}

.ticket-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: rgba(16, 185, 129, .18);
	border: 1px solid rgba(16, 185, 129, .3);
	border-radius: 100px;
	padding: 4px 11px;
	font-size: 11.5px;
	font-weight: 700;
	color: #6EE7B7;
	margin-top: 14px;
}

.tick-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #10B981;
	animation: pulse 1.5s infinite;
}

.floating-cards {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 8px;
	right: -32px;
	top: 50%;
	transform: translateY(-50%);
}

.fc {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 12px;
	padding: 10px 14px;
	font-size: 12px;
	font-weight: 700;
	color: rgba(255, 255, 255, .6);
	white-space: nowrap;
	backdrop-filter: blur(8px);
	animation: floatIn .6s ease both;
}

@keyframes floatIn {
	from {
		opacity: 0;
		transform: translateX(20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* PROBLEM SECTION */
.problem {
	background: #fff;
	padding: 100px 48px;
}

.section-eyebrow {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 12px;
}

.section-title {
	font-family: 'Fraunces', serif;
	font-size: 46px;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -1px;
	color: var(--tx);
	margin-bottom: 16px;
}

.section-title span {
	display: block;
}

.section-sub {
	font-size: 17px;
	color: var(--mu);
	line-height: 1.7;
	max-width: 600px;
}

.max-w {
	max-width: 1400px;
	margin: 0 auto;
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 56px;
}

.prob-card {
	background: var(--bg);
	border-radius: 20px;
	padding: 28px;
	border: 1px solid var(--bd);
	position: relative;
	overflow: hidden;
}

.prob-card::before {
	content: attr(data-num);
	position: absolute;
	top: -10px;
	right: 20px;
	font-family: 'Fraunces', serif;
	font-size: 100px;
	font-weight: 900;
	color: rgba(239, 68, 68, .07);
	line-height: 1;
	pointer-events: none;
}

.prob-icon {
	width: 48px;
	height: 48px;
	border-radius: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	font-size: 22px;
	background-color: #FEF2F2;
}

.prob-icon img {
	width: 35px;
	height: 35px;
	object-fit: contain;
}

.prob-stat {
	font-family: 'Fraunces', serif;
	font-size: 42px;
	font-weight: 900;
	color: var(--red);
	line-height: 1;
	margin-bottom: 6px;
}

.prob-title {
	font-size: 15px;
	font-weight: 800;
	color: var(--tx);
	margin-bottom: 8px;
}

.prob-desc {
	font-size: 13.5px;
	color: var(--mu);
	line-height: 1.65;
}

.prob-quote {
	background: #fff;
	border-radius: 16px;
	margin-top: 36px;
	padding: 28px 32px;
	border-left: 4px solid var(--red);
	position: relative;
}

.prob-quote p {
	font-family: 'Fraunces', serif;
	font-size: 20px;
	font-style: italic;
	color: var(--tx);
	line-height: 1.6;
	margin-bottom: 10px;
}

.prob-quote cite {
	font-size: 13px;
	color: var(--mu);
	font-style: normal;
	font-weight: 600;
}

/* SOLUTION */
.solution {
	background: var(--navy);
	padding: 100px 48px;
}

.solution-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}

.sol-label {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #3B82F6;
	margin-bottom: 12px;
}

.sol-title {
	font-family: 'Fraunces', serif;
	font-size: 46px;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -1px;
	color: #fff;
	margin-bottom: 18px;
}

.sol-title span {
	display: block;
}

.sol-title em {
	font-style: italic;
	color: var(--blue3);
}

.sol-sub {
	font-size: 17px;
	color: rgba(255, 255, 255, .55);
	line-height: 1.7;
	margin-bottom: 36px;
}

.sol-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.sol-stat {
	background: rgba(255, 255, 255, .05);
	border-radius: 14px;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, .08);
}

.sol-stat-num {
	font-family: 'Fraunces', serif;
	font-size: 34px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
	margin-bottom: 4px;
}

.sol-stat-lbl {
	font-size: 13px;
	color: rgba(255, 255, 255, .45);
	font-weight: 600;
}

.sol-visual {
	position: relative;
	min-width: 0;
	width: 100%;
}

.solution-carousel {
	width: 100%;
	min-width: 0;
}

.roles-stack {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.role-card {
	border-radius: 24px;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, .12);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
	cursor: default;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(8px);
	margin: 13px 0;

}

.role-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 24px;
	right: 24px;
	height: 2px;
	opacity: 0.8;
	transition: opacity .3s ease;
}

.role-card>div:not(.role-icon):not(.role-tag) {
	width: 100%;
}

.role-card.visitor {
	background: rgba(37, 99, 235, .12);
	border-color: rgba(59, 130, 246, .25);
}

.role-card.visitor::before {
	background: linear-gradient(90deg, #3b82f6, transparent);
}

.role-card.visitor:hover {
	border-color: rgba(59, 130, 246, .45);
	transform: translateY(-3px);
}

.role-card.staff {
	background: rgba(124, 58, 237, .12);
	border-color: rgba(139, 92, 246, .25);
}

.role-card.staff::before {
	background: linear-gradient(90deg, #8b5cf6, transparent);
}

.role-card.staff:hover {
	border-color: rgba(139, 92, 246, .45);
	transform: translateY(-3px);
}

.role-card.admin {
	background: rgba(16, 185, 129, .1);
	border-color: rgba(16, 185, 129, .25);
}

.role-card.admin::before {
	background: linear-gradient(90deg, #10b981, transparent);
}

.role-card.admin:hover {
	border-color: rgba(16, 185, 129, .45);
	transform: translateY(-3px);
}

.role-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	align-self: flex-start;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

.role-icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.role-icon.v,
.role-card.visitor .role-icon {
	background: rgba(37, 99, 235, .25);
	border: 1px solid rgba(59, 130, 246, .35);
}

.role-icon.s,
.role-card.staff .role-icon {
	background: rgba(124, 58, 237, .25);
	border: 1px solid rgba(139, 92, 246, .35);
}

.role-icon.a,
.role-card.admin .role-icon {
	background: rgba(16, 185, 129, .2);
	border: 1px solid rgba(16, 185, 129, .35);
}

.role-title {
	font-size: 24px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 8px;
	letter-spacing: -0.4px;
	line-height: 1.25;
}

.role-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, .7);
	line-height: 1.6;
	margin-bottom: 8px;
}

.role-benefits {
	font-size: 15px;
	color: rgba(255, 255, 255, .85);
	line-height: 1.7;
	margin-top: 12px;
}

.role-benefits ul {
	margin: 12px 0 0 0;
	padding-left: 20px;
	list-style-type: disc;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.role-benefits li {
	color: #ffffff;
	font-weight: 600;
	font-size: 14.5px;
}

.role-card.visitor .role-benefits li::marker {
	color: #60a5fa;
}

.role-card.staff .role-benefits li::marker {
	color: #c4b5fd;
}

.role-card.admin .role-benefits li::marker {
	color: #6ee7b7;
}

.role-tag {
	margin-top: 8px;
	margin-left: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	max-width: max-content;
	flex-shrink: 0;
	align-self: flex-start;
	border-radius: 100px;
	padding: 8px 20px;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	backdrop-filter: blur(4px);
	transition: all .2s ease;
}

.role-card.visitor .role-tag {
	background: rgba(37, 99, 235, .2);
	border: 1px solid rgba(59, 130, 246, .35);
	color: #93c5fd;
}

.role-card.staff .role-tag {
	background: rgba(124, 58, 237, .2);
	border: 1px solid rgba(139, 92, 246, .35);
	color: #c4b5fd;
}

.role-card.admin .role-tag {
	background: rgba(16, 185, 129, .2);
	border: 1px solid rgba(16, 185, 129, .35);
	color: #6ee7b7;
}

/* Solution Carousel Owl Custom Styling */
.solution-carousel .owl-nav {
	margin-top: 20px;
	display: flex;
	justify-content: flex-end;
	gap: 12px;
}

.solution-carousel .owl-nav button.owl-prev,
.solution-carousel .owl-nav button.owl-next {
	width: 44px;
	height: 44px;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	color: #ffffff !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.3s ease !important;
	outline: none;
}

.solution-carousel .owl-nav button.owl-prev:hover,
.solution-carousel .owl-nav button.owl-next:hover {
	background: rgba(59, 130, 246, 0.3) !important;
	border-color: rgba(59, 130, 246, 0.6) !important;
	color: #ffffff !important;
	transform: scale(1.08);
}

.solution-carousel .owl-dots {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.solution-carousel .owl-dots button.owl-dot span {
	width: 10px;
	height: 10px;
	margin: 0;
	background: rgba(255, 255, 255, .25) !important;
	border-radius: 100px;
	transition: all 0.3s ease !important;
}

.solution-carousel .owl-dots button.owl-dot.active span {
	width: 28px;
	background: #3b82f6 !important;
	box-shadow: 0 0 10px rgba(59, 130, 246, .6);
}

/* HOW IT WORKS */
.how {
	background: var(--bg);
	padding: 100px 48px;
}

.how-header {
	text-align: center;
	margin-bottom: 64px;
}

.flow-tabs {
	display: flex;
	gap: 6px;
	justify-content: center;
	margin-top: 28px;
}

.flow-tab {
	padding: 10px 22px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	border: 2px solid var(--bd);
	background: #fff;
	color: var(--mu);
	font-family: 'Plus Jakarta Sans', sans-serif;
	transition: all .2s;
}

.flow-tab.on,
.flow-tab:hover {
	border-color: var(--blue);
	background: var(--blue);
	color: #fff;
}

.flow-content {
	display: none;
}

.flow-content.on {
	display: block;
}

.steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	position: relative;
	margin-top: 48px;
}

.steps::before {
	content: '';
	position: absolute;
	top: 28px;
	left: 10%;
	right: 10%;
	height: 2px;
	background: linear-gradient(90deg, var(--blue), var(--purple));
	z-index: 0;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 1;
}

.step-num {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Fraunces', serif;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 16px;
	border: 3px solid #fff;
	flex-shrink: 0;
}

.step-num-blue {
	background: var(--blue);
	color: #fff;
}

.step-num-purple {
	background: var(--purple);
	color: #fff;
}

.step-num-green {
	background: var(--green);
	color: #fff;
}

.step-num-amber {
	background: var(--amber);
	color: #fff;
}

.step-body {
	padding: 0 12px;
}

.step-title {
	font-size: 13.5px;
	font-weight: 800;
	color: var(--tx);
	margin-bottom: 5px;
}

.step-desc {
	font-size: 12px;
	color: var(--mu);
	line-height: 1.55;
}

.step-icon {
	font-size: 26px;
	margin-bottom: 10px;
}

/* RETURN TOKEN FEATURE */
.return-feat {
	background: linear-gradient(135deg, #2D1B69 0%, #0F172A 50%, #1A0F3A 100%);
	padding: 100px 48px;
	position: relative;
	overflow: hidden;
}

.return-feat::before {
	content: '↩';
	position: absolute;
	font-family: 'Fraunces', serif;
	font-size: 400px;
	font-weight: 900;
	color: rgba(124, 58, 237, .06);
	top: -100px;
	right: -60px;
	pointer-events: none;
	line-height: 1;
}

.rf-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}

.rf-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(124, 58, 237, .25);
	border: 1px solid rgba(124, 58, 237, .4);
	border-radius: 100px;
	padding: 5px 14px;
	font-size: 12.5px;
	font-weight: 700;
	color: #C4B5FD;
	margin-bottom: 20px;
}

.rf-title {
	font-family: 'Fraunces', serif;
	font-size: 46px;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -1px;
	color: #fff;
	margin-bottom: 18px;
}

.rf-title em {
	font-style: italic;
	color: #C4B5FD;
}

.rf-sub {
	font-size: 16px;
	color: rgba(255, 255, 255, .55);
	line-height: 1.7;
	margin-bottom: 32px;
}

.rf-points {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.rfp {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.rfp-icon {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: rgba(124, 58, 237, .25);
	border: 1px solid rgba(124, 58, 237, .35);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
	margin-top: 1px;
}

.rfp-title {
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 3px;
}

.rfp-desc {
	font-size: 13px;
	color: rgba(255, 255, 255, .5);
	line-height: 1.55;
}

.rf-visual {
	position: relative;
}

.rf-queue-demo {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 20px;
	padding: 24px;
	backdrop-filter: blur(8px);
}

.rf-queue-title {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .3);
	margin-bottom: 16px;
}

.rf-slots {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.slot {
	width: 44px;
	height: 44px;
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 800;
}

.slot-n {
	background: rgba(37, 99, 235, .2);
	color: var(--blue3);
	border: 1.5px solid rgba(37, 99, 235, .3);
}

.slot-r {
	background: rgba(124, 58, 237, .3);
	color: #C4B5FD;
	border: 1.5px solid rgba(124, 58, 237, .4);
	font-size: 16px;
}

.slot-cur {
	box-shadow: 0 0 0 3px rgba(37, 99, 235, .4);
}

.slot-arr {
	color: rgba(255, 255, 255, .2);
	font-size: 11px;
}

.ratio-explain {
	font-size: 12.5px;
	color: rgba(255, 255, 255, .4);
	line-height: 1.55;
}

.rf-token-card {
	background: rgba(124, 58, 237, .15);
	border-radius: 14px;
	padding: 18px;
	border: 1px solid rgba(124, 58, 237, .3);
	margin-top: 16px;
}

.rf-token-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.rf-token-num {
	font-family: 'Fraunces', serif;
	font-size: 40px;
	font-weight: 900;
	color: #C4B5FD;
	line-height: 1;
}

.rf-token-badge {
	background: rgba(124, 58, 237, .3);
	border-radius: 100px;
	padding: 4px 11px;
	font-size: 11.5px;
	font-weight: 700;
	color: #C4B5FD;
	border: 1px solid rgba(124, 58, 237, .4);
}

.rf-token-meta {
	font-size: 12.5px;
	color: rgba(255, 255, 255, .45);
	line-height: 1.6;
}

.rf-token-wa {
	display: flex;
	align-items: center;
	gap: 7px;
	background: rgba(16, 185, 129, .12);
	border: 1px solid rgba(16, 185, 129, .2);
	border-radius: 9px;
	padding: 9px 12px;
	margin-top: 12px;
}

.rf-token-wa span {
	font-size: 12.5px;
	color: rgba(255, 255, 255, .6);
	font-weight: 600;
}

/* INDUSTRIES */
.industries {
	background: #fff;
	padding: 100px 48px;
}

.ind-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-top: 48px;
}

.ind-card {
	background: var(--bg);
	border-radius: 16px;
	padding: 24px;
	text-align: center;
	border: 1px solid var(--bd);
	transition: all .2s;
	cursor: default;
}

.ind-card:hover {
	border-color: var(--blue);
	background: var(--bluel);
	transform: translateY(-3px);
}

.ind-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ind-icon img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	display: block;
}

.ind-title {
	font-size: 14px;
	font-weight: 800;
	color: var(--tx);
	margin-bottom: 4px;
}

.ind-desc {
	font-size: 12px;
	color: var(--mu);
	line-height: 1.5;
}

.ind-count {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 10px;
	background: var(--bluel);
	border-radius: 100px;
	padding: 3px 10px;
	font-size: 11px;
	font-weight: 700;
	color: var(--blue);
}

/* PRICING */
.pricing {
	background: var(--bg);
	padding: 100px 48px;
}

.pricing-header {
	text-align: center;
	margin-bottom: 56px;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 980px;
	margin: 0 auto;
}

.pc {
	background: #fff;
	border-radius: 20px;
	padding: 32px;
	border: 1.5px solid var(--bd);
	position: relative;
	overflow: hidden;
}

.pc.featured {
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, .08);
}

.pc-badge {
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--blue);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	padding: 4px 14px;
	border-radius: 0 0 10px 10px;
	letter-spacing: .05em;
}

.pc-name {
	font-family: 'Fraunces', serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--tx);
	margin-bottom: 6px;
}

.pc-desc {
	font-size: 13px;
	color: var(--mu);
	margin-bottom: 20px;
	line-height: 1.5;
}

.pc-price {
	font-family: 'Fraunces', serif;
	font-size: 48px;
	font-weight: 900;
	color: var(--tx);
	line-height: 1;
	margin-bottom: 4px;
}

.pc-price sup {
	font-size: 22px;
	font-weight: 700;
	vertical-align: super;
}

.pc-period {
	font-size: 13px;
	color: var(--mu);
	margin-bottom: 24px;
}

.pc-btn {
	display: block;
	text-align: center;
	padding: 13px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	margin-bottom: 24px;
	transition: all .15s;
}

.pc-btn-outline {
	border: 2px solid var(--bd);
	color: var(--tx);
}

.pc-btn-outline:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.pc-btn-blue {
	background: var(--blue);
	color: #fff;
}

.pc-btn-blue:hover {
	background: #1D4ED8;
}

.pc-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pc-feat {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	color: var(--tx);
}

.pc-feat svg {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
}

.pc-feat .yes {
	stroke: var(--green);
}

.pc-feat .no {
	stroke: var(--hi);
}

/* PROBLEM VISUAL */
.chaos-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 56px;
	align-items: start;
}

.chaos-col {
	padding: 32px;
	border-radius: 20px;
}

.chaos-col.before {
	background: var(--bg);
	border: 1px solid var(--bd);
}

.chaos-col.after {
	background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
	border: 1px solid rgba(37, 99, 235, .25);
}

.chaos-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border-radius: 100px;
	padding: 4px 12px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .05em;
	margin-bottom: 16px;
}

.tag-bad {
	background: var(--red);
	color: #fff;
	opacity: .9;
}

.tag-good {
	background: var(--blue);
	color: #fff;
}

.chaos-title {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 16px;
}

.chaos-col.before .chaos-title {
	color: var(--tx);
}

.chaos-col.after .chaos-title {
	color: #fff;
}

.chaos-items {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.chaos-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 13px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
}

.ci-bad {
	background: #fff;
	border: 1px solid var(--bd);
	color: var(--tx);
}

.ci-good {
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .1);
	color: rgba(255, 255, 255, .75);
}

.ci-icon {
	font-size: 16px;
	flex-shrink: 0;
	width: 24px;
	text-align: center;
}

/* CTA */
.cta-section {
	background: var(--blue);
	padding: 100px 48px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .07);
	top: -200px;
	left: -100px;
}

.cta-section::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .05);
	bottom: -100px;
	right: -80px;
}

.cta-title {
	font-family: 'Fraunces', serif;
	font-size: 36px;
	font-weight: 900;
	color: #fff;
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
}



.cta-sub {
	font-size: 18px;
	color: rgba(255, 255, 255, .7);
	max-width: 520px;
	margin: 0 auto 36px;
	position: relative;
	z-index: 1;
	line-height: 1.6;
}

.cta-btns {
	display: flex;
	gap: 12px;
	justify-content: center;
	position: relative;
	z-index: 1;
}

/* FOOTER */
footer {
	background: var(--navy);
	padding: 56px 48px 40px;
}

.footer-inner {
	max-width: 1160px;
	margin: 0 auto;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	margin-bottom: 12px;
}

.footer-brand-name {
	font-family: 'Fraunces', serif;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

.footer-tagline {
	font-size: 13px;
	color: rgba(255, 255, 255, .35);
}

.footer-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.fc-title {
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .3);
	margin-bottom: 14px;
}

.fc-links {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.fc-links a {
	font-size: 13.5px;
	color: rgba(255, 255, 255, .45);
	text-decoration: none;
	transition: color .15s;
}

.fc-links a:hover {
	color: rgba(255, 255, 255, .8);
}

.footer-bot {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-copy {
	font-size: 12.5px;
	color: rgba(255, 255, 255, .25);
}

/* CONTACT SECTION */
.contact-section {
	background: #fff;
	padding: 100px 48px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start;
}

.contact-info-box {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.contact-icon {
	width: 42px;
	height: 42px;
	border-radius: 11px;
	background: var(--bluel);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.contact-text-title {
	font-size: 14px;
	font-weight: 800;
	color: var(--tx);
	margin-bottom: 2px;
}

.contact-text-desc {
	font-size: 13.5px;
	color: var(--mu);
	line-height: 1.6;
}


.contact-form-box {
	background: var(--bg);
	border-radius: 24px;
	padding: 36px;
	border: 1.5px solid var(--bd);
}

.contact-form-title {
	font-size: 17px;
	font-weight: 800;
	color: var(--tx);
	margin-bottom: 6px;
}

.contact-form-subtitle {
	font-size: 13px;
	color: var(--mu);
	margin-bottom: 28px;
}

.contact-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 14px;
}

.form-group {
	margin-bottom: 14px;
}

.form-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--mu);
	margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	border: 1.5px solid var(--bd);
	border-radius: 10px;
	padding: 0 13px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 14px;
	color: var(--tx);
	outline: none;
	transition: border-color 0.15s;
	background: #fff;
}

.form-input,
.form-select {
	height: 44px;
}

.form-textarea {
	height: 96px;
	padding: 11px 13px;
	resize: none;
	line-height: 1.55;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	border-color: var(--blue);
}

.contact-form-submit {
	width: 100%;
	height: 50px;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 11px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.15s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.contact-form-submit:hover {
	background: #1D4ED8;
}

.contact-form-success {
	display: none;
	background: #A7F3D0;
	border: 1.5px solid #A7F3D0;
	border-radius: 11px;
	padding: 16px;
	text-align: center;
	margin-top: 14px;
}

.contact-form-success-icon {
	font-size: 24px;
	margin-bottom: 6px;
}

.contact-form-success-title {
	font-size: 14px;
	font-weight: 800;
	color: #065F46;
	margin-bottom: 3px;
}

.contact-form-success-text {
	font-size: 13px;
	color: #047857;
}

.contact-form-note {
	font-size: 12px;
	color: var(--hi);
	text-align: center;
	margin-top: 14px;
}

/* ANIMATIONS */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
	opacity: 1;
	transform: none;
}

/* RESPONSIVE */
@media(max-width:900px) {

	.hero-grid,
	.solution-inner,
	.rf-inner,
	.chaos-row {
		grid-template-columns: 1fr;
	}

	.floating-cards {
		display: none;
	}

	.steps {
		grid-template-columns: 1fr 1fr;
	}

	.steps::before {
		display: none;
	}

	.ind-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.pricing-grid,
	.problem-grid {
		grid-template-columns: 1fr;
	}

	.footer-cols {
		grid-template-columns: 1fr 1fr;
	}

	h1 {
		font-size: 44px;
	}

	.section-title,
	.sol-title,
	.rf-title,
	.cta-title {
		font-size: 36px;
	}

	nav {
		padding: 0 24px;
	}

	.hero,
	.problem,
	.solution,
	.how,
	.return-feat,
	.industries,
	.pricing,
	.cta-section {
		padding: 80px 24px;
	}
}

/* Scene base styles */
.lu-scene {
	transition: opacity .4s;
}

.sc-fade-in {
	animation: scFadeIn .6s .1s both;
}

.sc-person {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	animation: scFadeIn .4s both;
}

.sc-person .ph {
	width: clamp(10px, 1.8vw, 18px);
	height: clamp(10px, 1.8vw, 18px);
	border-radius: 50%;
	background: #94A3B8;
}

.sc-person .pb {
	width: clamp(12px, 2vw, 20px);
	height: clamp(14px, 2.5vw, 24px);
	background: #CBD5E1;
	border-radius: 4px 4px 0 0;
}

.sc-person.angry .ph {
	background: #EF4444;
}

.sc-person.angry .pb {
	background: #FCA5A5;
}

.sc-person.tired .ph {
	background: #F59E0B;
}

.sc-person.tired .pb {
	background: #FCD34D;
}

/* Keyframes */
@keyframes scFadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes scFadeUp {
	from {
		opacity: 0;
		transform: translateY(16px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

@keyframes scSlideL {
	from {
		opacity: 0;
		transform: translateX(-30px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

@keyframes scSlideR {
	from {
		opacity: 0;
		transform: translateX(30px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

@keyframes scScaleIn {
	from {
		opacity: 0;
		transform: scale(.8)
	}

	to {
		opacity: 1;
		transform: scale(1)
	}
}

@keyframes spinClock {
	from {
		transform: rotate(0)
	}

	to {
		transform: rotate(360deg)
	}
}

@keyframes tapPulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(.95);
		background: #1D4ED8;
	}
}

@keyframes tokenPop {
	from {
		opacity: 0;
		transform: scale(.5)
	}

	60% {
		transform: scale(1.08)
	}

	to {
		opacity: 1;
		transform: scale(1)
	}
}

@keyframes notifDrop {
	from {
		opacity: 0;
		transform: translateY(-20px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

@keyframes confetti1 {

	0%,
	100% {
		transform: translateY(0) rotate(0)
	}

	50% {
		transform: translateY(-12px) rotate(180deg)
	}
}

@keyframes confetti2 {

	0%,
	100% {
		transform: translateY(0) rotate(0)
	}

	50% {
		transform: translateY(-16px) rotate(-180deg)
	}
}

@keyframes confetti3 {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-10px)
	}
}

@keyframes walkIn {
	from {
		left: 5%;
		opacity: 0
	}

	to {
		left: 52%;
		opacity: 1
	}
}

@keyframes checkPop {
	from {
		opacity: 0;
		transform: translate(-50%, -50%) scale(.4)
	}

	60% {
		transform: translate(-50%, -50%) scale(1.1)
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1)
	}
}

@keyframes drawCheck {
	to {
		stroke-dashoffset: 0
	}
}

@keyframes reasonPulse {

	0%,
	100% {
		background: #EDE9FE;
		border-color: #DDD6FE;
	}

	50% {
		background: #DDD6FE;
		border-color: #C4B5FD;
	}
}

@keyframes arrowPulse {

	0%,
	100% {
		transform: translateX(0)
	}

	50% {
		transform: translateX(5px)
	}
}

@keyframes returnBounce {
	from {
		opacity: 0;
		transform: scale(.5) translateY(10px)
	}

	60% {
		transform: scale(1.15) translateY(-4px)
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0)
	}
}

@keyframes fingerTap {

	0%,
	100% {
		transform: translateY(0) rotate(-15deg)
	}

	40% {
		transform: translateY(8px) rotate(-10deg)
	}
}

@keyframes floatPhone1 {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-12px);
	}
}

@keyframes floatPhone2 {

	0%,
	100% {
		transform: translateY(-8px);
	}

	50% {
		transform: translateY(8px);
	}
}

@keyframes floatPhone3 {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-16px);
	}
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 28px;
	height: 24px;
	border: none;
	background: transparent;
	cursor: pointer;
	padding: 0;
	margin-left: auto;
	flex-shrink: 0;
	position: relative;
	z-index: 101;
}

.mobile-menu-toggle span {
	width: 100%;
	height: 2.5px;
	background: rgba(255, 255, 255, .8);
	border-radius: 2px;
	transition: all .3s ease;
	display: block;
}

nav.scrolled .mobile-menu-toggle span {
	background: var(--tx);
}

.mobile-menu-toggle.open span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.open span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ticket-visual {
		order: -1;
	}

	.solution-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

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

	.ind-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.rf-inner {
		grid-template-columns: 1fr;
	}

	/* App section responsive */
	div[style*="grid-template-columns:1fr 1fr"][style*="gap:80px"] {
		grid-template-columns: 1fr !important;
		gap: 40px !important;
	}
}

@media (max-width: 768px) {
	nav {
		padding: 45px 20px;
		height: 60px;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		right: 0;
		flex-direction: column;
		gap: 0;
		background: rgba(8, 14, 28, .98);
		backdrop-filter: blur(12px);
		padding: 16px 0;
		z-index: 99;
		border-bottom: 1px solid rgba(255, 255, 255, .1);
		max-height: calc(100vh - 60px);
		overflow-y: auto;
	}

	nav.scrolled .nav-links {
		background: rgba(255, 255, 255, .98);
		backdrop-filter: blur(12px);
	}

	.nav-links.open {
		display: flex;
	}

	.nav-links a {
		padding: 12px 20px;
		font-size: 14px;
		display: block;
		border-bottom: 1px solid rgba(255, 255, 255, .08);
		white-space: nowrap;
	}

	nav.scrolled .nav-links a {
		border-bottom: 1px solid rgba(0, 0, 0, .08);
	}

	.nav-cta {
		display: none;
	}

	.nav-logo {
		flex: 1;
		min-width: 0;
	}

	h1 {
		font-size: 42px;
		line-height: 1.2;
	}

	.hero {
		padding: 100px 20px 60px;
	}

	.hero-cta {
		flex-direction: row;
		gap: 10px;
	}

	.btn-large {
		width: 100%;
		font-size: 12px;

	}

	.problem {
		padding: 60px 20px;
	}

	.problem-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.solution {
		padding: 60px 20px;
	}

	.how {
		padding: 60px 20px;
	}

	.steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.steps::before {
		display: none;
	}

	.step-num {
		width: 44px;
		height: 44px;
		font-size: 16px;
	}

	.return-feat {
		padding: 60px 20px;
	}

	.rf-inner {
		gap: 40px;
	}

	.industries {
		padding: 60px 20px;
	}

	.ind-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.pricing {
		padding: 60px 20px;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.section-title {
		font-size: 32px;
	}

	.sol-title,
	.rf-title,
	.cta-title {
		font-size: 32px;
	}

	.chaos-row {
		grid-template-columns: 1fr;
	}

	.cta-section {
		padding: 60px 20px;
	}

	/* CONTACT SECTION RESPONSIVE */
	.contact-section {
		padding: 60px 20px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-form-grid {
		grid-template-columns: 1fr;
	}

	/* FOOTER RESPONSIVE */
	footer {
		padding: 40px 20px 32px;
	}

	.footer-top {
		flex-direction: column;
		gap: 28px;
		margin-bottom: 28px;
		padding-bottom: 28px;
	}

	.footer-cols {
		grid-template-columns: 1fr;
		gap: 24px;
		width: 100%;
	}

	.footer-bot {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}
}

@media (max-width: 480px) {
	* {
		max-width: 100%;
	}

	nav {
		padding: 45px 16px;
		gap: 8px;
	}

	.mobile-menu-toggle {
		width: 24px;
		height: 20px;
		margin: 0;
	}

	.mobile-menu-toggle span {
		height: 2px;
		gap: 3px;
	}

	.nav-logo-icon {
		width: 28px;
		height: 28px;
	}

	.nav-logo-name {
		font-size: 16px;
	}

	h1 {
		font-size: 32px;
	}

	.hero {
		padding: 80px 16px 50px;
		min-height: auto;
	}

	.hero-grid {
		display: flex;
		flex-direction: column;
		gap: 30px;
		margin-top: 40px;
	}

	.ticket-visual {
		min-height: 300px;
	}

	.big-ticket {
		padding: 24px;
	}

	.ticket-num {
		font-size: 56px;
	}

	.hero-sub {
		font-size: 16px;
	}

	.hero-cta {
		flex-direction: row;
	}

	.section-title {
		font-size: 26px;
	}

	.sol-title,
	.rf-title,
	.cta-title {
		font-size: 26px;
	}

	.problem {
		padding: 40px 16px;
	}

	.problem-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.solution {
		padding: 40px 16px;
	}

	.solution-inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.how {
		padding: 40px 16px;
	}

	.return-feat {
		padding: 40px 16px;
	}

	.rf-inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.industries {
		padding: 40px 16px;
	}

	.ind-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.pricing {
		padding: 40px 16px;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.cta-section {
		padding: 40px 16px;
	}

	.steps {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.chaos-row {
		grid-template-columns: 1fr;
	}

	.sol-stats {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.ticket-meta {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.pc {
		padding: 24px;
	}

	.hero-eyebrow {
		font-size: 11px;
	}

	.flow-tabs {
		flex-wrap: wrap;
	}

	.flow-tab {
		padding: 8px 16px;
		font-size: 12px;
	}

	/* Ensure all grids are single column */
	[style*="grid-template-columns: repeat"] {
		grid-template-columns: 1fr !important;
	}

	.floating-cards {
		display: none;
	}

	.return-feat::before {
		font-size: 200px;
		top: -50px;
		right: -30px;
	}

	.hero::before,
	.hero::after {
		width: 400px;
		height: 400px;
	}

	/* CONTACT SECTION RESPONSIVE */
	.contact-section {
		padding: 40px 16px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-form-grid {
		grid-template-columns: 1fr;
	}

	/* FOOTER RESPONSIVE */
	footer {
		padding: 40px 16px 32px;
	}

	.footer-top {
		flex-direction: column;
		gap: 28px;
		margin-bottom: 28px;
		padding-bottom: 28px;
	}

	.footer-cols {
		grid-template-columns: 1fr;
		gap: 24px;
		width: 100%;
	}

	.footer-bot {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}

	/* Catch all for any remaining inline grids */
	div[style*="display:grid"][style*="grid-template-columns"] {
		grid-template-columns: 1fr !important;
	}

	/* App section responsive */
	div[style*="grid-template-columns:1fr 1fr"][style*="gap:80px"] {
		grid-template-columns: 1fr !important;
		gap: 30px !important;
	}

	/* Pricing grid 768px */
	div[style*="grid-template-columns:1fr 1fr"][style*="gap:5px"] {
		grid-template-columns: 1fr !important;
	}

	/* App Store/Play grid */
	div[style*="grid-template-columns:1fr 1fr"][style*="gap:clamp"] {
		grid-template-columns: 1fr !important;
	}
}

.phone-mockups {
	display: flex;
	gap: 16px;
	align-items: flex-end;
	justify-content: center;
	height: 580px;
}

@media (max-width: 768px) {
	.hero-social {
		flex-direction: column;
	}

	.phone-mockups {
		justify-content: center;
		flex-direction: column;
		height: auto;
		align-items: center;
	}
}

/* Inner Pager Banner */
/* ── Inner page additions ── */
.page-hero {
	background: var(--navy);
	padding: 160px 48px 90px;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.page-hero::before {
	content: '';
	position: absolute;
	width: 700px;
	height: 700px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, .16) 0%, transparent 70%);
	top: -220px;
	right: -160px;
	pointer-events: none;
}

.page-hero::after {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(124, 58, 237, .1) 0%, transparent 70%);
	bottom: -160px;
	left: -100px;
	pointer-events: none;
}

.page-hero .crumb {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	color: rgba(255, 255, 255, .4);
	letter-spacing: .05em;
	text-transform: uppercase;
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
}

.ind-detail-hero .crumb {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	color: rgba(255, 255, 255, .4);
	letter-spacing: .05em;
	text-transform: uppercase;
	position: relative;
	z-index: 1;

}



.page-hero .crumb a,
.ind-detail-hero .crumb a {
	color: rgba(255, 255, 255, .4);
	text-decoration: none;
}

.page-hero .crumb a:hover,
.ind-detail-hero .crumb a:hover {
	color: #fff;
}

.page-hero h1 {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto 18px;
}

.page-hero p {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	font-size: 17px;
	color: rgba(255, 255, 255, .55);
	line-height: 1.7;
}


/* About page */

.about-story-section {
	background: #fff;
	padding: 90px 48px;
}

.about-story-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.about-story-card {
	background: #ffffff;
	border-radius: 24px;
	padding: 36px 32px;
	border: 1px solid rgba(226, 232, 240, 0.8);
	box-shadow: 0 10px 30px -5px rgba(37, 99, 235, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-story-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.12), 0 8px 12px -4px rgba(0, 0, 0, 0.03);
}

.about-story-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #2563EB, #60A5FA);
}

.about-story-card-container {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about-story-card-container h2,
.about-story-card-container h3,
.about-story-card-container h4 {
	font-size: 22px;
	font-weight: 800;
	color: #0F172A;
	margin: 0 0 6px 0;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.about-story-card-container p {
	font-size: 15px;
	color: #64748B;
	line-height: 1.6;
	margin: 0 0 8px 0;
}

.about-story-card-container ul {
	list-style: none;
	padding: 0;
	margin: 8px 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.about-story-card-container ul li {
	position: relative;
	padding-left: 36px;
	font-size: 15px;
	font-weight: 600;
	color: #1E293B;
	line-height: 1.5;
	display: flex;
	align-items: center;
	min-height: 24px;
	transition: all 0.25s ease;
}

.about-story-card-container ul li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
	border: 1.5px solid rgba(37, 99, 235, 0.25);
	border-radius: 50%;
	color: #2563EB;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
	box-shadow: 0 2px 6px rgba(37, 99, 235, 0.12);
	transition: all 0.25s ease;
}

.about-story-card-container ul li:hover {
	color: #2563EB;
	transform: translateX(4px);
}

.about-story-card-container ul li:hover::before {
	background: #2563EB;
	color: #ffffff;
	border-color: #2563EB;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.about-story-card-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.about-story-card-item-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--bluel);
	border: 1px solid rgba(37, 99, 235, .12);
	padding: 8px;
	object-fit: contain;
	flex-shrink: 0;
}

.about-story-card-item-title {
	font-size: 14px;
	font-weight: 800;
	color: var(--tx);
}

.about-storydesc {
	font-size: 15.5px;
	color: var(--mu);
	line-height: 1.8;
	margin-top: 16px;
}

.about-story-card-item-description {
	font-size: 13px;
	color: var(--mu);
	margin-top: 2px;
}


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

/* Status Section */
.section-statsnum {
	background: var(--navy);
	padding: 80px 48px;
}

.statsnum-headersec {
	text-align: center;
	margin-bottom: 8px;
}

.statsnum-eyebrow {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue2);
	margin-bottom: 12px;
}

.statsnum-title {
	color: #fff;
	font-size: 38px;
}



.about-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 48px;
	align-items: center;
}

@media (max-width: 768px) {
	.about-stat-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

.about-stat {
	background: #fff;
	border-radius: 16px;
	border: 1.5px solid var(--bd);
	padding: 26px 20px;
	text-align: center;
}

.about-stat-num {
	font-family: 'Fraunces', serif;
	font-size: 38px;
	font-weight: 900;
	color: var(--blue);
	line-height: 1;
	margin-bottom: 6px;
}

.about-stat-lbl {
	font-size: 13px;
	color: var(--mu);
	font-weight: 600;
}

/* Value Section */

.section-value {
	background: #fff;
	padding: 90px 48px;
}

.value-sechead {
	text-align: center;
	margin-bottom: 8px;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

@media (max-width: 768px) {
	.value-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.section-value {
		padding: 60px 20px;
	}
}

@media (max-width: 480px) {
	.value-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.value-card {
	background: var(--bg);
	border-radius: 16px;
	padding: 26px;
	border: 1px solid var(--bd);
}

.value-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--bluel);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 16px;
}

.value-icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.value-title {
	font-size: 16px;
	font-weight: 800;
	color: var(--tx);
	margin-bottom: 8px;
}

.value-desc {
	font-size: 13.5px;
	color: var(--mu);
	line-height: 1.65;
}

/* Time line Section */

.section-timeline {
	background: var(--bg);
	padding: 90px 48px;
}

.time-line-container {
	max-width: 760px;
}

.timeline-header-sec {
	text-align: center;
	margin-bottom: 8px;
}

.timeline {
	max-width: 700px;
	margin: 48px auto 0;
	position: relative;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 23px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: var(--bd);
}

.tl-item {
	display: flex;
	gap: 24px;
	padding-bottom: 36px;
	position: relative;
}

.tl-item:last-child {
	padding-bottom: 0;
}

.tl-dot {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--blue);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Fraunces', serif;
	font-weight: 800;
	font-size: 14px;
	flex-shrink: 0;
	z-index: 1;
	flex-direction: column;
}

.tl-body {
	padding-top: 8px;
}

.tl-title {
	font-size: 16px;
	font-weight: 800;
	color: var(--tx);
	margin-bottom: 5px;
}

.tl-desc {
	font-size: 13.5px;
	color: var(--mu);
	line-height: 1.65;
}

/* Capability rows (solutions page) */
.cap-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	padding: 80px 0;
	border-bottom: 1px solid var(--bd);
	scroll-margin-top: 100px;
}

@media (max-width: 768px) {
	.cap-row {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 48px 0;
	}

	.cap-row.reverse .cap-visual {
		order: -1;
	}
}



#queue-management .cap-eyebrow,
#counter-management .cap-eyebrow {
	background: var(--bluel);
	color: var(--blue2);
}

#appointment-scheduling .cap-eyebrow,
#analytics-reports .cap-eyebrow {
	background: #f0f5f4;
	color: #065F46;
}

#live-queue-tracking .cap-eyebrow,
#administration .cap-eyebrow {
	background: #fff2ea;
	color: #92400E;
}

#return-token .cap-eyebrow,
#smart-notification .cap-eyebrow {
	background: var(--pl);
	color: var(--purple);
}

#reports-analytics .cap-eyebrow {
	background: var(--bluel);
	color: var(--blue2);
}

.cap-row:last-child {
	border-bottom: none;
}

.cap-row.reverse .cap-visual {
	order: 2;
}

.cap-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	border-radius: 100px;
	padding: 5px 14px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.cap-title {
	font-family: 'Fraunces', serif;
	font-size: 36px;
	font-weight: 900;
	letter-spacing: -1px;
	color: var(--tx);
	margin-bottom: 14px;
	line-height: 1.15;
}

.cap-desc {
	font-size: 15.5px;
	color: var(--mu);
	line-height: 1.75;
	margin-bottom: 22px;
}

.cap-list {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.cap-list-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--tx);
}

.cap-list-item i {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--green);
	fill: none;
	stroke-width: 2.5;
}

.cap-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cap-visual img {
	width: 100%;
	max-width: 600px;
	height: auto;
	display: block;
	border-radius: 16px;
	user-select: none;
	pointer-events: none;
	animation: floatPhone2 4.5s ease-in-out infinite
}

/* Quick Nav Styling */
.quick-nav-container {
	background: #fff;
	padding: 28px 48px;
	border-bottom: 1px solid var(--bd);
	position: sticky;
	top: 0;
	z-index: 50;
}

.quick-nav-list {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.quick-nav-link {
	padding: 8px 16px;
	border-radius: 100px;
	border: 1.5px solid var(--bd);
	font-size: 12px;
	font-weight: 700;
	color: var(--mu);
	text-decoration: none;
	background: #fff;
	transition: all 0.2s ease;
}

.quick-nav-link:hover {
	color: var(--blue);
	border-color: var(--blue);
}

.quick-nav-link.active {
	color: var(--purple) !important;
	background: var(--pl) !important;
	border-color: var(--purple) !important;
}

@media (max-width: 768px) {
	.quick-nav-container {
		top: 0;
		padding: 16px 20px;
	}
}

/* Industries Page */
.ind-hub-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.ind-hub-card {
	background: #fff;
	border-radius: 18px;
	border: 1.5px solid var(--bd);
	padding: 0;
	overflow: hidden;
	text-decoration: none;
	display: block;
	transition: all .2s;
}

.ind-hub-card:hover {
	border-color: var(--blue);
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(37, 99, 235, .12);
}

.ind-hub-img {
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 56px;
}

.ind-hub-body {
	padding: 22px;
}

.ind-hub-title {
	font-family: 'Fraunces', serif;
	font-size: 19px;
	font-weight: 700;
	color: var(--tx);
	margin-bottom: 8px;
}

.ind-hub-desc {
	font-size: 13.5px;
	color: var(--mu);
	line-height: 1.6;
	margin-bottom: 14px;
}

.ind-hub-link {
	font-size: 13px;
	font-weight: 800;
	color: var(--blue);
}

/* Industry Hub Grid — Tablet (2 columns) */
@media (max-width: 1024px) {
	.ind-hub-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin-top: 36px;
	}

	.ind-hub-img {
		height: 120px;
		font-size: 46px;
	}

	.ind-hub-title {
		font-size: 17px;
	}
}

/* Industry Hub Grid — Mobile (1 column) */
@media (max-width: 768px) {
	.ind-hub-grid {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 24px;
	}

	.ind-hub-img {
		height: 100px;
		font-size: 40px;
	}

	.ind-hub-body {
		padding: 16px;
	}

	.ind-hub-title {
		font-size: 16px;
	}

	.ind-hub-card:hover {
		transform: none;
	}
}

/* Industry detail page */
.ind-detail-hero {
	background: linear-gradient(135deg, var(--navy) 0%, #16233F 100%);
	padding: 160px 48px 80px;
	position: relative;
	overflow: hidden;
}

.ind-detail-hero::before {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, .18) 0%, transparent 70%);
	top: -180px;
	right: -120px;
}

.ind-detail-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.pill-row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 24px;
}

.pill {
	background: rgba(255, 255, 255, 0.12) !important;
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
	border-radius: 100px !important;
	padding: 8px 18px !important;
	font-size: 13.5px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	letter-spacing: 0.02em !important;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
	backdrop-filter: blur(8px) !important;
	transition: all 0.25s ease !important;
}

.pill:hover {
	background: rgba(255, 255, 255, 0.22) !important;
	border-color: #38bdf8 !important;
	color: #ffffff !important;
	transform: translateY(-2px) !important;
}

.counter-card-demo {
	border-radius: 18px;
	backdrop-filter: blur(8px);
	padding: 0;
	overflow: hidden;
	border: none;
}

.counter-card-demo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	animation: floatPhone2 4.5s ease-in-out infinite;
}

.cc-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 11px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.cc-row:last-child {
	border-bottom: none;
}

.cc-label {
	font-size: 13px;
	color: rgba(255, 255, 255, .5);
}

.cc-val {
	font-size: 14px;
	font-weight: 800;
	color: #fff;
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.benefit-card {
	background: #fff;
	border-radius: 16px;
	border: 1.5px solid var(--bd);
	padding: 26px;
}

.benefit-num {
	font-family: 'Fraunces', serif;
	font-size: 30px;
	font-weight: 900;
	color: var(--blue);
	opacity: .25;
	line-height: 1;
	margin-bottom: 10px;
}

.benefit-title {
	font-size: 15.5px;
	font-weight: 800;
	color: var(--tx);
	margin-bottom: 8px;
}

.benefit-desc {
	font-size: 13px;
	color: var(--mu);
	line-height: 1.6;
}

.workflow-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 40px;
}

.wf-step {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 20px;
	padding: 22px 0;
	border-bottom: 1px solid var(--bd);
}

.wf-step:last-child {
	border-bottom: none;
}

.wf-num {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--bluel);
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Fraunces', serif;
	font-weight: 800;
	font-size: 17px;
}

.wf-title {
	font-size: 16px;
	font-weight: 800;
	color: var(--tx);
	margin-bottom: 5px;
}

.wf-desc {
	font-size: 13.5px;
	color: var(--mu);
	line-height: 1.65;
}

.stat-band {
	background: var(--blue);
	padding: 60px 48px;
}

.stat-band-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	text-align: center;
}

.stat-band-num {
	font-family: 'Fraunces', serif;
	font-size: 44px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
}

.stat-band-lbl {
	font-size: 14px;
	color: rgba(255, 255, 255, .7);
	font-weight: 600;
	margin-top: 8px;
}

@media(max-width:900px) {

	.ind-hub-grid,
	.about-stat-grid,
	.value-grid,
	.benefit-grid {
		grid-template-columns: 1fr 1fr;
	}

	.cap-row,
	.ind-detail-grid,
	.stat-band-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.cap-row.reverse .cap-visual {
		order: 0;
	}

	.wf-step {
		grid-template-columns: 48px 1fr;
	}
}

@media(max-width:640px) {

	.ind-hub-grid,
	.about-stat-grid,
	.value-grid,
	.benefit-grid {
		grid-template-columns: 1fr;
	}
}


.about-story-section {
	position: relative;
	background-color: #f8fafc;
	background-image:
		radial-gradient(circle at 90% 15%, rgba(37, 99, 235, 0.07) 0%, transparent 55%),
		radial-gradient(circle at 10% 85%, rgba(14, 165, 233, 0.07) 0%, transparent 55%),
		radial-gradient(rgba(37, 99, 235, 0.08) 1.2px, transparent 1.2px),
		linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
		linear-gradient(0deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
	background-size: 100% 100%, 100% 100%, 22px 22px, 44px 44px, 44px 44px;
	padding: 100px 48px;
	overflow: hidden;
}

.about-story-section .max-w {
	position: relative;
	z-index: 2;
}

.about-story-card {
	background: #ffffff;
	border-radius: 24px;
	padding: 40px 36px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow:
		0 12px 35px -5px rgba(0, 0, 0, 0.04),
		0 4px 10px -2px rgba(0, 0, 0, 0.02);
}

/* 2. STATS SECTION - DARK COMBINATION */
.section-statsnum {
	position: relative;
	background-color: #030712;
	background-image:
		radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.22) 0%, transparent 50%),
		radial-gradient(circle at 15% 75%, rgba(37, 99, 235, 0.16) 0%, transparent 50%),
		radial-gradient(rgba(56, 189, 248, 0.22) 1.2px, transparent 1.2px),
		linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px),
		linear-gradient(0deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
	background-size: 100% 100%, 100% 100%, 22px 22px, 44px 44px, 44px 44px;
	padding: 100px 48px;
	overflow: hidden;
}

.section-statsnum .max-w {
	position: relative;
	z-index: 2;
}

.statsnum-eyebrow {
	color: #38bdf8;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.statsnum-title {
	color: #ffffff;
	font-family: 'Fraunces', serif;
	font-size: 40px;
	font-weight: 800;
}

.about-stat {
	background: #080e1e;
	border: 1.5px solid rgba(56, 189, 248, 0.35);
	border-radius: 20px;
	padding: 32px 24px;
	box-shadow:
		0 15px 40px -10px rgba(0, 0, 0, 0.75),
		0 0 25px rgba(56, 189, 248, 0.15);
	transition: all 0.3s ease;
}

.about-stat:hover {
	transform: translateY(-6px);
	border-color: #38bdf8;
	box-shadow:
		0 25px 50px -10px rgba(0, 0, 0, 0.85),
		0 0 35px rgba(56, 189, 248, 0.3);
}

.about-stat-num {
	font-family: 'Fraunces', serif;
	font-size: 42px;
	font-weight: 900;
	color: #38bdf8;
	margin-bottom: 8px;
}

.about-stat-lbl {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
}

/* 3. VALUES SECTION - LIGHT COMBINATION */
.section-value {
	position: relative;
	background-color: #f8fafc;
	background-image:
		radial-gradient(circle at 90% 15%, rgba(37, 99, 235, 0.07) 0%, transparent 55%),
		radial-gradient(circle at 10% 85%, rgba(14, 165, 233, 0.07) 0%, transparent 55%),
		radial-gradient(rgba(37, 99, 235, 0.08) 1.2px, transparent 1.2px),
		linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
		linear-gradient(0deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
	background-size: 100% 100%, 100% 100%, 22px 22px, 44px 44px, 44px 44px;
	padding: 100px 48px;
	overflow: hidden;
}

.section-value .max-w {
	position: relative;
	z-index: 2;
}

.value-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 32px 28px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow:
		0 10px 30px -5px rgba(0, 0, 0, 0.04),
		0 4px 6px -2px rgba(0, 0, 0, 0.02);
	transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.value-card:hover {
	background: #ffffff;
	border-color: #38bdf8;
	transform: translateY(-6px);
	box-shadow:
		0 20px 40px -10px rgba(14, 165, 233, 0.12),
		0 0 20px rgba(56, 189, 248, 0.15);
}

.value-title {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}

.value-desc {
	font-size: 14.5px;
	color: #475569;
	line-height: 1.6;
}

/* 4. OVERVIEW SECTION (MISSION & VISION) - LIGHT WHITE COMBINATION */
.qtrack-overview-section {
	position: relative;
	background-color: #f8fafc;
	background-image:
		radial-gradient(circle at 90% 15%, rgba(37, 99, 235, 0.07) 0%, transparent 55%),
		radial-gradient(circle at 10% 85%, rgba(14, 165, 233, 0.07) 0%, transparent 55%),
		radial-gradient(rgba(37, 99, 235, 0.08) 1.2px, transparent 1.2px),
		linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
		linear-gradient(0deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
	background-size: 100% 100%, 100% 100%, 22px 22px, 44px 44px, 44px 44px;
	padding: 100px 48px;
	overflow: hidden;
}

.qtrack-overview-section .max-w {
	position: relative;
	z-index: 2;
}

.qtrack-feat-card,
.qtrack-mv-card {
	background: #ffffff;
	border-radius: 24px;
	padding: 36px 32px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow:
		0 12px 35px -5px rgba(0, 0, 0, 0.04),
		0 4px 10px -2px rgba(0, 0, 0, 0.02);
	color: #0f172a;
}

.qtrack-feat-title {
	color: #0f172a;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.qtrack-feat-desc,
.qtrack-mv-quote {
	color: #475569;
	font-size: 15px;
	line-height: 1.75;
}

.qtrack-mv-badge {
	background: rgba(14, 165, 233, 0.1);
	color: #0284c7;
	border: 1.5px solid rgba(56, 189, 248, 0.3);
}

/* 5. WHY CHOOSE Q TRACK SECTION - LIGHT WHITE COMBINATION GRID */
.why-qtrack-section {
	position: relative;
	background-color: #f8fafc;
	background-image: 
		radial-gradient(circle at 90% 15%, rgba(37, 99, 235, 0.07) 0%, transparent 55%),
		radial-gradient(circle at 10% 85%, rgba(14, 165, 233, 0.07) 0%, transparent 55%),
		radial-gradient(rgba(37, 99, 235, 0.08) 1.2px, transparent 1.2px),
		linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
		linear-gradient(0deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
	background-size: 100% 100%, 100% 100%, 22px 22px, 44px 44px, 44px 44px;
	padding: 100px 48px;
	overflow: hidden;
}

.why-qtrack-section .max-w {
	position: relative;
	z-index: 2;
}

.why-qtrack-callout {
	background: #ffffff;
	border-radius: 20px;
	padding: 24px 28px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow: 
		0 10px 30px -5px rgba(0, 0, 0, 0.04),
		0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

.why-qtrack-callout-text strong {
	color: #0f172a;
	font-size: 16px;
}

.why-qtrack-callout-text span {
	color: #475569;
	font-size: 14px;
}

.why-qtrack-item {
	background: #ffffff;
	border-radius: 16px;
	padding: 16px 20px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow: 
		0 4px 14px rgba(0, 0, 0, 0.03),
		0 1px 3px rgba(0, 0, 0, 0.02);
	transition: all 0.25s ease;
}

.why-qtrack-item:hover {
	transform: translateY(-2px);
	border-color: rgba(56, 189, 248, 0.6);
	box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.12);
}

.why-qtrack-label {
	color: #0f172a;
	font-weight: 600;
	font-size: 15px;
}

.why-qtrack-check {
	background: rgba(14, 165, 233, 0.12);
	border: 1.5px solid #0284c7;
	color: #0284c7;
}