/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
	--primary: #000000;
	--purple: #660066;
	--lightPurple: #c123c1;
	--grey: #3d3d3d;
	--greyLight: #878787;
	--lightGrey: #e5e5e5;
	--green: #234834;
	--lightGreen: #329951;
	--greenHover: #234834;
	--orange: #ee7700;
	--orangeHover: #ffbc5e;
	--blue: #3857a7;
	--lightBlue: #3dc2d0;
	--lightBlueHover: #44d3e3;
	--brand-green: #329951;
	--black: #000000;
	--cap: uppercase;
	--primary-yellow: #ffc600;
	--primary-blue: #09114a;
	--text-dark: #333333;
	--text-light: #212121;
	--bg-cream: #fcfbf9;
	--bg-light-grey: #f5f5f5;
	--white: #ffffff;
	--bg-card: #f7f5f0;
	--border-card: #e5e2db;
	--letterSpace: 6px;
	--fontSize11: 11px;
	--fontSize12: 12px;
	--fontSize13: 13px;
	--fontSize14: 14px;
	--fontSize15: 15px;
	--fontSize16: 16px;
	--fontSize17: 17px;
	--fontSize18: 18px;
	--fontSize19: 19px;
	--fontSize20: 20px;
	--fontSize21: 21px;
	--fontSize22: 22px;
	--fontSize23: 23px;
	--fontSize24: 24px;
	--fontSize25: 25px;
	--fontSize26: 26px;
	--fontSize27: 27px;
	--fontSize28: 28px;
	--fontSize29: 29px;
	--fontSize30: 30px;
	--fontSize31: 31px;
	--fontSize32: 32px;
	--fontSize33: 33px;
	--fontSize34: 34px;
	--fontSize35: 35px;
	--fontSize36: 36px;
	--fontSize37: 37px;
	--fontSize38: 38px;
	--fontSize39: 39px;
	--fontSize40: 40px;
	--fontSize41: 41px;
	--fontSize42: 42px;
	--fontSize43: 43px;
	--fontSize44: 44px;
	--fontSize45: 45px;
	--fontSize46: 46px;
	--fontSize47: 47px;
	--fontSize48: 48px;
	--fontSize49: 49px;
	--fontSize50: 50px;
	--fontSize51: 51px;
	--fontSize52: 52px;
	--fontSize53: 53px;
	--fontSize54: 54px;
	--fontSize55: 55px;
	--fontSize56: 56px;
	--fontSize57: 57px;
	--fontSize58: 58px;
	--fontSize59: 59px;
	--fontSize60: 60px;
	--fontSize61: 61px;
	--fontSize62: 62px;
	--fontSize63: 63px;
	--fontSize64: 64px;
	--fontSize65: 65px;
	--fontSize66: 66px;
	--fontSize67: 67px;
	--fontSize68: 68px;
	--fontSize69: 69px;
	--fontSize70: 70px;
	--fontSize71: 71px;
	--fontSize72: 72px;
	--fontSize73: 73px;
	--fontSize74: 74px;
	--fontSize75: 75px;
	--fontSize76: 76px;
	--fontSize77: 77px;
	--fontSize78: 78px;
	--fontSize80: 80px;
	--fontSize81: 81px;
	--fontSize82: 82px;
	--fontSize83: 83px;
	--fontSize84: 84px;
	--fontSize85: 85px;
	--fontSize86: 86px;
	--fontSize87: 87px;
	--fontSize88: 88px;
	--fontSize89: 89px;
	--fontSize90: 90px;
	--fontSize120: 120px;
	--font100: 100;
	--font200: 200;
	--font300: 300;
	--font400: 400;
	--font500: 500;
	--font600: 600;
	--font700: 700;
	--font800: 800;
	--font900: 900;

	/* Theme Aliases */
	--navy: #071b4d;
	--orange: #f7aa00;
	--orange-hover: #ffb719;
	--cream: #f8f7f3;
	--cream-dark: #f0eee8;
	--white: #ffffff;
	--muted: #5d6470;
	--muted-light: #8a919e;
	--border: #e6e3dc;
	--shadow-orange: 0 12px 35px rgba(247, 170, 0, 0.35);
	--ease: cubic-bezier(0.22, 0.8, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Open Sans', sans-serif;
	color: #071b4d;
	background: #f8f7f3;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	background: #f7f4ef;
}

