:root {
	--bg: #0f1422;
	--bg-elev-1: #141b2b;
	--bg-elev-2: #1a2335;
	--text: #d6dbef;
	--muted: #9aa3b2;
	--border: #26324a;
	--accent: #9b6bff;
	--accent-strong: #7a52ff;
	--green: #22c55e;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
	height: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	color: var(--text);
	background: radial-gradient(1200px 600px at 70% -10%, #1b2540 0%, transparent 60%) no-repeat, var(--bg);
	line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
	width: min(1100px, 92vw);
	margin: 0 auto;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(15, 20, 34, 0.8);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--border);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
}
.brand-name { letter-spacing: 0.2px; font-size: 18px; }
.brand-logo { height: 50px; max-height: 50px; width: auto; display: block; }
.brand-icon { display: inline-flex; }

.nav {
	display: flex;
	gap: 20px;
}
.nav a {
	color: var(--muted);
	font-weight: 500;
}
.nav a { transition: color .18s ease, transform .12s ease; }
.nav a:hover { color: var(--accent); transform: translateY(-2px); }
.nav a.active { color: var(--text); }
.nav a i { margin-right: 6px; }

.actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hamburger {
	display: none;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--border);
	border-radius: 8px;
	cursor: pointer;
}
.hamburger span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--text);
	margin: 2px 0;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 10px;
	border: 1px solid transparent;
	font-weight: 600;
	transition: transform .15s ease, box-shadow .15s ease, background .2s ease, border-color .2s ease;
}
.btn-sm { padding: 10px 14px; font-size: 14px; }
.btn.block { display: flex; width: 100%; }
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid #5f47b7; outline-offset: 2px; }

.btn-primary {
	color: white;
	background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
	box-shadow: 0 10px 20px rgba(123, 82, 255, 0.35);
}
.btn-ghost {
	color: var(--text);
	background: #12192a;
	border-color: var(--border);
}
.btn-ghost:hover {
	border-color: #31415f;
}

/* Hero */
.hero {
	padding: 92px 0 60px;
	position: relative;
	overflow: hidden;
}
.hero-title {
	font-size: clamp(28px, 3.4vw + 18px, 48px);
	line-height: 1.15;
	letter-spacing: 0.2px;
	margin: 8px 0 12px;
	text-align: center;
}
.hero-title .accent {
	color: var(--accent);
}
.hero-subtitle {
	text-align: center;
	color: var(--muted);
	margin: 0 auto 18px;
	max-width: 760px;
}
.hero-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 18px 0 26px;
}
.hero-pills li {
	color: #b9c1d2;
}
.hero-pills i { color: var(--green); margin-right: 6px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; }

.hero::before,
.hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(28px);
	opacity: 0.35;
	animation: floatBlob 16s ease-in-out infinite;
}
.hero::before {
	width: 340px;
	height: 340px;
	left: -140px;
	top: -40px;
	background: radial-gradient(closest-side, rgba(155,107,255,.35), transparent);
}
.hero::after {
	width: 420px;
	height: 420px;
	right: -160px;
	top: -60px;
	background: radial-gradient(closest-side, rgba(34,197,94,.25), transparent);
}

/* Sections */
.section {
	padding: 56px 0;
	border-top: 1px solid var(--border);
}
.section-header {
	text-align: center;
	margin-bottom: 26px;
}
.section-header h2 {
	margin: 0 0 8px;
	font-size: 28px;
}
.section-header p {
	color: var(--muted);
	margin: 0;
}

