/*
Theme Name: BRICS Modern
Theme URI: http://localhost/brics/
Author: BRICS India
Description: Modern business theme for BRICS India Trade Pvt. Ltd.
Version: 1.0.0
Text Domain: brics-modern
*/

:root {
	--ink: #101820;
	--muted: #637083;
	--line: #e6ebef;
	--paper: #ffffff;
	--soft: #f4f7f8;
	--brand: #2a1a72;
	--brand-rgb: 42, 26, 114;
	--brand-2: #47a7d8;
	--brand-2-rgb: 71, 167, 216;
	--accent-red: #d71920;
	--gold: #e9b44c;
	--shadow: 0 24px 70px rgba(15, 31, 45, 0.13);
}

* {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Inter, "Albert Sans", Arial, sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

h1,
h2,
h3,
p,
a,
span,
strong,
li {
	overflow-wrap: anywhere;
}

.hero-copy,
.modern-page-grid > *,
.premium-hero-grid > *,
.about-hero-grid > *,
.contact-hero-grid > *,
.brand-products-hero-grid > *,
.section-inner > *,
.service-feature-card,
.product-card,
.roadmap-card {
	min-width: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(214, 224, 229, 0.72);
	box-shadow: 0 16px 48px rgba(16, 24, 32, 0.05);
	backdrop-filter: blur(18px);
}

.site-header::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--brand), var(--brand-2));
	content: "";
}

.nav-wrap,
.section-inner {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 88px;
	gap: 32px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	letter-spacing: 0;
	flex: 0 0 auto;
	padding: 10px 0;
}

.brand img {
	width: 176px;
	max-height: 52px;
	object-fit: contain;
}

.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(214, 224, 229, 0.92);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	border-radius: 999px;
	background: var(--ink);
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
	opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 8px;
	border: 1px solid rgba(214, 224, 229, 0.82);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: #263542;
	font-size: 15px;
	font-weight: 800;
	list-style: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 36px rgba(16, 24, 32, 0.05);
}

.main-nav li {
	margin: 0;
	padding: 0;
}

.main-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 999px;
	color: #22313d;
	transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.main-nav a::after {
	display: none;
}

.main-nav a:hover,
.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown:focus-within > .nav-dropdown-toggle,
.main-nav .current-menu-item a {
	background: rgba(var(--brand-rgb), 0.09);
	color: var(--brand);
}

.nav-dropdown {
	position: relative;
}

.nav-dropdown::after {
	position: absolute;
	top: 100%;
	right: -24px;
	left: -24px;
	height: 24px;
	content: "";
}

.nav-dropdown-toggle {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.dropdown-caret {
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.18s ease;
}

.nav-dropdown:hover .dropdown-caret,
.nav-dropdown:focus-within .dropdown-caret {
	transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	z-index: 30;
	display: grid;
	min-width: 390px;
	padding: 12px;
	border: 1px solid rgba(214, 224, 229, 0.92);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 30px 90px rgba(20, 35, 48, 0.18);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-dropdown-menu::before {
	position: absolute;
	top: -7px;
	left: 50%;
	width: 14px;
	height: 14px;
	border-top: 1px solid rgba(214, 224, 229, 0.92);
	border-left: 1px solid rgba(214, 224, 229, 0.92);
	background: #fff;
	content: "";
	transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
	display: grid;
	min-height: auto;
	padding: 14px 16px;
	border-radius: 8px;
	color: var(--ink);
	font-size: 15px;
	white-space: nowrap;
}

.nav-dropdown-menu a::after {
	display: none;
}

.nav-dropdown-menu a:hover {
	background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.1), rgba(var(--brand-2-rgb), 0.08));
	color: var(--brand);
}

.nav-dropdown-menu strong {
	font-size: 15px;
	line-height: 1.2;
}

.nav-dropdown-menu span {
	margin-top: 4px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
}

.nav-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 8px;
	background: var(--brand);
	color: #fff;
	font-weight: 800;
	box-shadow: 0 18px 44px rgba(var(--brand-rgb), 0.24);
}

.button.secondary {
	background: #fff;
	color: var(--ink);
	box-shadow: none;
}

.hero {
	position: relative;
	min-height: calc(100vh - 88px);
	display: grid;
	align-items: end;
	overflow: hidden;
	background: #111;
}

.hero::before {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgba(8, 18, 28, 0.9), rgba(8, 18, 28, 0.58) 46%, rgba(8, 18, 28, 0.16)), var(--hero-image);
	background-position: center;
	background-size: cover;
	content: "";
}

.hero .section-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.56fr);
	align-items: end;
	gap: 48px;
	padding: 120px 0 54px;
	color: #fff;
}