body.menu-open {
	overflow: hidden;
}

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

button {
	font-family: inherit;
}

.container {
	max-width: 1320px;
	margin: auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: background .35s, box-shadow .35s;
}

.site-header.scrolled {
	position: fixed;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(16px);
	box-shadow: 0 8px 35px rgba(0, 0, 0, .07);
}

.header-inner {
	height: 105px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: height 0.35s var(--ease);
}

.site-header.scrolled .header-inner {
	height: 78px;
}

.logo {
	width: 86px;
	display: block;
	flex-shrink: 0;
	transition: width 0.3s var(--ease);
}

.site-header.scrolled .logo {
	width: 76px;
}

.logo img {
	width: 100%;
	display: block;
}

/* ============================================================
   DESKTOP NAVIGATION
   ============================================================ */
.desktop-nav {
	display: flex;
	align-items: center;
	gap: 34px;
	margin-left: auto;
	margin-right: 30px;
}

.desktop-nav .nav-item {
	height: 105px;
	display: flex;
	align-items: center;
}

.site-header.scrolled .desktop-nav .nav-item {
	height: 78px;
}

.desktop-nav .nav-link {
	height: 100%;
	display: flex;
	align-items: center;
	color: var(--navy);
	font-size: var(--fontSize17);
	font-weight: 600;
	white-space: nowrap;
	transition: color .25s;
	position: relative;
}

.desktop-nav .nav-link::after,
.desktop-nav .nav-link a.active::after {
	content: '';
	position: absolute;
	bottom: 28px;
	left: 0;
	width: 0;
	height: 2.5px;
	background: var(--orange);
	border-radius: 2px;
	transition: width .35s var(--ease);
}

.site-header.scrolled .desktop-nav .nav-link::after,
.site-header.scrolled .desktop-nav .nav-link .active::after {
	bottom: 20px;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-item a.active {
	color: #df9200;
}

.desktop-nav .nav-item a {
	font-weight: var(--font600);
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link .active:hover::after {
	width: 100%;
}

/* ============================================================
   HEADER CTA (Single Button - Works on Both Desktop & Mobile)
   ============================================================ */
.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 22px;
	background: var(--orange);
	color: var(--navy);
	font-size: 13px;
	font-weight: 700;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	transition: all .35s var(--ease);
	white-space: nowrap;
	flex-shrink: 0;
	margin-left: 10px;
}

.header-cta:hover {
	background: var(--orange-hover);
	transform: translateY(-2px);
	box-shadow: var(--shadow-orange);
}

/* ============================================================
   PAGE SECTION
   ============================================================ */
.page-section {
	padding: 60px 0 90px;
}

/* ============================================================
   HERO IMAGE / CAPABILITIES GRID
   ============================================================ */
.hero-image-wrapper {
	width: 100%;
	height: 440px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 45px rgba(7, 27, 77, 0.1);
	margin-top: 40px;
}

.hero-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.capabilities-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border: 1px solid var(--border);
	background: var(--white);
}

.capability-card {
	min-height: 240px;
	padding: 45px 50px;
	display: flex;
	flex-direction: column;
	background: var(--white);
	position: relative;
	transition: transform .3s var(--ease), background .2s;
	border-right: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.capability-card:nth-child(even) {
	border-right: 0;
}

.capability-card:nth-child(3),
.capability-card:nth-child(4) {
	border-bottom: 0;
}

.capability-card::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	height: 4px;
	background: transparent;
	transition: background .4s var(--ease);
}

.capability-card:hover::before {
	background: var(--orange);
}

.capability-card:hover {
	transform: translateY(-3px);
	background: #fcfcf9;
	z-index: 2;
}

.capability-card h2 {
	font-size: var(--fontSize24);
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 16px;
}