/* Tiles */
.tiles {
	display: grid;
	gap: 16px;
}
.tiles-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tile {
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 20px;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    content-visibility: auto;
    contain-intrinsic-size: 280px 200px;
}
.tile-image {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 10px;
	box-shadow: var(--shadow);
}
.tile-image img {
	display: block;
	width: 100%;
	height: 120px;
	object-fit: cover;
}
.tile:hover { transform: translateY(-2px); border-color: #31415f; box-shadow: 0 12px 28px rgba(0,0,0,.35); }
.tile-icon {
	display: inline-flex;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	align-items: center;
	justify-content: center;
	background: rgba(155, 107, 255, 0.15);
	color: var(--accent);
	margin-bottom: 10px;
}
.tile-title { font-weight: 600; }

/* Cards (Services) */
.cards {
	display: grid;
	gap: 16px;
}
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    content-visibility: auto;
    contain-intrinsic-size: 320px 220px;
}
.card-image {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow);
}
.card-image img {
	display: block;
	width: 100%;
	height: 180px;
	object-fit: cover;
	transition: transform .3s ease;
}
.card:hover { transform: translateY(-3px); border-color: #31415f; box-shadow: 0 14px 32px rgba(0,0,0,.35); }
.card:hover .card-image img { transform: scale(1.02); }
.card-icon {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(155, 107, 255, 0.15);
	color: var(--accent);
}
.card-title { margin: 4px 0; }
.card p { color: var(--muted); margin: 0; }
.card-footer {
	margin-top: auto;
	color: #bfc7da;
}

/* How It Works Steps */
.steps {
	display: grid;
	grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr; /* 4 steps, 3 connectors */
	gap: 16px;
	align-items: start;
}
.step {
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 20px;
	position: relative;
}
.step h3 { margin: 6px 0 6px; }
.step h3 i { color: var(--accent); margin-right: 8px; }
.step p { margin: 0; color: var(--muted); }
.step-badge {
	position: absolute;
	top: -14px;
	left: 18px;
	background: var(--accent);
	color: #fff;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-weight: 700;
	font-size: 14px;
	box-shadow: 0 10px 20px rgba(123, 82, 255, .35);
}
.connector {
	height: 1px;
	align-self: center;
	background: linear-gradient(90deg, transparent, #334366, transparent);
	margin-top: 20px;
}

/* Assurance Bar beneath steps */
.assurance-bar {
	margin-top: 28px;
	background: var(--bg-elev-2);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 14px 18px;
	display: grid;
	grid-template-columns: 1fr 1px 1fr 1px 1fr;
	align-items: center;
}
.assurance-item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	color: #c9d1e6;
}
.assurance-item .check {
	background: var(--green);
	color: #0b1628;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-weight: 800;
}
.assurance-sep {
	width: 1px;
	height: 32px;
	background: linear-gradient(180deg, transparent, #334366, transparent);
	justify-self: center;
}

/* Pricing */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
}
.price-card {
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 22px;
	display: flex;
	flex-direction: column;
}
.price-name { margin: 2px 0 2px; }
.price-desc { color: var(--muted); margin: 0 0 10px; }
.price-amount {
	font-size: 36px;
	font-weight: 800;
	margin: 2px 0 12px;
}
.price-features {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: grid;
	gap: 8px;
	color: #c9d1e6;
}
.price-features i { color: var(--green); margin-right: 8px; }
.price-card .btn { margin-top: auto; }

.price-card.recommended {
	background: radial-gradient(400px 220px at 50% -20%, rgba(123, 82, 255, .2), transparent 60%) no-repeat, var(--bg-elev-2);
	border-color: #3f2f73;
	box-shadow: 0 16px 40px rgba(123, 82, 255, 0.2);
	position: relative;
}
.recommended-badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
	color: white;
	font-size: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid #5f47b7;
	box-shadow: 0 10px 20px rgba(123,82,255,.35);
}

/* Header scrolled state */
.site-header.scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.35); background: rgba(15,20,34,.9); }

/* Reveal animations */
.reveal {
	opacity: 0;
	transform: translateY(18px) scale(.98);
	transition: opacity .6s ease, transform .6s ease;
	will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }
.delay-5 { transition-delay: .40s; }

@keyframes floatBlob {
	0%, 100% { transform: translate3d(0,0,0); }
	50% { transform: translate3d(0,14px,0); }
}

