/************************************/
/* Extra sections — Sparkxe         */
/************************************/

.x-section {
	padding: var(--section-space) 0;
	position: relative;
	z-index: 1;
}

/* 1. Why Choose Us */
.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.why-card {
	padding: 32px 28px;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.why-card:hover {
	border-color: rgba(107, 253, 217, 0.3);
	transform: translateY(-4px);
}

.why-card .why-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--gradient-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--black-color);
	font-size: 22px;
	margin-bottom: 20px;
}

.why-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.why-card p {
	font-size: 14px;
	line-height: 1.6;
	opacity: 0.8;
	margin: 0;
}

/* Differentiation — split intro + numbered rail (not cards) */
.spark-difference {
	overflow: hidden;
}

.difference-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.2fr);
	gap: 48px 64px;
	align-items: start;
}

.difference-intro {
	position: sticky;
	top: 120px;
}

.difference-lead {
	font-size: 16px;
	line-height: 1.75;
	opacity: 0.8;
	margin: 0 0 28px;
	max-width: 34ch;
}

.difference-rail {
	position: relative;
	display: flex;
	flex-direction: column;
}

.difference-rail::before {
	content: '';
	position: absolute;
	left: 28px;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: linear-gradient(
		180deg,
		transparent 0%,
		var(--accent-secondary-color) 12%,
		var(--divider-color) 50%,
		var(--accent-secondary-color) 88%,
		transparent 100%
	);
	opacity: 0.55;
}

.difference-item {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 18px;
	align-items: start;
	padding: 22px 0 22px 8px;
	border-bottom: 1px solid var(--divider-color);
	background: transparent;
}

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

.difference-item:first-child {
	padding-top: 0;
}

.difference-index {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--black-color);
	background: var(--gradient-accent);
	box-shadow: 0 0 0 6px var(--black-color);
}

.difference-copy h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 6px 0 8px;
}

.difference-copy p {
	font-size: 14px;
	line-height: 1.7;
	opacity: 0.8;
	margin: 0;
	max-width: 52ch;
}

.difference-item:hover .difference-copy h3 {
	color: var(--accent-secondary-color);
}

@media (max-width: 991px) {
	.difference-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.difference-intro {
		position: static;
	}

	.difference-lead {
		max-width: none;
	}
}

@media (max-width: 575px) {
	.difference-rail::before {
		left: 20px;
	}

	.difference-item {
		grid-template-columns: 40px 1fr;
		gap: 12px;
		padding-left: 0;
	}

	.difference-index {
		width: 34px;
		height: 34px;
		font-size: 12px;
		box-shadow: 0 0 0 5px var(--black-color);
	}
}

/* About compass — story stage shell */
.spark-compass {
	position: relative;
}

.compass-shell {
	position: relative;
	padding: 42px 44px;
	border-radius: 28px;
	border: 1px solid var(--divider-color);
	background:
		radial-gradient(ellipse 70% 55% at 0% 0%, rgba(107, 253, 217, 0.12), transparent 55%),
		radial-gradient(ellipse 55% 45% at 100% 100%, rgba(240, 255, 108, 0.08), transparent 50%),
		linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
	overflow: hidden;
}

.compass-top {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 28px 36px;
	align-items: center;
	margin-bottom: 32px;
}

.compass-year {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--gradient-accent);
	color: var(--black-color);
	flex-shrink: 0;
}

.compass-year span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.75;
}

.compass-year strong {
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
}

.compass-eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent-secondary-color);
	margin-bottom: 10px;
}

.compass-top-copy h2 {
	font-size: clamp(26px, 3.6vw, 40px);
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
	max-width: 18ch;
}

.compass-top-copy h2 span {
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.compass-quote {
	position: relative;
	margin: 0 0 34px;
	padding: 22px 24px 22px 28px;
	border-left: 3px solid var(--accent-secondary-color);
	background: rgba(0, 0, 0, 0.18);
	border-radius: 0 18px 18px 0;
}

.compass-quote-mark {
	position: absolute;
	top: -6px;
	left: 18px;
	font-size: 64px;
	line-height: 1;
	font-weight: 800;
	color: var(--accent-secondary-color);
	opacity: 0.35;
	pointer-events: none;
}

.compass-quote p {
	position: relative;
	z-index: 1;
	font-size: 16px;
	line-height: 1.75;
	margin: 0;
	opacity: 0.9;
	max-width: 68ch;
}

.compass-mv {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 28px;
}

.compass-mv-item {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 16px;
	align-items: start;
	padding: 8px 4px;
}

.compass-mv-letter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	font-size: 22px;
	font-weight: 800;
	color: var(--black-color);
	background: var(--gradient-accent);
}