.capability-card p {
	color: #4a5160;
	font-size: var(--fontSize16);
	line-height: 1.65;
	margin-bottom: 24px;
	flex-grow: 1;
	font-weight: var(--font500);
}

.card-link {
	color: var(--orange);
	font-size: 16px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* ============================================================
   MOBILE HAMBURGER BUTTON
   ============================================================ */
.mobile-menu-button {
	display: none;
	position: relative;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	cursor: pointer;
	z-index: 1100;
	padding: 0;
	border-radius: 50%;
	transition: background .3s var(--ease);
}

.mobile-menu-button:hover {
	background: rgba(7, 27, 77, 0.05);
}

.mobile-menu-button .hamburger-box {
	position: relative;
	width: 30px;
	height: 24px;
	margin: 0 auto;
}

.mobile-menu-button .hamburger-line-top {
	position: absolute;
	top: 2px;
	left: 0;
	width: 30px;
	height: 2.5px;
	background: var(--navy);
	border-radius: 2px;
	transition: all .4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-button .hamburger-line-bottom {
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 30px;
	height: 2.5px;
	background: var(--navy);
	border-radius: 2px;
	transition: all .4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-button.active .hamburger-line-top {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	background: var(--orange);
	width: 32px;
}

.mobile-menu-button.active .hamburger-line-bottom {
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
	background: var(--orange);
	width: 32px;
}

/* ============================================================
   MOBILE OVERLAY & NAVIGATION
   ============================================================ */
.header-inner > .desktop-nav {
	transition: opacity .3s, visibility .3s, transform .4s var(--ease);
}

@media (max-width: 900px) {
	.header-inner > .desktop-nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: var(--cream);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 100px 40px 40px 40px;
		margin: 0;
		gap: 0;
		z-index: 998;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-15px);
	}

	body.menu-open .header-inner > .desktop-nav {
		pointer-events: auto;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.header-inner > .desktop-nav .nav-item {
		height: auto;
		width: 100%;
		border-bottom: 1px solid rgba(7, 27, 77, .06);
	}

	.header-inner > .desktop-nav .nav-link {
		width: 100%;
		min-height: 62px;
		font-size: 18px;
		font-weight: 600;
		padding: 0 4px;
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: center;
	}

	.header-inner > .desktop-nav .nav-link::after {
		display: none;
	}

	.header-inner > .desktop-nav .nav-link::before {
		content: '\f054';
		font-family: 'Font Awesome 6 Free';
		font-weight: 900;
		font-size: 13px;
		color: var(--muted);
		transition: transform .3s var(--ease), color .3s var(--ease);
	}

	.header-inner > .desktop-nav .nav-link:hover {
		padding-left: 0;
		color: #df9200;
	}

	.header-inner > .desktop-nav .nav-link:hover::before {
		transform: translateX(4px) scale(1.1);
		color: #df9200;
	}

	/* ============================================================
       SINGLE CTA - Restyled for Mobile Menu
       The same <a class="header-cta"> in your HTML is reused here.
       ============================================================ */
	.header-inner > .desktop-nav .header-cta {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		width: calc(100% - 80px);
		height: 56px;
		margin: 36px 40px 0 40px;
		background: var(--orange);
		color: var(--navy);
		font-weight: 700;
		font-size: 15px;
		border-radius: 12px;
		cursor: pointer;
		transition: all .35s var(--ease);
		pointer-events: auto;
		text-decoration: none;
		/* position: relative;
		top: auto;
		bottom: 40px;
		left: 0;
		right: 0; */
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transform: translateY(15px);
	}

	body.menu-open .header-inner > .desktop-nav .header-cta {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.header-inner > .desktop-nav .header-cta:hover {
		background: var(--orange-hover);
		transform: translateY(-2px);
		box-shadow: var(--shadow-orange);
	}
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
	position: relative;
	height: 100vh;
	padding-bottom: 90px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--cream);
}

.hero.who-banner {
	height: 80vh;
}

.hero-background {
	position: absolute;
	background-image: url(../images/img-home-banner.jpg);
	inset: 0px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-background.who-we-are {
	background-image: url(../images/img-sub-banner-what-we-do.jpg);
	background-position: center;
}

.hero-background.how-we-work {
	background-image: url(../images/img-sub-banner-how-we-work.jpg);
	background-position: center;
}

._divider {
	border-top: 1px solid #e9e9e9;
}

._mt-50 {
	margin-top: 50px;
}

._mt-80 {
	margin-top: 80px;
}

._mt-100 {
	margin-top: 100px;
}

._pb-80 {
	padding-bottom: 80px;
}

.hero-big-number {
	position: absolute;
	right: -40px;
	top: 45%;
	transform: translateY(-50%);
	font-size: 550px;
	font-weight: 800;
	color: rgba(7, 27, 77, 0.035);
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -20px;
	line-height: 1;
	user-select: none;
	pointer-events: none;
	z-index: 1;
}

.hero .container {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.who-banner .hero-content {
	padding-top: 0;
}

.hero-content {
	width: 600px;
	padding-top: 100px;
	flex-shrink: 0;
}

.hero-content h1 {
	color: var(--navy);
	font-size: 58px;
	line-height: 1.08;
	letter-spacing: -2px;
	font-weight: 800;
}

.hero-content h1 .highlight {
	display: block;
	color: var(--orange);
}

.hero-content h1 .highlight-inline {
	color: var(--orange);
}

.hero-content p.multi {
	color: #212121;
	font-size: var(--fontSize24);
	font-weight: var(--font700);
	line-height: 28px;
}

.hero-content p {
	margin-top: 22px;
	color: #2d3440;
	font-size: 15px;
	line-height: 1.7;
	font-weight: 600;
}

.primary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 28px;
	height: 48px;
	padding: 0 28px;
	background: var(--orange);
	color: var(--navy);
	font-size: 14px;
	font-weight: 700;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all .35s var(--ease);
}

.primary-button:hover {
	background: var(--orange-hover);
	transform: translateY(-3px);
	box-shadow: var(--shadow-orange);
}

/* ============================================================
   QUICK LINKS SECTION
   ============================================================ */
.quick-links {
	padding: 60px 0 90px;
	background: var(--cream);
}

.quick-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--border);
	overflow: hidden;
	background: #ffffff;
}

.quick-card {
	min-height: 380px;
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	position: relative;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .2s;
	border-right: 1px solid var(--border);
}

.quick-card:last-child {
	border-right: 0;
}

.quick-card::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	height: 4px;
	background: transparent;
	border-radius: 12px 12px 0 0;
	transition: background .4s var(--ease);
	z-index: 2;
}

