/* ===== Nexmark Core — f1 "Let's Connect" Footer ===== */
/* Sab classes .nx-f1 ke andar scoped — theme se conflict nahi karega */

.nx-f1 {
	--nx-green: #c8f560;
	--nx-green-d: #b6e84a;
	--nx-ink: #0e0e0e;
	--nx-grey: #8a8a8a;
	--nx-line: #e6e6e6;
	--nx-bg: #ffffff;

	background: var(--nx-bg);
	color: var(--nx-ink);
	font-family: "Inter", "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	-webkit-mask-image: -webkit-radial-gradient(white, black); /* forces radius clip in Safari */
}
.nx-f1 *, .nx-f1 *::before, .nx-f1 *::after { box-sizing: border-box; }

.nx-f1__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 56px 28px 28px;
}

/* ---- Top strip ---- */
.nx-f1__top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
	max-width: 420px;
	margin-bottom: 72px;
}
.nx-f1__intro {
	font-size: 15px;
	line-height: 1.6;
	color: var(--nx-ink);
	margin: 0;
}

/* ---- Pill buttons ---- */
.nx-f1__pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--nx-green);
	color: var(--nx-ink);
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 11px 18px;
	border-radius: 999px;
	transition: background .25s ease, transform .25s ease;
	line-height: 1;
}
.nx-f1__pill svg { width: 15px; height: 15px; flex-shrink: 0; }
.nx-f1__pill:hover { background: var(--nx-green-d); transform: translateX(3px); }

/* ---- Main grid ---- */
.nx-f1__main {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	align-items: start;
	padding-bottom: 56px;
}

.nx-f1__heading {
	font-size: clamp(56px, 9vw, 128px);
	line-height: 0.92;
	font-weight: 700;
	letter-spacing: -0.03em;
	margin: 0;
	color: var(--nx-ink);
}

.nx-f1__label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nx-grey);
	margin-bottom: 18px;
}
.nx-f1__label--mt { margin-top: 34px; }

.nx-f1__office {
	font-size: 17px;
	font-weight: 600;
	margin: 0 0 10px;
	color: var(--nx-ink);
}
.nx-f1__addr {
	font-style: normal;
	font-size: 15px;
	line-height: 1.6;
	color: var(--nx-ink);
	margin: 0 0 22px;
}

.nx-f1__contact { margin-bottom: 12px; }
.nx-f1__contact span { letter-spacing: 0.04em; }

/* ---- Social ---- */
.nx-f1__social { display: flex; gap: 10px; }
.nx-f1__social a {
	width: 42px; height: 42px;
	border-radius: 50%;
	background: #f1f1f1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--nx-ink);
	transition: background .25s ease, color .25s ease, transform .25s ease;
}
.nx-f1__social svg { width: 18px; height: 18px; }
.nx-f1__social a:hover { background: var(--nx-green); transform: translateY(-3px); }

/* ---- Bottom bar ---- */
.nx-f1__bottom {
	border-top: 1px solid var(--nx-line);
	padding-top: 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: var(--nx-grey);
	letter-spacing: 0.02em;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.nx-f1__main {
		grid-template-columns: 1fr 1fr;
		gap: 44px 36px;
	}
	.nx-f1__headcol { grid-column: 1 / -1; margin-bottom: 8px; }
}

@media (max-width: 600px) {
	.nx-f1__inner { padding: 44px 20px 24px; }
	.nx-f1__top { margin-bottom: 52px; }
	.nx-f1__main {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.nx-f1__heading { font-size: clamp(54px, 18vw, 88px); }
	.nx-f1__pill { width: 100%; justify-content: space-between; }
	.nx-f1__social a { width: 46px; height: 46px; }
	.nx-f1__bottom {
		flex-direction: column;
		gap: 8px;
		align-items: flex-start;
	}
}