/* CTA */
.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}
.cta-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	padding: 10px 14px;
	border-radius: 999px;
	color: #c7cfe3;
}
.cta-chip .fa-whatsapp { color: #25D366; }
.cta-note {
	text-align: center;
	color: var(--muted);
	margin-top: 12px;
}

/* Enquiry form */
.cta-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	align-items: start;
	justify-content: center;
	max-width: 900px;
	margin: 0 auto;
}
.enquiry-form {
	background: linear-gradient(180deg, rgba(18,25,38,0.6), rgba(18,25,38,0.55));
	border: 1px solid var(--border);
	padding: 20px 20px 56px; /* extra bottom padding for the note */
	border-radius: 14px;
	max-width: 760px;
	width: 100%;
	box-shadow: 0 10px 30px rgba(0,0,0,.45);
	position: relative;
	margin: 0 auto;
}
.enquiry-form .form-row { display: flex; gap: 12px; margin-bottom: 12px; }
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
	width: 100%;
	background: #0e1624;
	border: 1px solid #232a37;
	color: var(--text);
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 15px;
	transition: box-shadow .15s ease, transform .12s ease, border-color .12s ease;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus { outline: none; border-color: #47506b; box-shadow: 0 6px 20px rgba(74,85,110,.08); transform: translateY(-1px); }
.enquiry-form textarea { resize: vertical; min-height: 110px; }
.form-actions { display: flex; gap: 10px; align-items: center; margin-top: 6px; }
.form-status { margin-top: 12px; color: #cfe9d8; font-weight: 600; }
.form-status.success { color: var(--green); }

.form-note {
	position: absolute;
	right: 18px;
	bottom: 14px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
	opacity: 0.95;
}



/* Small screens */
@media (max-width: 900px) {
	.cta-grid { grid-template-columns: 1fr; }
	.enquiry-form .form-row { flex-direction: column; }
	.enquiry-form { padding-bottom: 28px; }
	.form-note { position: static; text-align: center; margin-top: 6px; }
}

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Footer */
.site-footer {
	border-top: 1px solid var(--border);
	padding: 16px 0 26px;
	color: #9da6bb;
}
.footer-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.footer-nav {
	display: flex;
	gap: 16px;
}
.footer-nav a { color: #b3bbcf; }
.footer-nav a i { margin-right: 6px; }

/* Responsive */
@media (max-width: 1100px) {
	.container { width: min(1000px, 94vw); }
}

@media (max-width: 900px) {
	.nav { display: none; position: absolute; left: 0; right: 0; top: 58px; background: var(--bg-elev-1); border-bottom: 1px solid var(--border); padding: 10px 16px; flex-direction: column; gap: 8px; }
	.nav.open { display: flex; }
	.hamburger { display: inline-flex; }

	.tiles-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.steps { grid-template-columns: 1fr; }
	.connector { display: none; }
	.assurance-bar { grid-template-columns: 1fr; gap: 12px; }
	.assurance-sep { display: none; }
	.pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hero { padding: 80px 0 50px; }
}

@media (max-width: 640px) {
	.tiles-4 { grid-template-columns: 1fr; }
	.cards-3 { grid-template-columns: 1fr; }
	.pricing-grid { grid-template-columns: 1fr; }
	.header-inner { padding: 12px 0; }
	.hero-title { font-size: clamp(26px, 5vw + 12px, 40px); }
	.hero-subtitle { padding: 0 8px; }
	.hero-cta { flex-direction: column; }
	.brand-name { font-size: 16px; }
	.brand-logo { height: 42px; max-height: 42px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; }
}
@media (max-width: 1024px) {
	.tiles-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.steps {
		grid-template-columns: 1fr;
	}
	.connector { display: none; }
	.assurance-bar { grid-template-columns: 1fr; gap: 12px; }
	.assurance-sep { display: none; }
	.pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
	.nav { display: none; position: absolute; top: 60px; left: 0; right: 0; background: var(--bg-elev-1); border-bottom: 1px solid var(--border); }
	.nav.open { display: flex; flex-direction: column; padding: 10px 16px 16px; }
	.hamburger { display: inline-flex; }
	.tiles-4 { grid-template-columns: 1fr; }
	.cards-3 { grid-template-columns: 1fr; }
	.pricing-grid { grid-template-columns: 1fr; }
	.hero { padding-top: 58px; }
}


/* Policy / Terms layout additions */
.policy-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 28px;
}
.policy-sidebar { position: relative; }
.toc-card {
	position: sticky;
	top: 86px;
	background: linear-gradient(180deg, rgba(18,25,38,0.6), rgba(18,25,38,0.55));
	border: 1px solid var(--border);
	padding: 18px;
	border-radius: 12px;
}
.toc-title { font-weight: 700; margin-bottom: 10px; color: var(--text); }
.toc { display: flex; flex-direction: column; gap: 8px; }
.toc a { display: flex; gap: 10px; align-items: center; color: #bfc7da; padding: 8px; border-radius: 8px; }
.toc a:hover { background: rgba(63,47,115,0.06); color: var(--text); }
.toc-index { display: inline-flex; width: 28px; height: 28px; border-radius: 8px; background: rgba(155,107,255,0.12); color: var(--accent); align-items: center; justify-content: center; font-weight: 700; }
.toc-help { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }

.policy-content { background: transparent; }
/* Make policy/terms content use justified alignment for readability */
.policy-content { text-align: justify; }
.policy-header h1 { font-size: 32px; margin: 8px 0 6px; }
.policy-section { display: flex; gap: 18px; margin: 28px 0; align-items: flex-start; }
.section-number { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(180deg, rgba(155,107,255,0.14), rgba(122,82,255,0.06)); color: var(--accent); display: grid; place-items: center; font-weight: 800; font-size: 16px; border: 1px solid rgba(100,72,170,0.12); }
.section-body { flex: 1; }
.section-body h3 { margin: 0 0 8px; }

.info-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 12px 0 14px; }
.info-card { display: flex; gap: 12px; background: var(--bg-elev-1); border: 1px solid var(--border); padding: 14px; border-radius: 12px; align-items: center; }
.info-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; background: rgba(155,107,255,0.09); color: var(--accent); font-size: 20px; }

.security-card { background: linear-gradient(180deg, rgba(18,25,38,0.6), rgba(18,25,38,0.55)); border: 1px solid var(--border); padding: 14px; border-radius: 12px; }

.cookie-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.cookie-table th, .cookie-table td { text-align: left; padding: 12px 14px; border: 1px solid var(--border); }
.cookie-table thead th { color: #9fb0d3; background: rgba(20,27,43,0.4); }

.contact-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 12px; }
.contact-card { display: flex; gap: 12px; align-items: center; background: var(--bg-elev-1); border: 1px solid var(--border); padding: 12px; border-radius: 12px; }
.contact-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; background: rgba(155,107,255,0.09); color: var(--accent); }

