:root {
	--ink: #0f172a;
	--muted: #526071;
	--line: #dbe3ee;
	--paper: #ffffff;
	--soft: #f5f8fc;
	--navy: #071426;
	--blue: #155eef;
	--teal: #0e9384;
	--amber: #f59e0b;
	--radius: 8px;
	--shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Inter", Arial, sans-serif;
	color: var(--ink);
	background: var(--paper);
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--blue);
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -48px;
	z-index: 10000;
	padding: 10px 14px;
	background: var(--ink);
	color: #fff;
	border-radius: var(--radius);
}

.skip-link:focus {
	top: 12px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(219, 227, 238, 0.8);
}

.navbar {
	min-height: 82px;
}

.navbar-brand img {
	object-fit: contain;
}

.nav-link {
	font-size: 15px;
	font-weight: 600;
	color: #263445;
	margin: 0 4px;
}

.nav-phone {
	color: var(--teal);
}

.btn {
	border-radius: var(--radius);
	font-weight: 700;
	letter-spacing: 0;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 12px 18px;
}

.btn-lg {
	min-height: 52px;
	padding: 14px 22px;
}

.btn-accent {
	background: var(--amber);
	color: #111827;
	box-shadow: 0 10px 26px rgba(245, 158, 11, 0.32);
}

.btn-accent:hover {
	background: #d88906;
	color: #111827;
}

.btn-primary-soft {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 10px 28px rgba(21, 94, 239, 0.28);
}

.btn-primary-soft:hover {
	background: #0f46b8;
	color: #fff;
}

.btn-secondary-soft {
	background: #e8eef7;
	color: #142033;
}

.btn-secondary-soft:hover {
	background: #d8e2ef;
	color: #142033;
}

.btn-outline-light {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-outline-light:hover {
	background: #fff;
	color: var(--ink);
}

.hero-section {
	position: relative;
	overflow: hidden;
	padding: 112px 0 84px;
	background:
		linear-gradient(135deg, rgba(7, 20, 38, 0.94), rgba(7, 20, 38, 0.82)),
		url("../images/home-page.png") center/cover no-repeat;
	color: #fff;
}

.hero-section h1 {
	max-width: 780px;
	font-size: clamp(42px, 6vw, 76px);
	line-height: 1.02;
	font-weight: 800;
	letter-spacing: 0;
	margin: 14px 0 22px;
}

.hero-copy {
	max-width: 720px;
	font-size: 20px;
	color: #d7e0ec;
	margin: 0 0 30px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--teal);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.hero-section .eyebrow {
	color: #7dd3c7;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 34px;
}

.hero-proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 720px;
}

.hero-proof div {
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
}

.hero-proof strong {
	display: block;
	font-size: 22px;
	color: #fff;
}

.hero-proof span {
	display: block;
	color: #c7d4e5;
	font-size: 13px;
	line-height: 1.35;
}

.hero-visual {
	position: relative;
}

.hero-visual img {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.hero-dashboard {
	position: absolute;
	left: -24px;
	right: 24px;
	bottom: -28px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(219, 227, 238, 0.9);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.hero-dashboard span {
	color: #182437;
	font-size: 13px;
	font-weight: 700;
	padding: 10px;
	background: var(--soft);
	border-radius: 6px;
}

.trust-strip {
	padding: 26px 0;
	background: #fff;
	border-bottom: 1px solid var(--line);
}

.proof-section {
	background:
		linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.strip-grid {
	display: grid;
	grid-template-columns: minmax(240px, 0.85fr) 1fr;
	gap: 28px;
	align-items: center;
}

.strip-grid p {
	margin: 0;
	color: var(--muted);
	font-weight: 600;
}

.brand-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(90px, 1fr));
	gap: 18px;
	align-items: center;
}

.brand-row img {
	max-height: 42px;
	width: 100%;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.78;
}

.section-padding {
	padding: 92px 0;
}

.muted-section {
	background: var(--soft);
}

.dark-section {
	background: var(--navy);
	color: #fff;
}

.section-heading {
	max-width: 820px;
	margin: 0 auto 42px;
	text-align: center;
}

.section-heading.compact {
	margin-bottom: 32px;
}

.section-heading h2,
.cta-section h2,
.resume-section h2,
#why-us h2 {
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: 0;
	margin: 12px 0 14px;
	color: var(--ink);
}

.dark-section .section-heading h2 {
	color: #fff;
}

.section-heading p {
	color: var(--muted);
	font-size: 18px;
	margin: 0;
}

.dark-section .section-heading p {
	color: #cbd5e1;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.proof-grid article {
	position: relative;
	min-height: 260px;
	padding: 26px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.proof-grid strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 22px;
	border-radius: 50%;
	background: #ecfdf3;
	color: var(--teal);
	font-weight: 800;
}