.eyebrow {
	color: var(--gold);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero h1 {
	max-width: 820px;
	margin: 12px 0 18px;
	font-size: clamp(42px, 7vw, 82px);
	line-height: 0.98;
	letter-spacing: 0;
}

.hero p {
	max-width: 650px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.split-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-panel {
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(18px);
}

.metric-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.metric strong {
	display: block;
	font-size: 30px;
	line-height: 1;
}

.metric span {
	color: rgba(255, 255, 255, 0.74);
	font-size: 13px;
}

.band {
	padding: 90px 0;
}

.band.soft {
	background: var(--soft);
}

.section-kicker {
	margin-bottom: 10px;
	color: var(--brand);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section-title {
	max-width: 760px;
	margin: 0 0 18px;
	font-size: clamp(32px, 5vw, 52px);
	line-height: 1.04;
}

.section-copy {
	max-width: 700px;
	margin: 0 0 34px;
	color: var(--muted);
	font-size: 18px;
}

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

.service-card,
.brand-card,
.contact-strip {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(18, 30, 45, 0.06);
}

.service-card {
	padding: 28px;
}

.service-card span {
	display: inline-grid;
	width: 44px;
	height: 44px;
	margin-bottom: 22px;
	place-items: center;
	border-radius: 6px;
	background: rgba(var(--brand-rgb), 0.1);
	color: var(--brand);
	font-weight: 900;
}

.service-card h3,
.brand-card h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.2;
}

.service-card p,
.brand-card p {
	margin: 0;
	color: var(--muted);
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: 54px;
}

.image-stack {
	position: relative;
	min-height: 560px;
}

.image-stack img {
	position: absolute;
	border-radius: 8px;
	box-shadow: var(--shadow);
	object-fit: cover;
}

.image-stack img:first-child {
	top: 0;
	left: 0;
	width: 78%;
	height: 410px;
}

.image-stack img:last-child {
	right: 0;
	bottom: 0;
	width: 58%;
	height: 320px;
	border: 8px solid #fff;
}

.brand-card {
	overflow: hidden;
}

.brand-card img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	background: #fff;
}

.brand-card div {
	padding: 22px;
}

.contact-strip {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 24px;
	padding: 34px;
	background:
		radial-gradient(circle at 86% 18%, rgba(var(--brand-rgb), 0.44), transparent 32%),
		var(--ink);
	color: #fff;
}

.contact-strip p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
}

.site-footer {
	padding: 42px 0;
	background: #0c1117;
	color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 28px;
}

.footer-grid h3,
.footer-grid h4 {
	margin: 0 0 10px;
	color: #fff;
}

.page-hero {
	padding: 86px 0;
	background: linear-gradient(135deg, #0f232f, #123e3a);
	color: #fff;
}

.page-hero h1 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(40px, 6vw, 66px);
	line-height: 1;
}

.page-content {
	padding: 72px 0;
}

.page-content .entry-content {
	max-width: 1060px;
}

.page-content .entry-content a {
	color: var(--brand);
	text-decoration: underline;
}

@media (max-width: 920px) {
	.nav-wrap {
		position: relative;
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		min-height: 76px;
		padding: 12px 0;
		gap: 14px;
	}

	.nav-toggle {
		display: block;
	}

	.main-nav {
		position: absolute;
		top: calc(100% + 10px);
		right: 0;
		left: 0;
		z-index: 80;
		display: grid;
		width: 100%;
		max-height: calc(100vh - 110px);
		overflow-x: hidden;
		overflow-y: auto;
		padding: 12px;
		border-radius: 16px;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: 0 28px 80px rgba(16, 24, 32, 0.18);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 0.18s ease, transform 0.18s ease;
		-webkit-overflow-scrolling: touch;
	}

	.nav-open .main-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.main-nav a {
		justify-content: space-between;
		width: 100%;
		max-width: 100%;
		min-height: 48px;
		padding: 0 14px;
		border-radius: 10px;
		white-space: normal;
	}

	.nav-dropdown {
		position: static;
		width: 100%;
	}

	.nav-dropdown::after {
		display: none;
	}

	.nav-dropdown-menu {
		position: static;
		display: grid;
		width: 100%;
		min-width: 0;
		max-width: 100%;
		margin: 4px 0 8px;
		padding: 8px;
		border: 0;
		border-radius: 12px;
		background: #f5f8fb;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.nav-dropdown-menu::before {
		display: none;
	}

	.nav-dropdown-menu a {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		padding: 12px 14px;
		background: #fff;
		white-space: normal;
	}

	.nav-dropdown-menu strong,
	.nav-dropdown-menu span {
		white-space: normal;
		overflow-wrap: anywhere;
	}

	.nav-cta {
		display: none;
	}

	.hero,
	.hero .section-inner {
		min-height: auto;
	}

	.hero .section-inner,
	.split,
	.contact-strip,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.service-grid,
	.brand-grid {
		grid-template-columns: 1fr;
	}

	.image-stack {
		min-height: auto;
	}

	.image-stack img,
	.image-stack img:first-child,
	.image-stack img:last-child {
		position: static;
		width: 100%;
		height: auto;
		margin-bottom: 16px;
	}
}

/* BRICS Modern v2 */
body {
	background:
		linear-gradient(180deg, rgba(247, 250, 251, 0.9), rgba(255, 255, 255, 1) 420px),
		#fff;
}

.site-header {
	background: rgba(250, 252, 252, 0.9);
}

.brand img {
	width: 176px;
}

.nav-cta,
.button {
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.nav-cta:hover,
.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(var(--brand-rgb), 0.26);
}

.premium-hero {
	position: relative;
	overflow: hidden;
	min-height: calc(100vh - 88px);
	background: #071016;
	color: #fff;
}

.premium-hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(90deg, rgba(7, 16, 22, 0.94), rgba(7, 16, 22, 0.7) 46%, rgba(7, 16, 22, 0.22)),
		var(--hero-image);
	background-position: center;
	background-size: cover;
	content: "";
}

.premium-hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 34%;
	background: linear-gradient(180deg, rgba(7, 16, 22, 0), rgba(7, 16, 22, 0.95));
	content: "";
}

.premium-hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
	align-items: center;
	gap: 68px;
	min-height: calc(100vh - 150px);
	padding: 88px 0 42px;
}

.hero-copy h1 {
	max-width: 900px;
	margin: 14px 0 22px;
	font-size: clamp(48px, 7.2vw, 92px);
	line-height: 0.94;
	letter-spacing: 0;
}

.hero-copy p {
	max-width: 660px;
	margin: 0 0 30px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(18px, 2vw, 22px);
}

.hero-showcase {
	position: relative;
	min-height: 560px;
}