.support-cta { margin: 28px 0 36px; background: linear-gradient(180deg, rgba(38,28,63,0.18), rgba(24,20,40,0.12)); border: 1px solid rgba(63,47,115,0.08); padding: 20px; border-radius: 14px; text-align: center; }
.support-cta h3 { margin: 0 0 8px; }

.checklist { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 8px; }
.checklist li::before { content: "\2713"; color: var(--green); margin-right: 10px; font-weight: 700; display: inline-block; width: 20px; }

@media (max-width: 980px) {
	.policy-layout { grid-template-columns: 1fr; }
	.toc-card { position: static; }
	.info-cards { grid-template-columns: 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
}




.portfolio .pill {
	display: inline-block;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--bg-elev-2);
	font-size: 12px;
	color: #bfc7da;
}
.accent-text { color: var(--accent); }

/* Featured Project */
.featured-project {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 0;
	border: 1px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	background: var(--bg-elev-1);
	box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.fp-left { padding: 26px; position: relative; }
.fp-right {
	position: relative;
	min-height: 320px;
	background: radial-gradient(600px 320px at 20% 50%, rgba(123,82,255,.25), transparent 60%) no-repeat,
							linear-gradient(90deg, rgba(22,29,43,1) 0%, rgba(22,29,43,0.7) 40%, rgba(194,180,255,0.35) 70%, rgba(213,201,255,0.6) 100%);
}
.fp-image {
	width: 220px;
	height: 220px;
	border-radius: 32px;
	background: linear-gradient(135deg, #8e7bff, #b3a6ff);
	position: absolute;
	right: 50%;
	top: 50%;
	transform: translate(50%, -50%);
	box-shadow: 0 30px 60px rgba(123,82,255,.35);
}
.badge-row { display: flex; gap: 10px; }
.badge {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid var(--border);
	color: #c9d1e6;
	background: var(--bg-elev-2);
}
.badge-primary { background: rgba(123,82,255,.2); border-color: rgba(123,82,255,.35); color: #e0d9ff; }
.fp-title { margin: 14px 0 10px; }
.fp-desc { color: var(--muted); margin: 0 0 14px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.tag {
	display: inline-flex;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--bg-elev-2);
	border: 1px solid var(--border);
	color: #bfc7da;
	font-size: 12px;
}
.link-arrow { color: #cdd6ec; font-weight: 600; }
.link-arrow.small { font-size: 13px; }

/* Project grid */
.project-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 24px;
}
.project-card {
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	display: grid;
	grid-template-rows: 140px auto;
}
.pc-image { background: linear-gradient(135deg, #8e7bff, #b3a6ff); }
.pc-body { padding: 16px; }
.pc-icon { color: var(--accent); margin-bottom: 6px; }
.pc-title { margin: 2px 0 6px; }
.pc-desc { color: var(--muted); margin: 0 0 8px; }

.portfolio-cta { text-align: center; margin-top: 26px; }
.cta-blurb { color: #bfc7da; margin: 0 0 12px; }

/* Responsive */
@media (max-width: 900px) {
	.featured-project { grid-template-columns: 1fr; }
	.fp-right { min-height: 240px; }
}
@media (max-width: 640px) {
	.project-grid { grid-template-columns: 1fr; }
}

/* Why Clients Trust Us */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 18px; align-items: start; }
.trust-left { padding: 6px 0 0; }
.trust-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.stat-box { background: transparent; border: 1px solid rgba(155,107,255,0.16); padding: 18px; border-radius: 12px; }
.stat-num { font-size: 28px; font-weight: 800; color: #fff; }
.stat-label { color: var(--muted); margin-top: 6px; }
.trust-tagline { margin: 18px 0; color: #bfc7da; }
.trust-right { display: grid; gap: 12px; }
.feature-card { display: flex; gap: 14px; align-items: flex-start; background: var(--bg-elev-1); border: 1px solid var(--border); padding: 14px; border-radius: 12px; }
.icon-box { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(123,82,255,0.12); color: var(--accent); font-size: 20px; }
.icon-box svg { width: 22px; height: 22px; display: block; }
.feature-body h4 { margin: 0 0 6px; }
.feature-body p { margin: 0; color: var(--muted); font-size: 14px; }

@media (max-width: 900px) {
	.trust-grid { grid-template-columns: 1fr; }
	.trust-stats { grid-template-columns: 1fr 1fr; }
}

/* Testimonials / What Clients Say */
.testimonials .pill { display: inline-block; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg-elev-2); font-size: 12px; color: #bfc7da; }
.test-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.test-card { background: var(--bg-elev-1); border: 1px solid var(--border); border-radius: 16px; padding: 24px; position: relative; min-height: 220px; }
.stars { color: #f5c43f; font-size: 16px; margin-bottom: 10px; }
.test-quote { font-size: 18px; line-height: 1.6; color: #e6eefc; margin: 0 0 18px; }
.test-meta { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.06); }
.meta-name { font-weight: 700; color: #fff; }
.meta-role { font-size: 13px; color: var(--muted); }
.quote-mark { margin-left: auto; font-size: 40px; color: rgba(123,82,255,0.18); font-weight: 700; }

@media (max-width: 900px) {
  .test-grid { grid-template-columns: 1fr; }
}

/* Testimonial carousel */
.testimonial-carousel { position: relative; overflow: hidden; padding: 10px 0 6px; }
.t-track { display: flex; transition: transform .6s ease-in-out; will-change: transform; }
.t-item { min-width: 100%; box-sizing: border-box; padding: 22px; }
.t-card { background: var(--bg-elev-1); border: 1px solid var(--border); border-radius: 14px; padding: 22px; min-height: 220px; display: flex; flex-direction: column; }
.t-card .stars { color: #f5c43f; font-size: 16px; margin-bottom: 12px; }
.t-card .test-quote { font-size: 18px; line-height: 1.6; color: #e6eefc; margin: 0 0 16px; }
.t-meta { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.t-meta .avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.04); }
.t-meta .meta-name { font-weight: 700; color: #fff; }
.t-meta .meta-role { font-size: 13px; color: var(--muted); }
.t-controls { position: absolute; right: 12px; top: 12px; display: flex; gap: 6px; }
.t-controls button { background: rgba(10,14,24,0.45); border: 1px solid rgba(255,255,255,0.04); color: #fff; width: 36px; height: 36px; border-radius: 8px; cursor: pointer; font-size: 20px; line-height: 1; }
.t-controls button:hover { background: rgba(123,82,255,0.14); }

@media (min-width: 980px) {
	.t-item { min-width: 33.3333%; }
	.t-track { gap: 18px; }
}

@media (max-width: 700px) {
	.t-controls { right: 8px; top: 8px; }
}

/* Hide header nav 'Contact Us' link (desktop & mobile) */
.nav a[href="#contact"] { display: none !important; }

/* What We Do section */
.what .section-header { margin-bottom: 6px; }
.what-cards { margin-top: 18px; }
.service-card {
	background: var(--bg-elev-1);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.service-icon {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	color: white;
	font-size: 18px;
}
.service-icon.bg-blue { background: linear-gradient(180deg, rgba(41,114,255,0.25), rgba(41,114,255,0.12)); color: #83b6ff; }
.service-icon.bg-purple { background: linear-gradient(180deg, rgba(123,82,255,0.18), rgba(123,82,255,0.08)); color: #d4c6ff; }
.service-icon.bg-pink { background: linear-gradient(180deg, rgba(255,95,172,0.12), rgba(255,95,172,0.06)); color: #ffc6e6; }
.service-card h3 { margin: 6px 0; }
.service-card p { color: var(--muted); margin: 0 0 8px; }
.service-list { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 8px; }
.service-list li { color: #c9d1e6; display: flex; gap: 10px; align-items: center; }
.service-list li i { color: var(--green); font-size: 12px; }

@media (min-width: 901px) {
	.what-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
}
@media (max-width: 900px) {
	.what-cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
}