.compass-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.55;
	margin-bottom: 8px;
}

.compass-mv-item h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.3;
}

.compass-mv-item p {
	font-size: 14px;
	line-height: 1.7;
	opacity: 0.8;
	margin: 0;
}

.compass-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 8px;
	border-top: 1px solid var(--divider-color);
}

.compass-chip {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border-radius: 999px;
	border: 1px solid var(--divider-color);
	background: rgba(255, 255, 255, 0.03);
	min-width: 0;
	flex: 1 1 200px;
}

.compass-chip i {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: var(--accent-secondary-color);
	background: rgba(107, 253, 217, 0.12);
	flex-shrink: 0;
}

.compass-chip strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 2px;
}

.compass-chip span {
	display: block;
	font-size: 12px;
	opacity: 0.7;
	line-height: 1.3;
}

@media (max-width: 991px) {
	.compass-shell {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.compass-top {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.compass-top-copy h2 {
		max-width: none;
	}

	.compass-mv {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

@media (max-width: 575px) {
	.compass-mv-item {
		grid-template-columns: 44px 1fr;
		gap: 12px;
	}

	.compass-mv-letter {
		width: 44px;
		height: 44px;
		font-size: 18px;
		border-radius: 12px;
	}

	.compass-chip {
		flex: 1 1 100%;
		border-radius: 16px;
	}
}

/* 2. Industries */
.industries-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.industry-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	transition: border-color 0.3s ease;
}

.industry-card:hover {
	border-color: rgba(107, 253, 217, 0.25);
}

.industry-card i {
	font-size: 28px;
	color: var(--accent-secondary-color);
	width: 40px;
	text-align: center;
}

.industry-card h3 {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 4px;
}

.industry-card span {
	font-size: 13px;
	opacity: 0.7;
}

/* 3. Portfolio */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
	align-items: stretch;
}

.portfolio-card {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--divider-color);
	background: var(--secondary-color);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.portfolio-card:hover {
	transform: translateY(-6px);
}

.portfolio-card img {
	width: 100%;
	aspect-ratio: 16/10;
	object-fit: cover;
}

.portfolio-card-body {
	padding: 22px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.portfolio-card-body h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 6px;
}

.portfolio-card-body p {
	font-size: 13px;
	opacity: 0.75;
	margin: 0 0 12px;
}

.portfolio-tag {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 20px;
	background: var(--gradient-accent);
	color: var(--black-color);
	display: inline-block;
}

/* 4. Case Studies */
.cases-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.case-card {
	padding: 32px 28px;
	border-radius: 20px;
	border: 1px solid var(--divider-color);
	background: var(--secondary-color);
	height: 100%;
}

.case-metric {
	font-size: 36px;
	font-weight: 800;
	background: var(--gradient-accent);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 12px;
}

.case-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.case-card p {
	font-size: 14px;
	line-height: 1.6;
	opacity: 0.8;
	margin: 0;
}

/* 5. Tech Stack */
.tech-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.tech-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	transition: border-color 0.3s ease, transform 0.2s ease;
}

.tech-pill:hover {
	border-color: var(--accent-secondary-color);
	transform: scale(1.04);
}

.tech-pill i {
	font-size: 20px;
	color: var(--accent-secondary-color);
}

/* 6. Stats Strip */
.stats-strip-section {
	padding: var(--section-space-tight) 0;
	position: relative;
	z-index: 1;
}

.stats-strip-inner {
	padding: 44px 40px;
	border-radius: 24px;
	background: var(--gradient-accent);
}

.stats-strip-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
	color: var(--black-color);
}

.stats-strip-item h2 {
	font-size: 42px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 8px;
}

.stats-strip-item p {
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	opacity: 0.85;
}

/* 7. Team */
.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.team-card {
	text-align: center;
	padding: 28px 20px;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
}

.team-avatar {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	margin: 0 auto 16px;
	background: var(--gradient-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	font-weight: 700;
	color: var(--black-color);
	overflow: hidden;
}

.team-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-card h3 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 4px;
}