.showcase-main {
	position: absolute;
	inset: 42px 0 auto auto;
	width: 86%;
	height: 430px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	object-fit: cover;
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.showcase-card {
	position: absolute;
	bottom: 52px;
	left: 0;
	display: grid;
	grid-template-columns: 82px 1fr;
	align-items: center;
	gap: 16px;
	width: min(360px, 92%);
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.14);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
	backdrop-filter: blur(18px);
}

.showcase-card img {
	width: 82px;
	height: 82px;
	border-radius: 6px;
	object-fit: contain;
	background: #fff;
}

.showcase-card span {
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
}

.trust-rail {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin-bottom: 34px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
}

.trust-rail span {
	padding: 18px 16px;
	border-right: 1px solid rgba(255, 255, 255, 0.13);
	color: rgba(255, 255, 255, 0.84);
	font-size: 13px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.trust-rail span:last-child {
	border-right: 0;
}

.intro-grid {
	display: grid;
	grid-template-columns: 0.9fr 1fr;
	gap: 60px;
	align-items: end;
}

.premium-band {
	background: #fff;
}

.bento-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 0.8fr;
	grid-auto-rows: 260px;
	gap: 18px;
	margin-top: 30px;
}

.bento-card {
	position: relative;
	display: flex;
	overflow: hidden;
	align-items: flex-end;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #f7fafb;
	color: var(--ink);
	box-shadow: 0 18px 50px rgba(20, 35, 48, 0.08);
}

.bento-card.large {
	grid-row: span 2;
	min-height: 538px;
	color: #fff;
}

.bento-card.deep {
	background: #101820;
	color: #fff;
}

.bento-card.image {
	color: #fff;
}

.bento-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bento-card::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.76));
	content: "";
	opacity: 0;
}

.bento-card.large::after,
.bento-card.image::after {
	opacity: 1;
}

.bento-card div {
	position: relative;
	z-index: 2;
}

.bento-card span {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--gold);
	font-size: 13px;
	font-weight: 900;
}

.bento-card h3 {
	margin: 0 0 8px;
	font-size: clamp(24px, 3vw, 38px);
	line-height: 1;
}

.bento-card p {
	max-width: 420px;
	margin: 0;
	color: inherit;
	opacity: 0.78;
}

.product-stage {
	background: #0d171f;
	color: #fff;
}

.product-stage .section-copy {
	color: rgba(255, 255, 255, 0.74);
}

.stage-grid {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	gap: 58px;
	align-items: center;
}

.product-wall {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.product-wall img {
	width: 100%;
	height: 340px;
	border-radius: 8px;
	object-fit: contain;
	background: #fff;
	padding: 18px;
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.product-wall img:nth-child(even) {
	margin-top: 42px;
}

.dealing-brands {
	background:
		linear-gradient(180deg, rgba(244, 247, 248, 0.75), #fff),
		#fff;
}

.dealing-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	margin-top: 34px;
}

.dealing-card {
	display: grid;
	min-height: 230px;
	align-content: center;
	justify-items: center;
	padding: 24px 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	text-align: center;
	box-shadow: 0 16px 42px rgba(20, 35, 48, 0.07);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dealing-card:hover {
	border-color: rgba(var(--brand-rgb), 0.34);
	transform: translateY(-5px);
	box-shadow: 0 24px 62px rgba(20, 35, 48, 0.13);
}

.dealing-card.category-card {
	background:
		linear-gradient(180deg, rgba(var(--brand-rgb), 0.04), rgba(var(--brand-2-rgb), 0.05)),
		#fff;
}

.dealing-card img {
	width: 112px;
	height: 112px;
	margin-bottom: 18px;
	border-radius: 8px;
	object-fit: contain;
	background: #f7fafb;
}

.dealing-card strong {
	display: block;
	color: var(--ink);
	font-size: 18px;
	line-height: 1.2;
}

.dealing-card span {
	margin-top: 6px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.timeline-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 32px;
}

.timeline-grid div {
	min-height: 250px;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(20, 35, 48, 0.06);
}

.timeline-grid strong {
	display: block;
	margin-bottom: 48px;
	color: var(--brand-2);
	font-size: 14px;
}

.timeline-grid h3 {
	margin: 0 0 10px;
	font-size: 22px;
}

.timeline-grid p {
	margin: 0;
	color: var(--muted);
}

.final-cta {
	background: #101820;
	color: #fff;
}

.final-cta-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 28px;
	align-items: center;
}

.final-cta h2 {
	max-width: 820px;
	margin: 0 0 10px;
	font-size: clamp(34px, 5vw, 62px);
	line-height: 1;
}

.final-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
}

.modern-page-hero {
	position: relative;
	overflow: hidden;
	padding: 104px 0 92px;
	background:
		radial-gradient(circle at 74% 20%, rgba(var(--brand-rgb), 0.42), transparent 34%),
		linear-gradient(115deg, #071016 0%, #0b1520 52%, #121938 100%);
	color: #fff;
}

.modern-page-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
	gap: 72px;
	align-items: center;
}

.modern-page-hero h1 {
	max-width: 860px;
	margin: 12px 0 18px;
	font-size: clamp(48px, 6vw, 82px);
	line-height: 0.98;
}

.modern-page-hero p {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 19px;
}

.page-visual {
	position: relative;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
	backdrop-filter: blur(14px);
}

.page-visual img {
	width: 100%;
	height: 440px;
	border-radius: 8px;
	object-fit: cover;
	filter: saturate(0.95) contrast(1.04);
}

.page-visual::after {
	position: absolute;
	inset: 10px;
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(7, 16, 22, 0.04), rgba(7, 16, 22, 0.54));
	content: "";
	pointer-events: none;
}

