/* =============================================
   Neozen Technologies — Global Stylesheet
   ============================================= */


/* =============================================
   REQUIREMENTS MODAL
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
	--neo-blue: #1247d6;
	--neo-yellow: #ffcb05;
	--neo-red: #ef3f34;
	--neo-navy: #0a1d4e;
	--neo-text: #1f2633;
	--neo-muted: #596078;
	--neo-surface: #ffffff;
	--neo-bg: #f6f9ff;
	--shadow-soft: 0 14px 40px rgba(16, 33, 84, 0.14);
	--radius-xl: 24px;
}

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

/* ---------- Base ---------- */
body {
	font-family: 'Poppins', sans-serif;
	color: var(--neo-text);
	background:
		radial-gradient(circle at 12% 8%, rgba(255, 203, 5, 0.34) 0%, transparent 32%),
		radial-gradient(circle at 85% 14%, rgba(18, 71, 214, 0.2) 0%, transparent 35%),
		radial-gradient(circle at 25% 88%, rgba(239, 63, 52, 0.16) 0%, transparent 28%),
		var(--neo-bg);
	min-height: 100vh;
	line-height: 1.55;
}

/* ---------- Layout Shell ---------- */
.site-shell {
	width: min(1320px, 92vw);
	margin: 0 auto;
}

/* =============================================
   HEADER / TOP NAV
   ============================================= */

.top-nav {
	position: sticky;
	top: 16px;
	z-index: 100;
	margin-top: 16px;
	border-radius: 999px;
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.92);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	box-shadow: var(--shadow-soft);
	animation: slideInTop 0.8s ease;
	border: 1px solid rgba(18, 71, 214, 0.08);
}

/* Brand */
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.brand-logo {
	height: 50px;
	width: auto;
	flex-shrink: 0;
	border-radius: 8px;
	object-fit: contain;
}

.brand-name {
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--neo-navy);
	letter-spacing: 0.2px;
	white-space: nowrap;
}

.brand-name span {
	color: var(--neo-blue);
}

/* Center Nav */
.nav-center {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
}

.nav-links > li {
	position: relative;
	padding-bottom: 4px;
}

.nav-links a {
	text-decoration: none;
	color: var(--neo-muted);
	font-weight: 500;
	font-size: 1rem;
	padding: 10px 16px;
	border-radius: 999px;
	transition: background-color 0.22s ease, color 0.22s ease;
	white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
	background: rgba(18, 71, 214, 0.08);
	color: var(--neo-blue);
}

.dropdown-trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.dropdown-trigger::after {
	content: '+';
	position: static;
	transform: none;
	font-size: 1rem;
	font-weight: 700;
	color: var(--neo-blue);
	opacity: 0.75;
	line-height: 1;
	transition: opacity 0.2s ease;
}

.dropdown-menu {
	position: absolute;
	top: calc(100% + 1px);
	left: 0;
	min-width: 290px;
	background: #fff;
	border: 1px solid rgba(18, 71, 214, 0.12);
	border-radius: 12px;
	box-shadow: 0 16px 28px rgba(14, 32, 84, 0.16);
	padding: 8px;
	list-style: none;
	opacity: 0;
	transform: translateY(6px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 200;
}

.dropdown-menu li a {
	display: block;
	padding: 10px 12px;
	font-size: 0.9rem;
	line-height: 1.35;
	border-radius: 10px;
	color: var(--neo-navy);
	white-space: normal;
}

.dropdown-menu li + li {
	border-top: 1px solid rgba(18, 71, 214, 0.12);
	margin-top: 4px;
	padding-top: 4px;
}

.dropdown-menu li a:hover {
	background: rgba(18, 71, 214, 0.08);
	color: var(--neo-blue);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.has-dropdown:hover .dropdown-trigger::after,
.has-dropdown:focus-within .dropdown-trigger::after,
.has-dropdown.open .dropdown-trigger::after {
	content: '-';
	opacity: 1;
}

.dropdown-sub-trigger {
	position: relative;
	padding-right: 24px !important;
}

.dropdown-sub-trigger::after {
	content: '+';
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-54%);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	color: var(--neo-blue);
	opacity: 0.85;
}

.has-dropdown-sub {
	position: relative;
}

.has-dropdown-sub::after {
	content: '';
	position: absolute;
	top: 0;
	right: -10px;
	width: 12px;
	height: 100%;
}

.dropdown-submenu {
	position: absolute;
	top: 0;
	left: calc(100% + 1px);
	min-width: 220px;
	background: #fff;
	border: 1px solid rgba(18, 71, 214, 0.12);
	border-radius: 12px;
	box-shadow: 0 16px 28px rgba(14, 32, 84, 0.16);
	padding: 8px;
	list-style: none;
	opacity: 0;
	transform: translateX(2px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 230;
}

.dropdown-submenu li + li {
	border-top: 1px solid rgba(18, 71, 214, 0.12);
	margin-top: 4px;
	padding-top: 4px;
}

.has-dropdown-sub:hover .dropdown-submenu,
.has-dropdown-sub:focus-within .dropdown-submenu,
.has-dropdown-sub.open .dropdown-submenu {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.has-dropdown-sub:hover .dropdown-sub-trigger::after,
.has-dropdown-sub:focus-within .dropdown-sub-trigger::after,
.has-dropdown-sub.open .dropdown-sub-trigger::after {
	content: '-';
}

/* Right CTA */
.nav-action {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.btn-call {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: linear-gradient(90deg, var(--neo-blue), var(--neo-red));
	color: #fff;
	text-decoration: none;
	padding: 12px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 1rem;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(18, 71, 214, 0.3);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-call:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(18, 71, 214, 0.4);
}

.btn-call svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	border-radius: 8px;
	flex-shrink: 0;
}

.hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--neo-navy);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav drawer */
.mobile-nav {
	display: none;
	flex-direction: column;
	gap: 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	max-height: 100vh;
	background: rgba(255, 255, 255, 0.98);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-radius: 0;
	padding: 0;
	margin-top: 0;
	box-shadow: var(--shadow-soft);
	border: none;
	animation: riseIn 0.25s ease;
	z-index: 150;
	overflow-y: auto;
}

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

.mobile-nav__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid rgba(18, 71, 214, 0.12);
	flex-shrink: 0;
	gap: 12px;
}

.mobile-nav__logo {
	height: 42px;
	width: auto;
	object-fit: contain;
}

.mobile-nav__close {
	position: static;
	width: 40px;
	height: 40px;
	border: none;
	background: var(--neo-red);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 12px rgba(239, 63, 52, 0.3);
	flex-shrink: 0;
	z-index: 10;
}

.mobile-nav__close:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(239, 63, 52, 0.4);
}