.team-card span {
	font-size: 13px;
	color: var(--accent-secondary-color);
	font-weight: 600;
}

.team-social {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 14px;
}

.team-social a {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var(--divider-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.team-social a:hover {
	background: var(--gradient-accent);
	color: var(--black-color);
	border-color: transparent;
}

/* 8. Partners */
.partners-marquee {
	overflow: hidden;
	padding: 20px 0;
}

.partners-track {
	display: flex;
	gap: 48px;
	animation: partners-scroll 30s linear infinite;
	width: max-content;
}

.partners-track span {
	font-size: 22px;
	font-weight: 700;
	opacity: 0.45;
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

@keyframes partners-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* 9. Trust */
.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.trust-card {
	text-align: center;
	padding: 36px 24px;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	background: var(--secondary-color);
}

.trust-card i {
	font-size: 36px;
	color: var(--accent-secondary-color);
	margin-bottom: 16px;
}

.trust-card h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}

.trust-card p {
	font-size: 13px;
	opacity: 0.75;
	margin: 0;
	line-height: 1.5;
}

/* 10. Newsletter */
.newsletter-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 48px 56px;
	border-radius: 24px;
	border: 1px solid var(--divider-color);
	background: var(--secondary-color);
}

.newsletter-box h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 8px;
}

.newsletter-box > div > p {
	margin: 0;
	opacity: 0.8;
	font-size: 15px;
}

.newsletter-form {
	display: flex;
	gap: 12px;
	flex: 1;
	max-width: 480px;
}

.newsletter-form input {
	flex: 1;
	padding: 16px 20px;
	border-radius: 50px;
	border: 1px solid var(--divider-color);
	background: rgba(0, 0, 0, 0.2);
	color: var(--primary-color);
	font-family: var(--default-font);
	font-size: 14px;
}

.newsletter-form input:focus {
	outline: none;
	border-color: var(--accent-secondary-color);
}

.newsletter-form .btn-default {
	border: none;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
}

@media (max-width: 991px) {
	.why-grid,
	.industries-grid,
	.portfolio-grid,
	.cases-grid,
	.team-grid,
	.trust-grid {
		grid-template-columns: 1fr 1fr;
	}

	.stats-strip-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.newsletter-box {
		flex-direction: column;
		text-align: center;
		padding: 36px 28px;
	}

	.newsletter-form {
		flex-direction: column;
		max-width: 100%;
		width: 100%;
	}
}

@media (max-width: 767px) {
	.why-grid,
	.industries-grid,
	.portfolio-grid,
	.cases-grid,
	.team-grid,
	.trust-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

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

	.stats-strip-inner {
		padding: 28px 20px;
		border-radius: 20px;
	}

	.stats-strip-item h2 {
		font-size: 32px;
	}

	.why-card,
	.case-card,
	.trust-card {
		padding: 24px 20px;
	}

	.newsletter-box {
		padding: 28px 20px;
	}

	.site-newsletter-bar .footer-newsletter {
		padding: 24px 20px;
	}
}

.footer-newsletter h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.footer-newsletter p {
	font-size: 14px;
	opacity: 0.8;
}

.footer-newsletter-form {
	max-width: 760px;
	margin: 0 auto;
}

.footer-newsletter-form input {
	width: 100%;
	padding: 12px 16px;
	border-radius: 50px;
	border: 1px solid var(--divider-color);
	background: rgba(0, 0, 0, 0.2);
	color: var(--primary-color);
	font-family: var(--default-font);
	font-size: 14px;
}

.footer-newsletter-form input:focus {
	outline: none;
	border-color: var(--accent-secondary-color);
}

.footer-newsletter-form .btn-default {
	border: none;
	cursor: pointer;
	white-space: nowrap;
	padding: 12px 20px;
	font-size: 14px;
}

.footer-newsletter-submit {
	display: flex;
	gap: 10px;
	align-items: center;
}

.footer-newsletter-submit input {
	flex: 1;
}

.site-newsletter-bar {
	padding: var(--section-space) 0;
	position: relative;
	z-index: 1;
}

.site-newsletter-bar .footer-newsletter {
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 32px 36px;
	text-align: center;
}

.site-newsletter-bar .footer-newsletter-form {
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 767px) {
	.footer-newsletter-submit {
		flex-direction: column;
		align-items: stretch;
	}
}