.page-points {
	position: absolute;
	right: 24px;
	bottom: 24px;
	left: 24px;
	z-index: 2;
	display: grid;
	gap: 8px;
}

.page-points span {
	padding: 11px 13px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 6px;
	background: rgba(7, 16, 22, 0.72);
	color: #fff;
	backdrop-filter: blur(14px);
	font-size: 13px;
	font-weight: 900;
}

.premium-page-content {
	background: linear-gradient(180deg, #f4f7f8, #fff);
}

.content-panel {
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 56px rgba(20, 35, 48, 0.08);
}

.content-panel .entry-content {
	max-width: none;
}

.content-panel .elementor,
.content-panel [class*="wp-block-uagb"] {
	max-width: 100%;
}

.service-overview {
	background:
		linear-gradient(180deg, #fff, rgba(244, 247, 248, 0.74)),
		#fff;
}

.service-overview-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
	gap: 54px;
	align-items: center;
}

.service-keywords {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 42px rgba(20, 35, 48, 0.07);
}

.service-keywords span {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid rgba(var(--brand-rgb), 0.18);
	border-radius: 999px;
	background: rgba(var(--brand-rgb), 0.07);
	color: var(--brand);
	font-size: 13px;
	font-weight: 900;
}

.service-detail-band {
	background:
		linear-gradient(180deg, rgba(241, 245, 248, 0.98), rgba(255, 255, 255, 0.96)),
		#fff;
}

.service-detail-grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.66fr) minmax(0, 1fr);
	gap: 24px;
	align-items: stretch;
}

.service-image-panel {
	position: sticky;
	top: 118px;
	overflow: hidden;
	height: max-content;
	border-radius: 8px;
	background: #101820;
	box-shadow: var(--shadow);
}

.service-image-panel::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 16, 22, 0), rgba(7, 16, 22, 0.18));
	content: "";
	pointer-events: none;
}

.service-image-panel img {
	width: 100%;
	height: 610px;
	object-fit: cover;
	opacity: 0.9;
}

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

.service-feature-card {
	display: flex;
	min-height: 292px;
	flex-direction: column;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 54px rgba(20, 35, 48, 0.08);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-feature-card:hover {
	border-color: rgba(var(--brand-rgb), 0.22);
	transform: translateY(-4px);
	box-shadow: 0 26px 72px rgba(20, 35, 48, 0.13);
}

.service-feature-card > span {
	display: inline-grid;
	width: 44px;
	height: 44px;
	margin-bottom: 42px;
	place-items: center;
	border-radius: 8px;
	background: rgba(var(--brand-rgb), 0.1);
	color: var(--brand);
	font-size: 13px;
	font-weight: 900;
}

.service-feature-card h3 {
	margin: 0 0 12px;
	font-size: clamp(24px, 2.2vw, 32px);
	line-height: 1.08;
}

.service-feature-card p {
	margin: 0;
	color: var(--muted);
}

.service-feature-card a {
	margin-top: auto;
	padding-top: 24px;
	color: var(--brand);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.service-process-band {
	background: #fff;
}

.service-process {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	margin-top: 34px;
}

.service-process div {
	position: relative;
	min-height: 180px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background:
		linear-gradient(180deg, #fff, #f9fbfc),
		#fff;
	box-shadow: 0 14px 36px rgba(20, 35, 48, 0.07);
}

.service-process div::after {
	position: absolute;
	top: 44px;
	right: -9px;
	z-index: 2;
	width: 18px;
	height: 2px;
	background: var(--brand);
	content: "";
}

.service-process div:last-child::after {
	display: none;
}

.service-process span {
	display: block;
	margin-bottom: 40px;
	color: var(--brand-2);
	font-size: 13px;
	font-weight: 900;
}

.service-process strong {
	display: block;
	font-size: 18px;
	line-height: 1.2;
}

.local-seo-band {
	padding-top: 0;
	background: #fff;
}

.local-seo-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
	gap: 34px;
	align-items: center;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background:
		linear-gradient(115deg, rgba(var(--brand-rgb), 0.1), rgba(var(--brand-2-rgb), 0.08)),
		#fff;
	box-shadow: 0 18px 54px rgba(20, 35, 48, 0.08);
}

.local-seo-panel .section-title {
	margin-bottom: 0;
	font-size: clamp(28px, 4vw, 44px);
}

.local-seo-panel p {
	margin: 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.7;
}

.contact-hero {
	overflow: hidden;
	padding: 92px 0 82px;
	background:
		linear-gradient(110deg, rgba(7, 16, 22, 0.96), rgba(19, 32, 56, 0.82) 52%, rgba(var(--brand-rgb), 0.36)),
		url("http://localhost/brics/wp-content/uploads/2024/02/seoul-scaled.jpg") center/cover;
	color: #fff;
}

.contact-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
	gap: 64px;
	align-items: center;
}

.contact-hero h1 {
	max-width: 820px;
	margin: 12px 0 18px;
	font-size: clamp(44px, 6vw, 78px);
	line-height: 0.98;
}

.contact-hero p {
	max-width: 650px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 19px;
}

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

.contact-hero-panel {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
	backdrop-filter: blur(16px);
}

.contact-hero-panel img {
	width: 100%;
	height: 360px;
	object-fit: cover;
}

.contact-hero-points {
	display: grid;
	gap: 8px;
	padding: 16px;
}

.contact-hero-points span {
	padding: 12px 14px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.13);
	color: rgba(255, 255, 255, 0.86);
	font-size: 13px;
	font-weight: 900;
}

.contact-main-section {
	background:
		linear-gradient(180deg, rgba(244, 247, 248, 0.96), rgba(255, 255, 255, 1)),
		#fff;
}