.proof-grid h3 {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 800;
	color: var(--ink);
}

.proof-grid p {
	margin: 0;
	color: var(--muted);
}

.service-card {
	padding: 26px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
	min-height: 250px;
}

.service-card i {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 22px;
	border-radius: var(--radius);
	background: #eaf2ff;
	color: var(--blue);
	font-size: 20px;
}

.service-card h3,
.portfolio-card h3,
.case-grid h3,
.process-grid h3 {
	font-size: 21px;
	font-weight: 800;
	margin: 0 0 10px;
	color: var(--ink);
}

.service-card p,
.portfolio-card p,
.case-grid p,
.value-list p,
.faq-list p,
.cta-section p,
.resume-section p {
	color: var(--muted);
	margin: 0;
}

.pill-grid,
.tech-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.pill-grid span,
.tech-grid span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 12px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: #253247;
	font-weight: 700;
	text-align: center;
}

.feature-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.value-list {
	display: grid;
	gap: 18px;
	margin-top: 24px;
}

.value-list div {
	padding: 18px 20px;
	border-left: 4px solid var(--teal);
	background: var(--soft);
	border-radius: var(--radius);
}

.value-list strong {
	display: block;
	margin-bottom: 6px;
	font-size: 18px;
	color: var(--ink);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.process-grid div {
	padding: 26px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
}

.process-grid span {
	display: inline-block;
	margin-bottom: 22px;
	color: #7dd3c7;
	font-weight: 800;
}

.process-grid h3 {
	color: #fff;
}

.process-grid p {
	color: #cbd5e1;
	margin: 0;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.portfolio-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

.portfolio-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	background: var(--soft);
}

.portfolio-card img.mobile-portfolio-image {
	object-fit: contain;
	padding: 18px;
	background:
		radial-gradient(circle at 20% 15%, rgba(14, 147, 132, 0.14), transparent 32%),
		linear-gradient(135deg, #071426, #14233a);
}

.mobile-showcase {
	display: flex;
	justify-content: center;
	gap: 18px;
	padding: 24px;
	aspect-ratio: 16 / 10;
	background:
		radial-gradient(circle at 20% 15%, rgba(14, 147, 132, 0.18), transparent 32%),
		linear-gradient(135deg, #071426, #14233a);
	overflow: hidden;
}

.mobile-showcase img {
	width: auto;
	height: 100%;
	max-width: 42%;
	aspect-ratio: 9 / 20;
	object-fit: cover;
	border-radius: 18px;
	border: 6px solid #0b1220;
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
	background: #fff;
}

.portfolio-card div {
	padding: 22px;
}

.portfolio-card span,
.case-grid a {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--teal);
	font-weight: 800;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.case-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.case-grid article {
	padding: 26px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.case-grid a {
	margin: 18px 0 0;
	letter-spacing: 0;
	text-transform: none;
	font-size: 15px;
}

.testimonial-section {
	background: #fff;
}

.testimonial-intro {
	height: 100%;
	padding: 30px;
	background: var(--navy);
	color: #fff;
	border-radius: var(--radius);
}

.testimonial-intro h2 {
	margin: 12px 0;
	font-size: 34px;
	font-weight: 800;
	color: #fff;
}

.testimonial-intro p:last-child {
	color: #cbd5e1;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	height: 100%;
}

.trust-checklist {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	height: 100%;
}

.trust-checklist div {
	display: flex;
	gap: 14px;
	padding: 24px;
	background: var(--soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: #223148;
	font-weight: 700;
}

.trust-checklist i {
	flex: 0 0 34px;
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #dcfce7;
	color: #15803d;
}

blockquote {
	margin: 0;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--soft);
}

blockquote p {
	margin: 0 0 18px;
	font-size: 20px;
	line-height: 1.45;
	color: var(--ink);
}

blockquote cite {
	font-style: normal;
	color: var(--muted);
	font-weight: 700;
}

.faq-list {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	gap: 12px;
}

.faq-list details {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px 22px;
}

.faq-list summary {
	cursor: pointer;
	font-weight: 800;
	color: var(--ink);
}

.faq-list p {
	margin-top: 12px;
}

.cta-section {
	background:
		linear-gradient(135deg, rgba(245, 248, 252, 0.94), rgba(255, 255, 255, 0.92)),
		url("../images/group-1.JPEG") center/cover no-repeat;
}

.contact-options {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}

.call-agenda {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 24px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.call-agenda strong {
	grid-column: 1 / -1;
	color: var(--ink);
}

.call-agenda span {
	padding: 9px 10px;
	background: #fff;
	border: 1px solid #e3eaf3;
	border-radius: 6px;
	color: #304158;
	font-size: 13px;
	font-weight: 800;
}

.contact-options a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	color: var(--ink);
}

.form-panel {
	padding: 30px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.form-panel h3 {
	margin: 0 0 22px;
	font-size: 24px;
	font-weight: 800;
	color: var(--ink);
}

.form-panel .row {
	row-gap: 16px;
}

label {
	display: block;
	margin-bottom: 7px;
	font-size: 14px;
	font-weight: 800;
	color: #28364a;
}

.form-control {
	min-height: 50px;
	border: 1px solid #ccd6e2;
	border-radius: var(--radius);
	padding: 12px 14px;
	color: var(--ink);
}

select.form-control {
	appearance: auto;
}

.form-control:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.12);
}

textarea.form-control {
	min-height: 130px;
}

.captcha-action-label {
	visibility: hidden;
}

.captcha-action .btn {
	min-height: 50px;
	white-space: nowrap;
}
.captcha-code {
	text-align: center;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0.12em;
	background: var(--soft);
}

.form-error {
	display: block;
	min-height: 20px;
	margin-top: 5px;
	color: #b42318;
	font-size: 13px;
	font-weight: 700;
}

.small-note {
	margin-top: 14px;
	font-size: 14px;
}

.small-note a {
	color: var(--blue);
	font-weight: 800;
}

.resume-section {
	background: var(--navy);
	color: #fff;
}

.resume-section h2 {
	color: #fff;
}

.resume-section p {
	color: #cbd5e1;
}

.site-footer {
	padding: 58px 0 24px;
	background: #050b14;
	color: #cbd5e1;
}

.site-footer img {
	object-fit: contain;
	margin-bottom: 18px;
}

.site-footer h3 {
	margin: 0 0 14px;
	font-size: 15px;
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.site-footer p {
	margin: 0 0 14px;
	color: #cbd5e1;
}

.site-footer a {
	display: block;
	margin-bottom: 9px;
	color: #dbeafe;
	font-weight: 600;
}

.social-links {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.social-links a {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin: 0;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-top: 42px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 14px;
}

.footer-bottom a {
	margin: 0;
}

.preloader {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.76);
}

.preloader span {
	width: 18px;
	height: 18px;
	margin: 4px;
	display: inline-block;
	border-radius: 50%;
	background: var(--blue);
	animation: pulse 0.9s infinite alternate;
}

.preloader span:nth-child(2) {
	animation-delay: 0.2s;
}

@keyframes pulse {
	from {
		opacity: 0.35;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1.1);
	}
}

@media (max-width: 1199px) {
	.hero-section {
		padding-top: 86px;
	}

	.pill-grid,
	.tech-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.navbar-nav {
		padding: 16px 0 20px;
		align-items: stretch !important;
	}

	.nav-link {
		margin: 4px 0;
	}

	.hero-proof,
	.strip-grid,
	.card-grid,
	.proof-grid,
	.process-grid,
	.portfolio-grid,
	.case-grid,
	.testimonial-grid,
	.trust-checklist {
		grid-template-columns: 1fr;
	}

	.hero-dashboard {
		position: static;
		margin-top: 16px;
	}

	.section-padding {
		padding: 72px 0;
	}
}

@media (max-width: 767px) {
	.captcha-action-label {
		display: none;
	}

	.site-header .container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.navbar {
		min-height: 72px;
	}

	.navbar-brand img {
		width: 128px;
		height: auto;
	}

	.navbar-toggler {
		border: 1px solid var(--line);
		border-radius: var(--radius);
		padding: 8px 10px;
	}

	.hero-section {
		padding: 52px 0 60px;
	}

	.hero-section h1 {
		font-size: 38px;
		line-height: 1.08;
	}

	.hero-copy {
		font-size: 18px;
	}

	.hero-actions .btn,
	.hero-actions {
		width: 100%;
	}

	.hero-proof,
	.hero-dashboard,
	.brand-row,
	.pill-grid,
	.tech-grid {
		grid-template-columns: 1fr 1fr;
	}

	.call-agenda {
		grid-template-columns: 1fr;
	}

	.section-padding {
		padding: 58px 0;
	}

	.section-heading {
		text-align: left;
	}

	.section-heading h2,
	.cta-section h2,
	.resume-section h2,
	#why-us h2 {
		font-size: 32px;
	}

	.portfolio-card img {
		aspect-ratio: 4 / 3;
	}

	.form-panel {
		padding: 22px;
	}

	.footer-bottom {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.hero-section h1 {
		font-size: 36px;
	}

	.hero-proof,
	.hero-dashboard,
	.brand-row,
	.pill-grid,
	.tech-grid,
	.call-agenda {
		grid-template-columns: 1fr;
	}

	.btn-lg {
		font-size: 15px;
	}
}