.mobile-nav__close svg {
	width: 22px;
	height: 22px;
	stroke: white;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Content area of mobile nav */
.mobile-nav > a:first-of-type,
.mobile-nav > .mobile-group:first-of-type {
	margin-top: 12px;
}

.mobile-nav > a {
	margin-left: 8px;
	margin-right: 8px;
}

.mobile-nav > a:last-of-type {
	margin-bottom: 20px;
}

.mobile-nav > .mobile-group:last-of-type {
	margin-bottom: 20px;
}

/* Backdrop for mobile menu */
body::before {
	content: '';
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 140;
}

body.mobile-nav-open::before {
	display: block;
}

.mobile-nav a {
	text-decoration: none;
	color: var(--neo-navy);
	font-weight: 500;
	font-size: 0.95rem;
	padding: 11px 16px;
	border-radius: 12px;
	transition: background-color 0.2s ease;
	margin-top: 0;
	display: block;
}

.mobile-nav a:hover {
	background: rgba(18, 71, 214, 0.07);
	color: var(--neo-blue);
}

.mobile-group {
	border: 1px solid rgba(18, 71, 214, 0.12);
	border-radius: 12px;
	margin: 8px;
	overflow: hidden;
	background: rgba(18, 71, 214, 0.03);
}

.mobile-group summary {
	list-style: none;
	cursor: pointer;
	padding: 11px 16px;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--neo-navy);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mobile-group summary::-webkit-details-marker {
	display: none;
}

.mobile-group summary::after {
	content: '+';
	font-size: 1rem;
	font-weight: 700;
	color: var(--neo-blue);
}

.mobile-group[open] summary::after {
	content: '-';
}

.mobile-group a {
	display: block;
	margin: 0 8px 8px;
	padding: 9px 12px;
	font-size: 0.9rem;
	border-radius: 10px;
	color: var(--neo-muted);
	text-decoration: none;
	line-height: 1.35;
}

.mobile-group a + a {
	border-top: 1px solid rgba(18, 71, 214, 0.14);
	padding-top: 10px;
}

.mobile-sub-group {
	margin: 0 8px 8px;
	border: 1px solid rgba(18, 71, 214, 0.14);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.mobile-sub-group summary {
	list-style: none;
	cursor: pointer;
	padding: 9px 12px;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--neo-navy);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mobile-sub-group summary::-webkit-details-marker {
	display: none;
}

.mobile-sub-group summary::after {
	content: '+';
	font-size: 1rem;
	font-weight: 700;
	color: var(--neo-blue);
}

.mobile-sub-group[open] summary::after {
	content: '-';
}

.mobile-sub-group a {
	margin: 0 8px 8px;
	padding: 8px 10px;
	font-size: 0.88rem;
	border-radius: 8px;
}

.mobile-group a:hover {
	background: rgba(18, 71, 214, 0.08);
	color: var(--neo-blue);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
	margin-top: 24px;
	padding: clamp(28px, 4vw, 48px);
	border-radius: var(--radius-xl);
	background: linear-gradient(120deg, #ffffff 0%, #eef3ff 100%);
	box-shadow: var(--shadow-soft);
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 32px;
	align-items: center;
	animation: riseIn 0.9s ease;
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hero-media {
	width: 100%;
	height: 100%;
	min-height: 320px;
}

.hero-showcase {
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 14% 16%, rgba(255, 203, 5, 0.22), transparent 34%),
		radial-gradient(circle at 88% 14%, rgba(18, 71, 214, 0.24), transparent 36%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 255, 0.95));
	border: 2px solid rgba(18, 71, 214, 0.12);
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	min-height: 320px;
}

.hero-showcase:hover {
	transform: scale(1.02);
	box-shadow: 0 16px 40px rgba(18, 71, 214, 0.15);
}

.hero-showcase__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	animation: heroGlow 4.6s ease-in-out infinite;
}

.hero-showcase__glow--one {
	width: 210px;
	height: 210px;
	top: -68px;
	right: -56px;
	background: rgba(18, 71, 214, 0.22);
}

.hero-showcase__glow--two {
	width: 190px;
	height: 190px;
	left: -58px;
	bottom: -72px;
	background: rgba(239, 63, 52, 0.18);
	animation-delay: 1s;
}

.hero-showcase__card {
	position: absolute;
	inset: 24px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(18, 71, 214, 0.15);
	border-radius: 18px;
	padding: 14px;
	box-shadow: 0 18px 34px rgba(16, 33, 84, 0.14);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	display: flex;
	flex-direction: column;
}

.hero-showcase__marquee {
	overflow: hidden;
	border: 1px solid rgba(18, 71, 214, 0.16);
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(18, 71, 214, 0.09), rgba(255, 203, 5, 0.16));
	padding: 8px 0;
	margin-bottom: 12px;
}