.contact-main-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.contact-info-panel,
.modern-contact-form-card,
.contact-map-panel {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 54px rgba(20, 35, 48, 0.08);
}

.contact-info-panel {
	position: sticky;
	top: 118px;
	padding: 34px;
}

.contact-info-panel h2 {
	margin: 0 0 14px;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1;
}

.contact-info-panel p {
	margin: 0 0 28px;
	color: var(--muted);
}

.contact-info-list {
	display: grid;
	gap: 12px;
}

.contact-info-list a,
.contact-info-list div {
	display: grid;
	gap: 6px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #f8fafb;
}

.contact-info-list span {
	color: var(--brand);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.contact-info-list strong {
	color: var(--ink);
	font-size: 15px;
	line-height: 1.45;
}

.modern-contact-form-card {
	padding: 38px;
}

.contact-form-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
	gap: 24px;
	align-items: end;
	margin-bottom: 28px;
}

.contact-form-heading h2 {
	margin: 0;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1;
}

.contact-form-heading > span {
	color: var(--muted);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.45;
}

.contact-alert {
	margin-bottom: 22px;
	padding: 14px 16px;
	border-radius: 8px;
	font-weight: 800;
}

.contact-alert.success {
	background: rgba(var(--brand-2-rgb), 0.13);
	color: var(--brand);
}

.contact-alert.error {
	background: rgba(215, 25, 32, 0.1);
	color: #a8141a;
}

.modern-contact-form {
	display: grid;
	gap: 16px;
}

.modern-contact-form label {
	display: grid;
	gap: 8px;
}

.modern-contact-form span {
	color: #334454;
	font-size: 13px;
	font-weight: 900;
}

.form-row.two {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.modern-contact-form input,
.modern-contact-form textarea {
	width: 100%;
	border: 1px solid #d7e0e6;
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.modern-contact-form input {
	min-height: 54px;
	padding: 0 16px;
}

.modern-contact-form textarea {
	resize: vertical;
	padding: 16px;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
	border-color: rgba(var(--brand-rgb), 0.56);
	box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.08);
}

.modern-contact-form button {
	width: fit-content;
	border: 0;
	cursor: pointer;
}

.contact-honeypot {
	position: absolute;
	left: -9999px;
}

.contact-map-section {
	padding-top: 0;
	background: #fff;
}

.contact-map-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	padding: 40px;
	background:
		linear-gradient(90deg, rgba(7, 16, 22, 0.94), rgba(7, 16, 22, 0.72)),
		url("http://localhost/brics/wp-content/uploads/2023/08/contact-bg.jpg") center/cover;
	color: #fff;
}

.contact-map-panel h2 {
	max-width: 780px;
	margin: 0 0 12px;
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1;
}

.contact-map-panel p {
	max-width: 720px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
}

.brand-products-hero {
	overflow: hidden;
	padding: 92px 0 82px;
	background:
		linear-gradient(110deg, rgba(7, 16, 22, 0.96), rgba(23, 27, 65, 0.82) 50%, rgba(var(--brand-rgb), 0.38)),
		url("http://localhost/brics/wp-content/uploads/2024/02/seoul-scaled.jpg") center/cover;
	color: #fff;
}

.brand-products-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
	gap: 62px;
	align-items: center;
}

.brand-products-hero h1 {
	max-width: 860px;
	margin: 12px 0 18px;
	font-size: clamp(44px, 6vw, 78px);
	line-height: 0.98;
}

.brand-products-hero p {
	max-width: 650px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 19px;
}

.brand-products-hero-wall {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	grid-template-rows: 190px 190px;
	gap: 14px;
}

.brand-products-hero-wall img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
	background: #fff;
	box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
}

.brand-products-hero-wall img:first-child {
	grid-row: span 2;
}

.brand-products-hero-wall img:last-child {
	object-fit: contain;
	padding: 22px;
}

.brand-partners-section {
	background: #fff;
}

.partner-brand-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	margin-top: 34px;
}

.partner-brand-card {
	display: grid;
	min-height: 250px;
	align-content: center;
	justify-items: center;
	padding: 24px 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	text-align: center;
	box-shadow: 0 16px 42px rgba(20, 35, 48, 0.07);
}

.partner-brand-card img {
	width: 118px;
	height: 118px;
	margin-bottom: 18px;
	border-radius: 8px;
	object-fit: contain;
	background: #f7fafb;
}

.partner-brand-card h3 {
	margin: 0 0 6px;
	font-size: 20px;
	line-height: 1.1;
}

.partner-brand-card p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.product-showcase-section {
	background: #fff;
}

.product-showcase-section.soft {
	background:
		linear-gradient(180deg, rgba(244, 247, 248, 0.92), rgba(255, 255, 255, 1)),
		#fff;
}

.product-showcase-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.52fr);
	gap: 40px;
	align-items: end;
	margin-bottom: 34px;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.product-grid.compact {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-card {
	display: grid;
	min-height: 260px;
	align-content: space-between;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(20, 35, 48, 0.06);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
	border-color: rgba(var(--brand-rgb), 0.24);
	transform: translateY(-4px);
	box-shadow: 0 24px 62px rgba(20, 35, 48, 0.12);
}

.product-card img {
	width: 100%;
	height: 180px;
	object-fit: contain;
}

.product-card h3 {
	margin: 16px 0 0;
	color: var(--ink);
	font-size: 15px;
	line-height: 1.25;
	text-align: center;
}

.page-cta-band {
	padding-top: 0;
}

.about-hero {
	overflow: hidden;
	padding: 96px 0 78px;
	background:
		linear-gradient(110deg, rgba(7, 16, 22, 0.96), rgba(7, 16, 22, 0.82) 46%, rgba(7, 16, 22, 0.38)),
		url("http://localhost/brics/wp-content/uploads/2024/02/seoul-scaled.jpg") center/cover;
	color: #fff;
}

.about-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
	gap: 62px;
	align-items: center;
}