.quick-card:hover::before {
	background: var(--orange);
}

.quick-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(7, 27, 77, .08);
	z-index: 2;
	background: #fcfcf9;
}

.quick-card h2 {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 12px;
}

.quick-card p.card-subtitle {
	font-size: 16px;
	font-weight: 700;
	color: var(--navy);
	line-height: 1.4;
	margin-bottom: 14px;
}

.quick-card p.card-body {
	color: #4a5160;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 20px;
	flex-grow: 1;
	padding: 0;
}

.quick-card a.card-link {
	margin-top: auto;
	color: #df9200;
	font-size: 13.5px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: transform .3s var(--ease), color .3s var(--ease);
}

.quick-card a.card-link:hover {
	color: var(--orange-hover);
}

/* ============================================================
   APPROACH SECTION
   ============================================================ */
.approach-section {
	padding: 60px 0 80px 0;
	position: relative;
	z-index: 2;
	max-width: 1250px;
	margin: 0 auto;
}

.section-heading {
	font-size: var(--fontSize24);
	color: var(--primary-blue);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 30px;
	font-weight: 700;
}

.approach-list {
	display: flex;
	flex-direction: column;
}

.approach-item {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	padding-bottom: 35px;
	position: relative;
}

.approach-item::before {
	content: '';
	position: absolute;
	left: 6px;
	top: 14px;
	bottom: 0;
	width: 1px;
	background-color: #e9e9e9;
	z-index: 0;
}

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

.approach-item:last-child::before {
	display: none;
}