.hero-showcase__marquee-track {
	display: inline-flex;
	align-items: center;
	gap: 26px;
	white-space: nowrap;
	padding-left: 18px;
	animation: heroWorldMarquee 18s linear infinite;
}

.hero-showcase__marquee-track span {
	font-size: 0.76rem;
	font-weight: 700;
	color: #0f3db9;
	letter-spacing: 0.2px;
	position: relative;
}

.hero-showcase__marquee-track span::before {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #ef3f34;
	margin-right: 8px;
	vertical-align: middle;
}

.hero-orbit {
	position: relative;
	height: 160px;
	margin-bottom: 12px;
	display: grid;
	place-items: center;
}

.hero-orbit__ring {
	position: absolute;
	border-radius: 50%;
	border: 1px dashed rgba(18, 71, 214, 0.26);
	animation: heroOrbitSpin 14s linear infinite;
}

.hero-orbit__ring--one {
	width: 168px;
	height: 168px;
}

.hero-orbit__ring--two {
	width: 220px;
	height: 220px;
	animation-direction: reverse;
	animation-duration: 20s;
}

.hero-orbit__core {
	position: relative;
	width: 104px;
	height: 104px;
	border-radius: 50%;
	background: radial-gradient(circle at 28% 24%, #ffffff 0%, #e8efff 62%, #cfdbff 100%);
	border: 1px solid rgba(18, 71, 214, 0.2);
	box-shadow: 0 12px 24px rgba(16, 33, 84, 0.16);
	display: grid;
	place-items: center;
	text-align: center;
	z-index: 2;
}

.hero-orbit__core strong {
	font-size: 1.03rem;
	line-height: 1;
	color: #123a9f;
}

.hero-orbit__core small {
	font-size: 0.68rem;
	font-weight: 600;
	color: var(--neo-muted);
}

.hero-orbit__chip {
	position: absolute;
	padding: 7px 10px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(18, 71, 214, 0.22);
	font-size: 0.72rem;
	font-weight: 600;
	box-shadow: 0 8px 16px rgba(16, 33, 84, 0.12);
	white-space: nowrap;
	z-index: 3;
}

.hero-orbit__chip--web {
	top: 4px;
	left: 50%;
	transform: translateX(-50%);
	color: #0f3db9;
}

.hero-orbit__chip--design {
	left: 8px;
	bottom: 24px;
	color: #c0342a;
}

.hero-orbit__chip--marketing {
	right: 8px;
	bottom: 24px;
	color: #886800;
}

.hero-service-grid {
	display: grid;
	grid-template-columns: 1fr 92px;
	gap: 10px;
	height: calc(100% - 200px);
	min-height: 164px;
}

.hero-service-lane {
	overflow: hidden;
	border: 1px solid rgba(18, 71, 214, 0.14);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.88);
	position: relative;
}

.hero-service-lane--left,
.hero-service-lane--right {
	height: 74px;
}

.hero-service-lane--right {
	margin-top: 10px;
}

.hero-service-lane__track {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	padding: 8px;
}

.hero-service-lane__track span {
	padding: 7px 10px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(18, 71, 214, 0.18);
	font-size: 0.7rem;
	font-weight: 600;
	color: #123a9f;
	box-shadow: 0 4px 10px rgba(16, 33, 84, 0.08);
}

.hero-service-lane--left .hero-service-lane__track {
	animation: heroLaneLeft 24s linear infinite;
}

.hero-service-lane--right .hero-service-lane__track {
	animation: heroLaneRight 24s linear infinite;
}

.hero-service-column {
	overflow: hidden;
	border: 1px solid rgba(18, 71, 214, 0.14);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.88);
	position: relative;
}

.hero-service-column__track {
	display: grid;
	gap: 8px;
	padding: 8px;
	animation: heroLaneVertical 20s linear infinite;
}

.hero-service-column__track span {
	padding: 7px 8px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid rgba(18, 71, 214, 0.18);
	font-size: 0.66rem;
	font-weight: 600;
	color: #153980;
	text-align: center;
	line-height: 1.15;
}

@keyframes heroOrbitSpin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes heroLaneLeft {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@keyframes heroLaneRight {
	from {
		transform: translateX(-50%);
	}

	to {
		transform: translateX(0);
	}
}

@keyframes heroLaneVertical {
	from {
		transform: translateY(0);
	}

	to {
		transform: translateY(-50%);
	}
}

@keyframes heroWorldMarquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@keyframes heroGlow {
	0%,
	100% {
		opacity: 0.7;
	}

	50% {
		opacity: 1;
	}
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 203, 5, 0.2);
	color: #7b5f00;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.hero h1 {
	font-size: clamp(1.8rem, 3.8vw, 3rem);
	line-height: 1.2;
	color: var(--neo-navy);
	letter-spacing: -0.5px;
	background: linear-gradient(92deg, #0a1d4e 0%, #1247d6 58%, #ef3f34 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero h1 span {
	color: var(--neo-red);
}

.hero-subtitle {
	font-size: clamp(1.05rem, 1.8vw, 1.25rem);
	color: var(--neo-muted);
	line-height: 1.6;
	max-width: 55ch;
}

.hero p {
	font-size: 1.02rem;
	color: var(--neo-muted);
	max-width: 52ch;
}

.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding: 12px 20px;
	border-radius: 999px;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
	background: linear-gradient(90deg, var(--neo-blue), var(--neo-red));
	color: #fff;
	box-shadow: 0 12px 24px rgba(22, 53, 150, 0.35);
}