.about-hero h1 {
	max-width: 820px;
	margin: 12px 0 18px;
	font-size: clamp(44px, 6vw, 78px);
	line-height: 0.98;
}

.about-hero p {
	max-width: 660px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 19px;
}

.about-hero-card {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
	backdrop-filter: blur(16px);
}

.about-hero-card img {
	width: 100%;
	height: 360px;
	object-fit: cover;
}

.about-hero-card div {
	padding: 22px;
}

.about-hero-card strong {
	display: block;
	font-size: 28px;
	line-height: 1;
}

.about-hero-card span {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.76);
}

.about-intro-grid,
.story-grid {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: 58px;
	align-items: start;
}

.about-copy {
	display: grid;
	gap: 18px;
	color: var(--muted);
	font-size: 18px;
}

.about-copy p {
	margin: 0;
}

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

.value-grid article {
	min-height: 260px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(20, 35, 48, 0.07);
}

.value-grid span {
	display: inline-grid;
	width: 46px;
	height: 46px;
	margin-bottom: 36px;
	place-items: center;
	border-radius: 6px;
	background: rgba(var(--brand-rgb), 0.1);
	color: var(--brand);
	font-weight: 900;
}

.value-grid h3 {
	margin: 0 0 10px;
	font-size: 24px;
}

.value-grid p {
	margin: 0;
	color: var(--muted);
}

.story-image img {
	width: 100%;
	height: 560px;
	border-radius: 8px;
	object-fit: cover;
	box-shadow: var(--shadow);
}

.check-list {
	display: grid;
	gap: 12px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding: 14px 16px 14px 46px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	font-weight: 800;
}

.check-list li::before {
	position: absolute;
	top: 14px;
	left: 16px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	content: "";
	font-size: 13px;
	font-weight: 900;
	line-height: 20px;
	text-align: center;
}

.check-list li::after {
	position: absolute;
	top: 20px;
	left: 22px;
	width: 8px;
	height: 5px;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	content: "";
	transform: rotate(-45deg);
}

.founder-message-section {
	background:
		linear-gradient(180deg, rgba(244, 247, 248, 0.95), rgba(255, 255, 255, 0.98)),
		#fff;
}

.founder-message-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.founder-profile-card {
	position: sticky;
	top: 118px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #101820;
	color: #fff;
	box-shadow: var(--shadow);
}

.founder-profile-card img {
	width: 100%;
	height: 430px;
	object-fit: cover;
}

.founder-profile-card div {
	padding: 26px;
}

.founder-profile-card span {
	display: block;
	margin-bottom: 18px;
	color: var(--gold);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.founder-profile-card strong {
	display: block;
	font-size: 28px;
	line-height: 1;
}

.founder-profile-card small {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	font-weight: 800;
}

.founder-letter-card {
	position: relative;
	padding: 42px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 54px rgba(20, 35, 48, 0.08);
}

.founder-letter-card::before {
	position: absolute;
	top: 30px;
	right: 34px;
	color: rgba(var(--brand-rgb), 0.1);
	content: '"';
	font-family: Georgia, serif;
	font-size: 120px;
	line-height: 0.8;
}

.founder-letter {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 18px;
	color: #354452;
	font-size: 18px;
	line-height: 1.82;
}

.founder-letter p {
	margin: 0;
}

.founder-signoff {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 18px;
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.founder-signoff span {
	color: var(--muted);
	font-weight: 800;
}

.founder-signoff strong {
	color: var(--brand);
	font-size: 18px;
	font-weight: 900;
}

.journey-statement-section {
	background: #fff;
}

.journey-statement {
	display: grid;
	justify-items: center;
	text-align: center;
}

.journey-statement .section-title {
	max-width: 940px;
}

.journey-statement p {
	max-width: 1040px;
	margin: 0 0 14px;
	color: var(--muted);
	font-size: 19px;
	line-height: 1.72;
}

.journey-proof-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	width: 100%;
	margin-top: 34px;
	text-align: left;
}

.journey-proof-grid div {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(20, 35, 48, 0.06);
}

.journey-proof-grid strong {
	display: block;
	margin-bottom: 8px;
	color: var(--brand);
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1;
}

.journey-proof-grid span {
	color: var(--muted);
	font-weight: 800;
}

.about-roadmap-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(244, 247, 248, 0.96), rgba(255, 255, 255, 0.98)),
		#fff;
}

.about-roadmap-section .section-copy {
	margin-bottom: 0;
}

.roadmap-list {
	position: relative;
	display: grid;
	gap: 26px;
	margin-top: 42px;
}

.roadmap-list::before {
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 50%;
	width: 2px;
	background: linear-gradient(180deg, var(--brand), rgba(var(--brand-rgb), 0.12));
	content: "";
	transform: translateX(-50%);
}

.roadmap-item {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
	align-items: start;
	gap: 18px;
}

.roadmap-item:nth-child(odd) .roadmap-card {
	grid-column: 1;
}

.roadmap-item:nth-child(odd) .roadmap-marker {
	grid-column: 2;
}

.roadmap-item:nth-child(even) .roadmap-marker {
	grid-column: 2;
}

.roadmap-item:nth-child(even) .roadmap-card {
	grid-column: 3;
}

.roadmap-marker {
	position: relative;
	z-index: 2;
	display: grid;
	justify-items: center;
	gap: 10px;
	padding-top: 10px;
	text-align: center;
}