.circle-marker {
	width: 14px;
	height: 14px;
	border: 3px solid var(--primary-yellow);
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 6px;
	background-color: var(--bg-cream);
	position: relative;
	z-index: 1;
}

.approach-content {
	display: flex;
	flex-direction: column;
	max-width: 650px;
}

.approach-content h4 {
	color: var(--primary-yellow);
	font-size: var(--fontSize24);
	letter-spacing: 1px;
	margin-bottom: 8px;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1.2;
}

.approach-sub {
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 5px;
	line-height: 1.4;
	font-size: 0.95rem;
}

.approach-content p {
	color: var(--primary-blue);
	font-size: var(--fontSize16);
	line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
	background-color: var(--primary-blue);
	color: var(--white);
	padding: 30px 0;
	font-size: 0.75rem;
	position: relative;
	z-index: 2;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer-logo {
	display: flex;
	flex-direction: column;
	color: var(--white);
}

.footer-logo-main {
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1;
	display: flex;
	align-items: baseline;
}

.footer-logo-main .logo-8 {
	font-size: 1.7rem;
	letter-spacing: -1px;
	color: var(--primary-yellow);
}

.footer-logo-sub {
	font-size: 0.45rem;
	letter-spacing: 2px;
	color: #aaa;
	margin-top: 2px;
	text-transform: uppercase;
	margin-left: 2px;
}

.footer-tagline {
	color: #ccc;
	font-size: 16px;
	padding-left: 20px;
	border-left: 1px solid rgba(255, 255, 255, 1);
	margin: 0;
}

.footer-icons {
	display: flex;
	gap: 12px;
}

.footer-icons a {
	width: 32px;
	height: 32px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: var(--white);
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.footer-icons a:hover {
	background-color: var(--primary-yellow);
	color: var(--primary-blue);
	transform: translateY(-3px) scale(1.1);
}

.footer-right {
	text-align: right;
	color: #c3d1e0;
	font-size: 14px;
}

.footer-right a {
	color: #c3d1e0;
	margin-left: 5px;
	transition: color 0.3s ease;
	font-size: 14px;
	text-decoration: none;
}

.footer-right a:hover {
	color: var(--primary-yellow);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.85rem;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.btn-yellow {
	background-color: #fbad0b;
	color: var(--primary-blue);
}

.btn-yellow:hover {
	background-color: #d99a15;
	transform: translateY(-2px);
}

/* ============================================================
   MAIN BANNER AREA
   ============================================================ */
.main-banner-area {
	padding: 145px 0 60px;
	position: relative;
}

.banner-content-wrapper {
	position: relative;
	z-index: 2;
	max-width: 1250px;
}

.banner-content-wrapper .inner {
	max-width: 50%;
}

.banner-content-wrapper .first {
	color: #212121;
	font-size: var(--fontSize16);
	font-weight: var(--font500);
}

.main-banner-area h1 {
	font-size: 4rem;
	color: var(--primary-blue);
	margin-bottom: 15px;
	letter-spacing: -1px;
	line-height: 1.1;
	font-weight: var(--font700);
}

.text-yellow {
	color: var(--primary-yellow);
}

.main-banner-area h2 {
	font-size: var(--fontSize24);
	font-weight: 700;
	margin-bottom: 30px;
	line-height: 1.4;
	color: #212121;
}

.banner-description p {
	font-size: var(--fontSize16);
	color: var(--text-light);
	margin-bottom: 15px;
	font-weight: 600;
}

.banner-bg-watermark {
	position: absolute;
	top: -50px;
	right: 0;
	font-size: 550px;
	font-weight: 800;
	color: rgba(19, 27, 59, 0.025);
	line-height: 1;
	z-index: 1;
	pointer-events: none;
	user-select: none;
}

/* ============================================================
   APPROACH GRID (Horizontal 4-Step)
   ============================================================ */
.approach-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	position: relative;
}

.approach-step {
	display: flex;
	flex-direction: column;
	position: relative;
}

.step-number-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
	position: relative;
}

.step-num {
	color: var(--primary-yellow);
	font-size: var(--fontSize36);
	font-weight: 700;
}

.step-arrow {
	flex-grow: 1;
	height: 1px;
	background-color: #09114a;
	margin-left: 15px;
	position: relative;
}

.step-arrow::after {
	content: '';
	position: absolute;
	right: 0;
	top: -3px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #09114a;
	border-right: 1px solid #09114a;
	transform: rotate(45deg);
}

.approach-step:last-child .step-arrow {
	display: none;
}

.approach-step h3 {
	color: var(--primary-blue);
	font-size: var(--fontSize24);
	font-weight: 700;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.approach-step h4 {
	font-size: var(--fontSize18);
	color: #09114a;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.4;
}

.approach-step p {
	font-size: var(--fontSize16);
	color: var(--primary-blue);
	line-height: 1.6;
	font-weight: 600;
}

/* ============================================================
   INFINITY GRAPHIC SECTION
   ============================================================ */
.infinity-section {
	padding: 50px 0 90px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.infinity-wrapper {
	max-width: 750px;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.infinity-header-row {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 0 40px;
	margin-bottom: -15px;
	position: relative;
	z-index: 2;
}

.label-expertise {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--primary-blue);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.label-relationships {
	font-size: 0.85rem;
	font-weight: 700;
	color: #d99a15;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.infinity-graphic-container {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 10px 0;
}

.infinity-svg {
	width: 100%;
	max-width: 650px;
	height: auto;
}

.infinity-footer-text {
	font-size: 0.75rem;
	font-weight: 700;
	color: #d99a15;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-top: 5px;
}

/* ============================================================
   CLIENT NEWS SECTION
   ============================================================ */
.client-news-section {
	padding: 30px 0 40px;
	position: relative;
	z-index: 2;
}

.section-header {
	margin-bottom: 25px;
}

.section-subtext {
	font-size: var(--fontSize16);
	color: var(--primary-blue);
	line-height: 1.5;
	font-weight: 700;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 35px;
}

.news-card {
	background-color: var(--white);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
	display: flex;
	flex-direction: column;
	border: 1px solid #eee;
}

.news-img img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.news-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.news-date {
	font-size: var(--fontSize14);
	color: var(--primary-blue);
	margin-bottom: 8px;
	font-weight: 600;
}

.news-body h3 {
	color: var(--primary-blue);
	font-size: var(--fontSize18);
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1.35;
}

.news-body p {
	font-size: 16px;
	color: var(--primary-blue);
	line-height: 1.6;
	margin-bottom: 20px;
	flex-grow: 1;
}

.read-more {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--primary-yellow);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.read-more:hover {
	color: #d99a15;
}

.center-btn-wrapper {
	text-align: center;
}

/* ============================================================
   EXPERIENCE BREAKDOWN SECTION
   ============================================================ */
.experience-breakdown-section {
	padding: 0 0 60px 0;
	position: relative;
	z-index: 2;
}

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

.breakdown-card {
	background-color: var(--bg-card);
	border: 1px solid var(--border-card);
	border-radius: 4px;
	padding: 40px 35px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.breakdown-card h3 {
	font-size: var(--fontSize24);
	color: var(--primary-blue);
	margin-bottom: 25px;
	font-weight: 700;
}

.breakdown-card ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.breakdown-card li {
	font-size: var(--fontSize16);
	color: var(--primary-blue);
	position: relative;
	padding-left: 14px;
	font-weight: 500;
}

.breakdown-card li::before {
	content: '·';
	position: absolute;
	left: 0;
	color: var(--primary-blue);
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 1;
	top: -2px;
}

.experience-highlight-box {
	margin-top: 35px;
}

.highlight-title {
	font-size: 24px;
	color: var(--primary-blue);
	font-weight: 700;
	margin-bottom: 4px;
	letter-spacing: 0.5px;
}

.highlight-desc {
	font-size: 16px;
	color: var(--primary-blue);
	line-height: 1.5;
	font-weight: 500;
}

.cta-section {
	padding: 40px 0 100px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.cta-section h3 {
	color: var(--primary-blue);
	font-size: 1.5rem;
	margin-bottom: 30px;
	font-weight: 700;
}

/* ============================================================
   INSIGHTS LIST SECTION
   ============================================================ */
.insights-list-section {
	padding: 0 0 60px 0;
	position: relative;
	z-index: 2;
}

.insights-list-section .container {
	max-width: 1250px;
}

.insights-tabs {
	display: flex;
	gap: 30px;
	border-bottom: 1px solid var(--border-card);
	padding-bottom: 0;
	margin-bottom: 40px;
}

.tab-item {
	font-size: var(--fontSize24);
	font-weight: 700;
	color: var(--text-light);
	text-transform: uppercase;
	padding-bottom: 12px;
	position: relative;
	cursor: pointer;
	transition: color 0.3s ease;
}

.tab-item:hover {
	color: var(--primary-blue);
}

.tab-item.active {
	color: var(--primary-blue);
}

.tab-item.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--primary-blue);
	animation: tabIndicator 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes tabIndicator {
	from {
		width: 0;
		opacity: 0;
	}
	to {
		width: 100%;
		opacity: 1;
	}
}

.tab-pane {
	display: none;
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-pane.active {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.insights-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 50px;
}

.insight-row-card {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 35px;
	align-items: center;
	background-color: var(--white);
	border: 1px solid var(--border-card);
	border-radius: 0;
	padding: 0;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.insight-row-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(19, 27, 59, 0.06);
	border-color: #d1cbc0;
}

.insight-img {
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.insight-img img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-row-card:hover .insight-img img {
	transform: scale(1.06);
}

.insight-content {
	display: flex;
	flex-direction: column;
	padding: 0 15px 0 0;
}

.insight-date {
	font-size: var(--fontSize14);
	color: var(--primary-blue);
	margin-bottom: 6px;
	font-weight: 600;
}

.insight-content h3 {
	color: var(--primary-blue);
	font-size: var(--fontSize18);
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1.4;
	transition: color 0.3s ease;
}

/* .insight-row-card:hover .insight-content h3 {
	color: #d99a15;
} */

.insight-content p {
	font-size: var(--fontSize16);
	color: var(--primary-blue);
	line-height: 1.6;
	margin-bottom: 15px;
}

/* ============================================================
   PROMO CARDS SECTION
   ============================================================ */
.promo-cards-section {
	padding: 0 0 70px;
	position: relative;
	z-index: 2;
}

.promo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.promo-card {
	background-color: var(--bg-card);
	border: 1px solid var(--border-card);
	border-radius: 6px;
	padding: 30px 35px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

.promo-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background-color: var(--primary-blue);
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.promo-card.telegram::before {
	background-color: #229ed9;
}

.promo-card:hover::before {
	transform: scaleY(1);
}

.promo-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
	background-color: var(--white);
}

.promo-icon-box {
	width: 45px;
	height: 45px;
	background-color: var(--primary-blue);
	color: var(--white);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-card:hover .promo-icon-box {
	transform: scale(1.15) rotate(8deg);
}

.promo-card.telegram .promo-icon-box {
	background-color: #229ed9;
}

.promo-text h4 {
	font-size: var(--fontSize24);
	color: var(--primary-blue);
	font-weight: 700;
	margin-bottom: 6px;
}

.promo-text p {
	font-size: var(--fontSize16);
	color: var(--text-light);
	line-height: 1.5;
	margin-bottom: 12px;
}

/* ============================================================
   PARTNERS GRID SECTION
   ============================================================ */
.partners-grid-section {
	padding: 0 0 90px;
	position: relative;
	z-index: 2;
}

.partners-grid-section .container {
	max-width: 1250px;
}

.partners-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.partner-card {
	background-color: #f7f4ef;
	border: 1px solid var(--border-card);
	padding: 35px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(19, 27, 59, 0.06);
	border-color: #d1cbc0;
}

.partner-card h3 {
	font-size: var(--fontSize24);
	color: var(--primary-yellow);
	margin-bottom: 4px;
	font-weight: 700;
}

.partner-role {
	font-size: var(--fontSize18);
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 20px;
	display: block;
}

.partner-card p {
	font-size: var(--fontSize16);
	color: #09114a;
	line-height: 1.7;
	margin-bottom: 16px;
}

.partner-card p:last-child {
	margin-bottom: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 480px;
	gap: 50px;
	align-items: start;
	padding-top: 30px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 14px 16px;
	background-color: var(--white);
	border: 1px solid var(--border-card);
	border-radius: 4px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--text-dark);
	outline: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 3px rgba(19, 27, 59, 0.08);
}

.form-group textarea {
	resize: vertical;
	min-height: 130px;
}

.get-in-touch-card {
	background-color: var(--primary-blue);
	color: var(--white);
	padding: 36px 30px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(19, 27, 59, 0.15);
}

.get-in-touch-card h3 {
	font-size: var(--fontSize24);
	letter-spacing: 2px;
	color: var(--primary-yellow);
	margin-bottom: 25px;
	text-transform: uppercase;
	font-weight: 700;
}

.contact-person {
	margin-bottom: 25px;
}

.contact-person:last-child {
	margin-bottom: 0;
}

.contact-person h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--white);
}

.contact-person a {
	font-size: 18px;
	color: #dcd6cd;
	transition: color 0.3s ease;
	display: inline-block;
}

.contact-person a:hover {
	color: var(--primary-yellow);
	text-decoration: underline;
}

.card-watermark-8 {
	position: absolute;
	right: 0;
	top: 0;
}

.body-contact {
	background: url('../images/img-sub-banner-contact.jpg') no-repeat center bottom;
	width: 100%;
	height: auto;
	background-size: cover;
}

.successfully {
	font-size: var(--fontSize60);
	color: green;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */

@media (max-width: 1100px) {
	.hero .container {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-content {
		width: 100%;
		max-width: 600px;
	}

	.hero-visual {
		width: 100%;
		height: 380px;
	}

	.quick-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.quick-card {
		border-bottom: 1px solid var(--border);
	}
}

@media (max-width: 1024px) {
	.approach-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 35px;
	}

	.step-arrow {
		display: none !important;
	}

	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.breakdown-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 900px) {
	.container {
		width: calc(100% - 40px);
	}

	.header-inner {
		height: 82px;
	}

	/* Hide the desktop CTA button position (it's now inside nav) */
	.header-cta {
		display: none;
	}

	.mobile-menu-button {
		display: block;
	}

	.hero-content h1 {
		font-size: 42px;
	}

	.hero-big-number {
		font-size: 280px;
		right: -20px;
	}

	.footer-inner {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.footer-left {
		flex-direction: column;
		gap: 8px;
	}

	.footer-tagline {
		border-left: none;
		padding-left: 0;
	}

	.footer-right {
		text-align: center;
	}

	.approach-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.approach-step {
		background-color: var(--white);
		padding: 20px;
		border-radius: 6px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
		border-left: 3px solid var(--primary-yellow);
	}

	.step-number-row {
		margin-bottom: 10px;
	}

	.infinity-header-row {
		flex-direction: column;
		gap: 10px;
		padding: 0;
		align-items: center;
	}

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

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

	.insights-tabs {
		gap: 15px;
		overflow-x: auto;
		white-space: nowrap;
	}

	.insight-row-card {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 16px;
	}

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

	.partners-section {
		padding: 40px 0 20px;
	}

	.partners-grid-section {
		padding: 0 0 50px;
	}

	.partners-header h1 {
		font-size: 2.6rem;
	}

	.partners-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.partner-card {
		padding: 25px;
	}

	.contact-section {
		padding: 40px 0 60px;
	}

	.contact-header h1 {
		font-size: 2.6rem;
	}
}

@media (max-width: 600px) {
	.container {
		width: calc(100% - 30px);
	}

	.hero-content h1 {
		font-size: 34px;
	}

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

	.quick-card {
		border-right: none;
	}
	.tab-item {
		font-size: var(--fontSize14);
	}
}

@media (max-width: 520px) {
	.hero-content p {
		color: #000;
	}
}