.btn-secondary {
	background: #fff;
	color: var(--neo-blue);
	border: 2px solid rgba(18, 71, 214, 0.25);
}

.btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(18, 71, 214, 0.22);
}

/* =============================================
   HERO STAT CARDS
   ============================================= */

.hero-cards {
	display: none;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.stat-card {
	border-radius: 18px;
	background: var(--neo-surface);
	padding: 18px 16px;
	box-shadow: 0 8px 20px rgba(25, 44, 99, 0.12);
	border: 1px solid rgba(18, 71, 214, 0.08);
}

.stat-card strong {
	display: block;
	font-size: 1.5rem;
	color: var(--neo-blue);
}

.stat-card small {
	color: var(--neo-muted);
	font-weight: 500;
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about-section {
	margin-top: 36px;
	padding: clamp(22px, 4vw, 42px);
	border-radius: var(--radius-xl);
	background: linear-gradient(120deg, #ffffff 0%, #f4f7ff 100%);
	box-shadow: var(--shadow-soft);
	position: relative;
	overflow: hidden;
}

.about-section::before {
	content: '';
	position: absolute;
	width: 320px;
	height: 320px;
	top: -180px;
	right: -120px;
	background: radial-gradient(circle, rgba(18, 71, 214, 0.16), rgba(18, 71, 214, 0));
	pointer-events: none;
}

.about-header {
	text-align: center;
	margin-bottom: 28px;
	position: relative;
	z-index: 1;
}

.about-header h2 {
	font-size: clamp(1.6rem, 2.8vw, 2.2rem);
	line-height: 1.2;
	color: var(--neo-navy);
	margin-bottom: 8px;
	background: linear-gradient(90deg, #1247d6 0%, #0a1d4e 55%, #ef3f34 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about-tagline {
	color: var(--neo-muted);
	font-size: 1.02rem;
	max-width: 74ch;
	margin: 0 auto;
	line-height: 1.65;
}

.about-content {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
	align-items: stretch;
	position: relative;
	z-index: 1;
}

.about-media {
	height: 100%;
}

.about-placeholder {
	border-radius: 22px;
	height: 100%;
	min-height: 360px;
	border: 1px solid rgba(18, 71, 214, 0.14);
	background: linear-gradient(135deg, rgba(255, 203, 5, 0.08), rgba(18, 71, 214, 0.08));
	display: grid;
	place-items: center;
	overflow: hidden;
	box-shadow: 0 18px 38px rgba(11, 31, 92, 0.2);
}

.about-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.about-placeholder:hover .about-image {
	transform: scale(1.04);
}

.about-icon {
	width: 64px;
	height: 64px;
	color: rgba(18, 71, 214, 0.35);
}

.about-details h3 {
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	line-height: 1.25;
	color: var(--neo-navy);
	margin-bottom: 14px;
}

.about-details p {
	color: var(--neo-muted);
	font-size: 1.01rem;
	line-height: 1.7;
	margin-bottom: 18px;
}

.about-details {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(18, 71, 214, 0.12);
	border-radius: 22px;
	padding: clamp(18px, 2.4vw, 28px);
	box-shadow: 0 14px 28px rgba(16, 33, 84, 0.1);
	height: 100%;
}

.about-checklist {
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
	display: grid;
	gap: 10px;
}

.about-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.98rem;
	color: var(--neo-text);
	line-height: 1.55;
	padding: 9px 11px;
	border-radius: 12px;
	background: linear-gradient(90deg, rgba(18, 71, 214, 0.07), rgba(239, 63, 52, 0.05));
	border: 1px solid rgba(18, 71, 214, 0.08);
}

.check-icon {
	display: inline-grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid rgba(18, 71, 214, 0.5);
	color: #fff;
	background: linear-gradient(140deg, #1247d6, #4a57d8);
	font-size: 0.78rem;
	line-height: 1;
	flex-shrink: 0;
	margin-top: 1px;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.about-stat-item {
	padding: 12px 10px;
	background: #fff;
	border: 1px solid rgba(18, 71, 214, 0.1);
	border-radius: 12px;
	text-align: center;
}

.about-stat-item:nth-child(1) {
	border-color: rgba(18, 71, 214, 0.26);
	background: linear-gradient(180deg, rgba(18, 71, 214, 0.08), rgba(255, 255, 255, 0.92));
}

.about-stat-item:nth-child(2) {
	border-color: rgba(239, 63, 52, 0.26);
	background: linear-gradient(180deg, rgba(239, 63, 52, 0.08), rgba(255, 255, 255, 0.92));
}

.about-stat-item:nth-child(3) {
	border-color: rgba(255, 203, 5, 0.35);
	background: linear-gradient(180deg, rgba(255, 203, 5, 0.14), rgba(255, 255, 255, 0.9));
}

.about-stat-item:nth-child(4) {
	border-color: rgba(10, 29, 78, 0.24);
	background: linear-gradient(180deg, rgba(10, 29, 78, 0.08), rgba(255, 255, 255, 0.92));
}

.about-stat-value {
	font-size: 1.65rem;
	font-weight: 800;
	line-height: 1.1;
	color: var(--neo-navy);
}

.about-stat-label {
	font-size: 0.82rem;
	color: var(--neo-muted);
	margin-top: 4px;
}

/* =============================================
   SERVICES WIREFRAME SECTION
   ============================================= */

.services-boxed {
	margin-top: 34px;
	padding: clamp(22px, 4vw, 34px);
	background: #f8fbff;
	border: 1px solid rgba(18, 71, 214, 0.08);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-soft);
}

.section-title-wrap {
	text-align: center;
	margin-bottom: 18px;
}

.section-title-wrap h2 {
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	line-height: 1.2;
	color: var(--neo-navy);
	margin-bottom: 6px;
	background: linear-gradient(92deg, #0a1d4e 0%, #1247d6 60%, #ef3f34 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-title-wrap p {
	color: var(--neo-muted);
	font-size: 0.95rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.service-card-wire {
	background: #fff;
	border: 1px solid rgba(18, 71, 214, 0.1);
	border-radius: 16px;
	overflow: hidden;
	padding: 0 0 24px;
	box-shadow: 0 8px 24px rgba(16, 33, 84, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.service-card-wire:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(16, 33, 84, 0.15);
}

.service-card-wire:nth-child(1) {
	border-top: 5px solid #1247d6;
}

.service-card-wire:nth-child(2) {
	border-top: 5px solid #ef3f34;
}

.service-card-wire:nth-child(3) {
	border-top: 5px solid #ffcb05;
}

.service-thumb {
	height: 240px;
	background: #f1f4fb;
	display: grid;
	place-items: center;
	border-bottom: none;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.service-thumb-icon {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-body {
	padding: 18px;
	background: #fff;
	border-top: 1px solid rgba(18, 71, 214, 0.1);
	position: relative;
	z-index: 2;
}

.service-card-wire h3 {
	font-size: 1.28rem;
	font-weight: 600;
	color: var(--neo-navy);
	margin: 0 0 12px;
}

.service-card-wire:nth-child(1) h3 {
	color: #1247d6;
}

.service-card-wire:nth-child(2) h3 {
	color: #d93b31;
}

.service-card-wire:nth-child(3) h3 {
	color: #b18600;
}

.service-card-wire p {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--neo-muted);
	margin: 0 0 16px;
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 0;
	padding: 10px 16px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--neo-muted);
	background: #f3f6fd;
	border: 1px solid rgba(18, 71, 214, 0.12);
	transition: all 0.2s ease;
}

.service-link:hover {
	background: rgba(18, 71, 214, 0.08);
	border-color: rgba(18, 71, 214, 0.25);
	color: #1247d6;
}

/* =============================================
   WHY CHOOSE / TESTIMONIAL
   ============================================= */

.why-choose {
	margin-top: 24px;
	padding: clamp(22px, 4vw, 34px);
	background: linear-gradient(135deg, #f8fbff 0%, #f1f6ff 100%);
	border: 1px solid rgba(18, 71, 214, 0.08);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-soft);
}

.why-choose-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 20px;
}

.fun-facts-box h2,
.testimonial-box h2 {
	font-size: clamp(1.45rem, 2.3vw, 1.95rem);
	line-height: 1.2;
	color: var(--neo-navy);
	margin-bottom: 4px;
}

.fun-facts-box h2 {
	color: #1247d6;
}

.testimonial-box h2 {
	color: #0a1d4e;
}

.fun-facts-box > p,
.testimonial-box > p {
	font-size: 0.95rem;
	color: var(--neo-muted);
	margin-bottom: 12px;
}

.facts-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.fact-item {
	background: #fff;
	border: 1px solid rgba(18, 71, 214, 0.08);
	border-radius: 10px;
	padding: 12px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fact-item:nth-child(1) {
	background: linear-gradient(180deg, rgba(18, 71, 214, 0.09), #ffffff);
}

.fact-item:nth-child(2) {
	background: linear-gradient(180deg, rgba(239, 63, 52, 0.08), #ffffff);
}

.fact-item:nth-child(3) {
	background: linear-gradient(180deg, rgba(255, 203, 5, 0.15), #ffffff);
}

.fact-item:nth-child(4) {
	background: linear-gradient(180deg, rgba(10, 29, 78, 0.08), #ffffff);
}

.fact-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(18, 71, 214, 0.1);
}

.fact-item strong {
	display: block;
	font-size: 1.8rem;
	line-height: 1.1;
	color: var(--neo-navy);
	margin-bottom: 4px;
}

.counter {
	color: var(--neo-blue);
	font-variant-numeric: tabular-nums;
}

.fact-item span {
	font-size: 0.9rem;
	color: var(--neo-muted);
}

.testimonial-slider {
	overflow: hidden;
	position: relative;
}

.testimonial-track {
	display: flex;
	transition: transform 0.55s ease;
	will-change: transform;
}

.testimonial-slide {
	min-width: 100%;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.testimonial-card {
	background: #fff;
	border: 1px solid rgba(18, 71, 214, 0.08);
	border-radius: 12px;
	padding: 14px;
	min-height: 206px;
}

.testimonial-card:nth-child(odd) {
	border-top: 3px solid rgba(18, 71, 214, 0.85);
}

.testimonial-card:nth-child(even) {
	border-top: 3px solid rgba(239, 63, 52, 0.85);
}

.quote-mark {
	font-size: 2rem;
	line-height: 1;
	color: rgba(18, 71, 214, 0.2);
	margin-bottom: 6px;
}

.testimonial-card p {
	font-size: 0.88rem;
	line-height: 1.65;
	color: var(--neo-muted);
	margin-bottom: 10px;
}

.testimonial-card h4 {
	font-size: 1.05rem;
	color: var(--neo-navy);
	margin-bottom: 2px;
}

.testimonial-card small {
	font-size: 0.82rem;
	color: var(--neo-muted);
}

.testimonial-dots {
	display: flex;
	gap: 7px;
	justify-content: center;
	margin-top: 12px;
}

.testimonial-dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d6dcef;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.testimonial-dots span.active {
	background: #8f9dc9;
	transform: scale(1.25);
}

/* =============================================
   CTA WIREFRAME
   ============================================= */

.cta-wire {
	margin: 24px 0 34px;
	padding: 28px;
	text-align: center;
	background: #f8fbff;
	border: 1px solid rgba(18, 71, 214, 0.1);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-soft);
}

.cta-wire h2 {
	font-size: clamp(1.45rem, 2.4vw, 1.95rem);
	line-height: 1.2;
	color: var(--neo-navy);
	margin-bottom: 8px;
	background: linear-gradient(90deg, #1247d6 0%, #0a1d4e 50%, #ef3f34 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cta-wire p {
	color: var(--neo-muted);
	max-width: 62ch;
	margin: 0 auto 16px;
}

.cta-wire-actions {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.cta-wire-actions .btn {
	min-width: 270px;
}

/* =============================================
   CONTENT GRIDS
   ============================================= */

.content-grid {
	margin-top: 28px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

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

/* =============================================
   BLOG CARDS
   ============================================= */

.blog-card {
	background: #fff;
	padding: 22px;
	border-radius: 20px;
	box-shadow: 0 10px 24px rgba(21, 36, 88, 0.12);
	border-left: 6px solid var(--neo-red);
}

.blog-card:nth-child(2) {
	border-left-color: var(--neo-blue);
}

.blog-card:nth-child(3) {
	border-left-color: var(--neo-yellow);
}

.blog-meta {
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--neo-blue);
	margin-bottom: 10px;
}

.blog-card h3 {
	color: var(--neo-navy);
	font-size: 1.08rem;
	margin-bottom: 8px;
}

.blog-card p {
	font-size: 0.94rem;
	color: var(--neo-muted);
}

/* =============================================
   FEATURE CARDS
   ============================================= */

.feature {
	background: #fff;
	padding: 22px;
	border-radius: 20px;
	box-shadow: 0 8px 22px rgba(22, 32, 70, 0.1);
	border-top: 6px solid var(--neo-blue);
	animation: riseIn 0.8s ease;
}

.feature:nth-child(2) {
	border-top-color: var(--neo-yellow);
}

.feature:nth-child(3) {
	border-top-color: var(--neo-red);
}

.feature h3 {
	color: var(--neo-navy);
	margin-bottom: 8px;
	font-size: 1.1rem;
}

.feature p {
	color: var(--neo-muted);
	font-size: 0.95rem;
}

/* =============================================
   CTA BANNER
   ============================================= */

.cta {
	margin: 30px 0 34px;
	border-radius: var(--radius-xl);
	padding: 28px;
	background: linear-gradient(125deg, var(--neo-blue), #0e2c86 60%, #193079 100%);
	color: #fff;
	text-align: center;
	box-shadow: 0 18px 32px rgba(9, 28, 88, 0.35);
}

.cta h2 {
	font-size: clamp(1.4rem, 2.6vw, 2rem);
	margin-bottom: 10px;
}

.cta p {
	max-width: 62ch;
	margin: 0 auto 18px;
	color: rgba(255, 255, 255, 0.9);
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
	margin: 16px 0 18px;
	padding: clamp(22px, 4vw, 34px);
	border-radius: var(--radius-xl);
	background: linear-gradient(130deg, #0a1d4e 0%, #123a9f 55%, #0a2f83 100%);
	color: rgba(255, 255, 255, 0.88);
	box-shadow: 0 16px 34px rgba(12, 27, 78, 0.35);
}

.footer-top {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: 24px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col h4 {
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.footer-col p {
	font-size: 0.92rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.82);
}

.footer-col ul {
	list-style: none;
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 0;
}

.footer-col li {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.82);
}

.footer-col a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.85);
	transition: color 0.2s ease;
}

.footer-col a:hover {
	color: var(--neo-yellow);
}

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

.footer-logo {
	height: 64px;
	width: auto;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.97);
	padding: 6px 10px;
	border-radius: 10px;
}

.footer-brand-name {
	font-size: 1.02rem;
	font-weight: 700;
	color: #fff;
}

.footer-bottom {
	padding-top: 14px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
}

.footer-bottom-copy {
	display: grid;
	gap: 0;
	max-width: 70ch;
}

.footer-bottom p {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.8);
}

.footer-legal {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.footer-legal a {
	text-decoration: none;
	font-size: 0.86rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-legal a:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes slideInTop {
	from {
		transform: translateY(-12px);
		opacity: 0;
	}

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

@keyframes riseIn {
	from {
		transform: translateY(14px);
		opacity: 0;
	}

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

body.modal-open {
	overflow: hidden;
}

.requirements-modal {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: none;
}

.requirements-modal.is-open {
	display: block;
}

.requirements-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 29, 78, 0.66);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

.requirements-modal__panel {
	position: relative;
	width: min(780px, calc(100vw - 28px));
	max-height: calc(100vh - 36px);
	overflow-y: auto;
	margin: 18px auto;
	background:
		radial-gradient(circle at 4% 6%, rgba(255, 203, 5, 0.18), transparent 42%),
		radial-gradient(circle at 96% 2%, rgba(18, 71, 214, 0.16), transparent 32%),
		#ffffff;
	border-radius: 24px;
	border: 1px solid rgba(18, 71, 214, 0.18);
	box-shadow: 0 30px 80px rgba(8, 22, 62, 0.45);
	padding: 24px;
	animation: modalRise 0.25s ease;
}

.requirements-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	border: 1px solid rgba(18, 71, 214, 0.22);
	background: #fff;
	color: var(--neo-navy);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.requirements-modal__close:hover {
	background: #f3f6fd;
	transform: scale(1.04);
}

.requirements-modal__header {
	text-align: center;
	padding-right: 26px;
}

.requirements-modal__logo {
	width: 140px;
	height: auto;
	margin: 0 auto 10px;
	display: block;
}

.requirements-modal__header h3 {
	font-size: clamp(1.35rem, 2.4vw, 2rem);
	line-height: 1.2;
	color: var(--neo-navy);
	margin-bottom: 8px;
	background: linear-gradient(90deg, var(--neo-blue), var(--neo-red));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.requirements-modal__header p {
	color: var(--neo-muted);
	font-size: 0.95rem;
	max-width: 60ch;
	margin: 0 auto;
}

.requirements-marquee {
	margin: 16px 0 18px;
	overflow: hidden;
	border-radius: 999px;
	border: 1px solid rgba(18, 71, 214, 0.16);
	background: linear-gradient(90deg, rgba(18, 71, 214, 0.08), rgba(255, 203, 5, 0.14));
	padding: 8px 0;
}

.requirements-marquee__track {
	display: inline-flex;
	align-items: center;
	gap: 22px;
	white-space: nowrap;
	padding-left: 22px;
	animation: requirementsMarquee 28s linear infinite;
	will-change: transform;
}

.requirements-marquee__track span {
	font-size: 0.84rem;
	font-weight: 600;
	color: #0f3db9;
	position: relative;
}

.requirements-marquee__track span::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ef3f34;
	margin-right: 8px;
	vertical-align: middle;
}

.requirements-form {
	display: grid;
	gap: 14px;
}

.requirements-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.requirements-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.requirements-form__grid--phone {
	grid-template-columns: 170px 1fr;
}

.requirements-field {
	display: grid;
	gap: 6px;
}

.requirements-field label {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--neo-navy);
}

.requirements-field input,
.requirements-field select,
.requirements-field textarea {
	width: 100%;
	border: 1px solid rgba(18, 71, 214, 0.2);
	border-radius: 12px;
	padding: 11px 12px;
	font-family: 'Poppins', sans-serif;
	font-size: 0.92rem;
	color: var(--neo-text);
	background: #fff;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.requirements-field textarea {
	resize: vertical;
	min-height: 108px;
}

.requirements-field input:focus,
.requirements-field select:focus,
.requirements-field textarea:focus {
	border-color: rgba(18, 71, 214, 0.6);
	box-shadow: 0 0 0 4px rgba(18, 71, 214, 0.12);
}

.requirements-field input.is-invalid,
.requirements-field select.is-invalid,
.requirements-field textarea.is-invalid {
	border-color: rgba(239, 63, 52, 0.9);
	box-shadow: 0 0 0 4px rgba(239, 63, 52, 0.15);
}

.requirements-error {
	min-height: 16px;
	font-size: 0.76rem;
	font-weight: 500;
	color: #d93b31;
}

.requirements-actions {
	display: grid;
	gap: 8px;
	justify-items: start;
	margin-top: 2px;
}

.requirements-submit {
	position: relative;
	overflow: hidden;
	border: none;
	padding: 12px 24px;
	min-width: 190px;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.2px;
	background: linear-gradient(100deg, #1247d6 0%, #2556df 50%, #ef3f34 100%);
	box-shadow: 0 14px 28px rgba(19, 54, 170, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.requirements-submit::before {
	content: '';
	position: absolute;
	top: -110%;
	left: -22%;
	width: 38%;
	height: 320%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
	transform: rotate(24deg);
	transition: left 0.45s ease;
}

.requirements-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(19, 54, 170, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.requirements-submit:hover::before {
	left: 120%;
}

.requirements-submit:active {
	transform: translateY(0);
}

.requirements-submit:disabled,
.requirements-submit.is-loading {
	opacity: 0.82;
	cursor: not-allowed;
	transform: none;
}

.requirements-success {
	min-height: 18px;
	font-size: 0.82rem;
	color: #0f8a4b;
	font-weight: 500;
}

.requirements-success.is-error {
	color: #d93b31;
}

.thankyou-modal {
	position: fixed;
	inset: 0;
	z-index: 1250;
	display: none;
}

.thankyou-modal.is-open {
	display: block;
}

.thankyou-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 29, 78, 0.72);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.thankyou-modal__panel {
	position: relative;
	width: min(620px, calc(100vw - 28px));
	margin: clamp(24px, 10vh, 80px) auto;
	padding: 34px 30px 30px;
	background:
		radial-gradient(circle at 10% 8%, rgba(255, 203, 5, 0.2), transparent 38%),
		radial-gradient(circle at 92% 12%, rgba(18, 71, 214, 0.18), transparent 34%),
		#fff;
	border-radius: 24px;
	border: 1px solid rgba(18, 71, 214, 0.2);
	box-shadow: 0 28px 80px rgba(8, 22, 62, 0.46);
	text-align: center;
	animation: modalRise 0.25s ease;
}

.thankyou-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	border: 1px solid rgba(18, 71, 214, 0.22);
	background: #fff;
	color: var(--neo-navy);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.thankyou-modal__close:hover {
	background: #f3f6fd;
	transform: scale(1.04);
}

.thankyou-modal__logo {
	display: block;
	width: 150px;
	height: auto;
	margin: 0 auto 12px;
}

.thankyou-modal__panel h3 {
	font-size: clamp(1.45rem, 2.5vw, 2.1rem);
	line-height: 1.2;
	margin-bottom: 12px;
	background: linear-gradient(90deg, #1247d6 0%, #6a3ac6 45%, #ef3f34 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.thankyou-modal__panel p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--neo-muted);
	max-width: 50ch;
	margin: 0 auto 20px;
}

.thankyou-modal__panel p a {
	color: #1247d6;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px dashed rgba(18, 71, 214, 0.3);
}

.thankyou-modal__panel p a:hover {
	color: #0a1d4e;
	border-bottom-color: rgba(10, 29, 78, 0.5);
}

.thankyou-modal__home-btn {
	min-width: 220px;
	padding-inline: 24px;
	box-shadow: 0 16px 30px rgba(19, 54, 170, 0.34);
}

@keyframes modalRise {
	from {
		opacity: 0;
		transform: translateY(16px) scale(0.98);
	}

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

@keyframes requirementsMarquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1060px) {
	.nav-links a {
		font-size: 0.84rem;
		padding: 7px 10px;
	}

	.requirements-modal__panel {
		padding: 20px 16px;
	}

	.thankyou-modal__panel {
		padding: 30px 20px 24px;
	}

	.requirements-form__grid,
	.requirements-form__grid--phone {
		grid-template-columns: 1fr;
	}
}

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

	.nav-action {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.top-nav {
		border-radius: 20px;
	}

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

	.hero-media {
		min-height: 320px;
	}

	.hero-showcase {
		min-height: 320px;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.about-placeholder {
		height: 320px;
	}

	.about-details {
		padding: 20px;
	}

	.about-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.service-thumb {
		height: 200px;
	}

	.service-card-wire {
		padding: 0 0 20px;
	}

	.service-body {
		padding: 14px;
	}

	.service-card-wire h3 {
		font-size: 1.1rem;
		margin: 0 0 10px;
	}

	.service-card-wire p {
		font-size: 0.88rem;
		margin: 0 0 12px;
	}

	.service-link {
		margin-left: 0;
		padding: 8px 14px;
		font-size: 0.82rem;
	}

	.why-choose-grid {
		grid-template-columns: 1fr;
	}

	.testimonial-slide {
		grid-template-columns: 1fr;
	}

	.footer-top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

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

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

@media (max-width: 600px) {
	.content-grid {
		grid-template-columns: 1fr;
	}

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

	.hero-cards {
		grid-template-columns: 1fr;
	}

	.about-section {
		padding: 20px;
	}

	.about-placeholder {
		height: 250px;
		border-radius: 16px;
	}

	.about-details {
		border-radius: 16px;
		padding: 16px;
	}

	.about-details h3 {
		font-size: 1.85rem;
	}

	.about-checklist li {
		font-size: 0.9rem;
		padding: 8px 10px;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}

	.requirements-modal__panel {
		margin: 10px auto;
		max-height: calc(100vh - 20px);
		border-radius: 16px;
	}

	.requirements-modal__logo {
		width: 118px;
	}

	.requirements-modal__header p {
		font-size: 0.88rem;
	}

	.thankyou-modal__logo {
		width: 132px;
	}

	.thankyou-modal__panel p {
		font-size: 0.92rem;
		line-height: 1.65;
	}

	.thankyou-modal__home-btn {
		min-width: 200px;
	}

	.requirements-marquee__track {
		gap: 14px;
	}

	.requirements-marquee__track span {
		font-size: 0.76rem;
	}

	.service-thumb {
		height: 160px;
	}

	.services-grid {
		gap: 16px;
	}

	.service-card-wire {
		padding: 0 0 16px;
		border-radius: 12px;
	}

	.service-body {
		padding: 12px;
	}

	.service-card-wire h3 {
		font-size: 0.95rem;
		margin: 0 0 8px;
	}

	.service-card-wire p {
		font-size: 0.8rem;
		margin: 0 0 10px;
	}

	.service-link {
		margin-left: 0;
		padding: 6px 12px;
		font-size: 0.75rem;
	}

	.services-boxed,
	.why-choose,
	.cta-wire {
		padding: 18px;
	}

	.facts-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.testimonial-slide {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
	}

	.testimonial-card {
		min-height: 0;
		padding: 18px 14px;
	}

	.testimonial-card:nth-child(2) {
		display: none;
	}

	.testimonial-dots {
		margin-top: 14px;
	}

	.section-title-wrap h2,
	.fun-facts-box h2,
	.testimonial-box h2,
	.cta-wire h2 {
		font-size: 1.35rem;
	}

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

	.footer-brand {
		align-items: flex-start;
	}

	.footer-logo {
		height: 56px;
	}

	.footer-legal {
		gap: 8px;
	}

	.hero h1 {
		font-size: 1.8rem;
	}

	.hero-media {
		margin-bottom: 14px;
	}

	.hero-showcase__card {
		inset: 16px;
	}

	.hero-orbit {
		height: 136px;
	}

	.hero-orbit__ring--one {
		width: 136px;
		height: 136px;
	}

	.hero-orbit__ring--two {
		width: 180px;
		height: 180px;
	}

	.hero-orbit__chip {
		font-size: 0.66rem;
		padding: 6px 8px;
	}

	.hero-service-grid {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 0;
	}

	.hero-service-lane--left,
	.hero-service-lane--right {
		height: 66px;
	}

	.hero-service-lane--right {
		margin-top: 0;
	}

	.hero-service-column {
		display: none;
	}

	.cta-wire-actions .btn {
		min-width: 240px;
	}
}