.roadmap-marker span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 2px solid rgba(var(--brand-rgb), 0.18);
	border-radius: 50%;
	background: #fff;
	color: var(--brand);
	font-size: 12px;
	font-weight: 900;
	box-shadow: 0 12px 30px rgba(20, 35, 48, 0.12);
}

.roadmap-marker time {
	display: inline-flex;
	justify-content: center;
	min-width: 86px;
	padding: 8px 10px;
	border-radius: 999px;
	background: #101820;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.1;
}

.roadmap-card {
	position: relative;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(20, 35, 48, 0.08);
}

.roadmap-card::before {
	position: absolute;
	top: 32px;
	width: 18px;
	height: 18px;
	border-top: 1px solid var(--line);
	border-right: 1px solid var(--line);
	background: #fff;
	content: "";
}

.roadmap-item:nth-child(odd) .roadmap-card::before {
	right: -10px;
	transform: rotate(45deg);
}

.roadmap-item:nth-child(even) .roadmap-card::before {
	left: -10px;
	transform: rotate(225deg);
}

.roadmap-card h3 {
	margin: 0 0 16px;
	font-size: clamp(22px, 2.5vw, 30px);
	line-height: 1.12;
}

.roadmap-card ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.roadmap-card li {
	position: relative;
	padding-left: 22px;
	color: var(--muted);
}

.roadmap-card li::before {
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--brand);
	content: "";
	transform: translateY(-50%);
}

.about-timeline {
	display: grid;
	gap: 16px;
	margin-top: 34px;
}

.timeline-item {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 20px;
	align-items: stretch;
}

.timeline-item time {
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: #101820;
	color: #fff;
	font-size: 26px;
	font-weight: 900;
}

.timeline-item div {
	padding: 24px 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(20, 35, 48, 0.06);
}

.timeline-item h3 {
	margin: 0 0 8px;
	font-size: 23px;
}

.timeline-item p {
	margin: 0;
	color: var(--muted);
}

.about-brands {
	background: #fff;
}

@media (max-width: 1040px) {
	.premium-hero-grid,
	.modern-page-grid,
	.stage-grid,
	.intro-grid,
	.final-cta-inner,
	.about-hero-grid,
	.about-intro-grid,
	.story-grid,
	.contact-hero-grid,
	.contact-main-grid,
	.contact-form-heading,
	.contact-map-panel,
	.brand-products-hero-grid,
	.product-showcase-heading,
	.founder-message-grid,
	.service-overview-grid,
	.service-detail-grid,
	.local-seo-panel {
		grid-template-columns: 1fr;
	}

	.contact-info-panel {
		position: relative;
		top: auto;
	}

	.founder-profile-card {
		position: relative;
		top: auto;
		display: grid;
		grid-template-columns: 220px 1fr;
		align-items: stretch;
	}

	.founder-profile-card img {
		height: 100%;
		min-height: 250px;
	}

	.service-keywords {
		justify-content: flex-start;
	}

	.service-image-panel {
		position: relative;
		top: auto;
	}

	.service-image-panel img {
		height: 360px;
	}

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

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

	.product-wall,
	.dealing-grid,
	.partner-brand-grid,
	.product-grid,
	.product-grid.compact,
	.timeline-grid,
	.value-grid,
	.journey-proof-grid,
	.service-card-grid,
	.service-process,
	.form-row.two {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 700px) {
	.nav-wrap,
	.section-inner {
		width: min(100% - 28px, 1180px);
	}

	.band {
		padding: 58px 0;
	}

	.section-title,
	.contact-info-panel h2,
	.contact-form-heading h2,
	.contact-map-panel h2 {
		font-size: clamp(28px, 10vw, 42px);
		line-height: 1.05;
	}

	.section-copy,
	.contact-hero p,
	.brand-products-hero p,
	.about-hero p,
	.modern-page-hero p,
	.hero-copy p {
		font-size: 16px;
	}

	.nav-wrap {
		align-items: center;
	}

	.brand img {
		width: 150px;
	}

	.main-nav {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.main-nav a {
		min-height: 44px;
		justify-content: space-between;
		padding: 0 12px;
		font-size: 13px;
		text-align: left;
		white-space: normal;
	}

	.nav-dropdown {
		width: 100%;
	}

	.nav-dropdown-toggle {
		justify-content: space-between;
	}

	.nav-dropdown-menu {
		width: 100%;
	}

	.premium-hero-grid {
		min-height: auto;
		padding-top: 58px;
		gap: 26px;
	}

	.hero-copy h1,
	.modern-page-hero h1,
	.about-hero h1,
	.contact-hero h1,
	.brand-products-hero h1 {
		font-size: clamp(38px, 13vw, 56px);
		line-height: 1;
	}

	.hero-showcase {
		min-height: auto;
	}

	.showcase-main,
	.showcase-card {
		position: static;
		width: 100%;
		margin-top: 16px;
	}

	.showcase-main {
		height: 260px;
	}

	.trust-rail,
	.bento-grid,
	.product-wall,
	.dealing-grid,
	.partner-brand-grid,
	.product-grid,
	.product-grid.compact,
	.timeline-grid,
	.value-grid,
	.journey-proof-grid,
	.service-card-grid,
	.service-process,
	.form-row.two {
		grid-template-columns: 1fr;
	}

	.contact-hero {
		padding: 58px 0;
	}

	.contact-hero-panel img {
		height: 260px;
	}

	.brand-products-hero {
		padding: 58px 0;
	}

	.brand-products-hero-wall {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.brand-products-hero-wall img,
	.brand-products-hero-wall img:first-child {
		grid-row: auto;
		height: 240px;
	}

	.modern-contact-form-card,
	.contact-info-panel,
	.contact-map-panel,
	.local-seo-panel,
	.founder-letter-card {
		padding: 24px;
	}

	.founder-profile-card {
		grid-template-columns: 1fr;
	}

	.founder-profile-card img {
		height: 300px;
	}

	.founder-letter {
		font-size: 16px;
		line-height: 1.72;
	}

	.service-feature-card {
		min-height: auto;
	}

	.service-process div {
		min-height: 150px;
	}

	.service-process div::after {
		display: none;
	}

	.about-hero {
		padding: 58px 0;
	}

	.about-hero-card img,
	.story-image img {
		height: 280px;
	}

	.timeline-item {
		grid-template-columns: 1fr;
	}

	.roadmap-list::before {
		left: 21px;
	}

	.roadmap-item,
	.roadmap-item:nth-child(odd),
	.roadmap-item:nth-child(even) {
		grid-template-columns: 86px minmax(0, 1fr);
		gap: 14px;
	}

	.roadmap-item:nth-child(odd) .roadmap-marker,
	.roadmap-item:nth-child(even) .roadmap-marker {
		grid-column: 1;
	}

	.roadmap-item:nth-child(odd) .roadmap-card,
	.roadmap-item:nth-child(even) .roadmap-card {
		grid-column: 2;
	}

	.roadmap-marker {
		gap: 8px;
		padding-top: 2px;
	}

	.roadmap-marker span {
		width: 42px;
		height: 42px;
	}

	.roadmap-marker time {
		position: static;
		min-width: 78px;
		padding: 7px 8px;
		font-size: 11px;
		transform: none;
	}

	.roadmap-card {
		padding: 22px;
	}

	.roadmap-card::before {
		top: 18px;
		left: -9px !important;
		right: auto !important;
		transform: rotate(225deg) !important;
	}

	.timeline-item time {
		min-height: 74px;
	}

	.product-wall img,
	.product-wall img:nth-child(even) {
		height: 260px;
		margin-top: 0;
	}

	.product-card {
		min-height: auto;
	}

	.product-card img {
		height: 170px;
	}

	.bento-card.large {
		min-height: 320px;
	}

	.bento-card {
		min-height: 240px;
		padding: 22px;
	}

	.bento-card h3 {
		font-size: clamp(26px, 9vw, 38px);
	}

	.content-panel {
		padding: 20px;
	}
}

@media (max-width: 560px) {
	.nav-wrap,
	.section-inner {
		width: min(100% - 24px, 1180px);
	}

	.hero-actions,
	.contact-hero-actions,
	.split-actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.button,
	.nav-cta {
		width: 100%;
		min-height: 50px;
		padding: 0 16px;
		text-align: center;
	}

	.nav-wrap .brand,
	.nav-wrap .brand img {
		max-width: 100%;
	}

	.trust-rail span {
		padding: 14px 12px;
		font-size: 12px;
	}

	.showcase-card {
		grid-template-columns: 64px 1fr;
		padding: 14px;
	}

	.showcase-card img {
		width: 64px;
		height: 64px;
	}

	.page-visual img,
	.contact-hero-panel img,
	.about-hero-card img,
	.story-image img,
	.service-image-panel img {
		height: 240px;
	}

	.brand-products-hero-wall img,
	.brand-products-hero-wall img:first-child {
		height: 220px;
	}

	.contact-strip,
	.final-cta-inner,
	.contact-map-panel {
		padding: 24px;
	}

	.contact-strip .button,
	.final-cta-inner .button,
	.contact-map-panel .button {
		width: 100%;
	}

	.partner-brand-card,
	.dealing-card {
		min-height: 210px;
	}

	.partner-brand-card img,
	.dealing-card img {
		width: 96px;
		height: 96px;
	}

	.roadmap-list::before {
		left: 18px;
	}

	.roadmap-item,
	.roadmap-item:nth-child(odd),
	.roadmap-item:nth-child(even) {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 12px;
	}

	.roadmap-marker span {
		width: 38px;
		height: 38px;
	}

	.roadmap-marker time {
		min-width: 0;
		width: 38px;
		padding: 6px 4px;
		border-radius: 8px;
		font-size: 10px;
		writing-mode: vertical-rl;
	}

	.roadmap-card {
		padding: 18px;
	}

	.roadmap-card h3 {
		font-size: 22px;
	}
}

@media (max-width: 420px) {
	.nav-wrap,
	.section-inner {
		width: min(100% - 20px, 1180px);
	}

	.main-nav {
		grid-template-columns: 1fr;
		padding: 10px;
	}

	.main-nav a {
		min-height: 38px;
		padding: 0 12px;
		font-size: 12px;
	}

	.hero-copy h1,
	.modern-page-hero h1,
	.about-hero h1,
	.contact-hero h1,
	.brand-products-hero h1 {
		font-size: clamp(34px, 12vw, 46px);
	}

	.section-title,
	.contact-info-panel h2,
	.contact-form-heading h2,
	.contact-map-panel h2 {
		font-size: clamp(26px, 9vw, 36px);
	}

	.service-card,
	.value-grid article,
	.service-feature-card,
	.product-card,
	.partner-brand-card,
	.dealing-card,
	.timeline-grid div,
	.service-process div {
		padding: 20px;
	}

	.modern-contact-form-card,
	.contact-info-panel,
	.contact-map-panel,
	.local-seo-panel,
	.founder-letter-card,
	.contact-strip {
		padding: 20px;
	}

	.product-card img {
		height: 150px;
	}

	.product-wall img,
	.product-wall img:nth-child(even) {
		height: 230px;
	}
}
