/**
 * Global 3D Interactive Header & Navigation Styles for РћРћРћ В«Р“РёРґСЂРѕРЅР°В»
 * Theme: РЎР°РјРѕРґРІРёР¶РµС†
 */

/* ==========================================================================
   Global Layout & Unified Container System (Header = Page Body = Footer)
   ========================================================================== */
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
}

#page,
body #page,
body.full-width-content #page,
.grid-container#page,
.site#page {
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.site-content,
#content.site-content,
#page .site-content {
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	display: block;
}

#primary,
.content-area,
.site-main {
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.inside-article {
	padding: 0 !important;
}

/* Master container class - unified across Header, Page Sections, and Footer */
.g-container,
.gidrona-topbar-inner,
.gidrona-header-inner,
.gidrona-footer-container,
.gidrona-footer-bottom-inner {
	max-width: 1240px !important;
	width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 24px !important;
	padding-right: 24px !important;
	box-sizing: border-box !important;
}

/* ==========================================================================
   Top Contact Bar
   ========================================================================== */
.gidrona-topbar {
	background: #090d16;
	color: #94a3b8;
	font-size: 0.85rem;
	padding: 9px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	z-index: 1001;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	width: 100%;
}

.gidrona-topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.gidrona-topbar-left,
.gidrona-topbar-right {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}

.topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #cbd5e1;
	text-decoration: none;
	font-size: 0.85rem;
	transition: color 0.2s ease;
}

.topbar-link:hover,
.topbar-phone:hover {
	color: #ff7a00;
}

.topbar-phone {
	color: #ff7a00;
	font-weight: 700;
	letter-spacing: 0.3px;
}

/* ==========================================================================
   Main Header Container
   ========================================================================== */
.gidrona-main-header {
	background: #0e131f;
	color: #ffffff;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	z-index: 1000;
	transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.gidrona-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

/* Logo */
.gidrona-header-brand {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.gidrona-logo-wrap {
	display: block;
	text-decoration: none;
	line-height: 0;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.gidrona-logo-wrap:hover {
	transform: scale(1.02);
	opacity: 0.95;
}

.gidrona-logo-img {
	height: 48px;
	width: auto;
	max-width: 230px;
	display: block;
	object-fit: contain;
}

/* ==========================================================================
   Desktop Navigation & 3D Dropdown Submenus
   ========================================================================== */
.gidrona-desktop-nav {
	display: flex;
	align-items: center;
}

.gidrona-nav-list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 4px;
}

.gidrona-nav-list > li {
	position: relative;
	margin: 0;
	padding: 0;
}

.gidrona-nav-list > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	color: #e2e8f0;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.25s ease;
	position: relative;
	white-space: nowrap;
}

.gidrona-nav-list > li > a:hover,
.gidrona-nav-list > li.current-menu-item > a,
.gidrona-nav-list > li:hover > a {
	color: #ff7a00;
	background: rgba(255, 122, 0, 0.08);
}

/* Submenu Indicator Chevron */
.gidrona-nav-list > li.menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.25s ease;
	margin-left: 2px;
}

.gidrona-nav-list > li.menu-item-has-children:hover > a::after {
	transform: rotate(225deg) translateY(-2px);
}

/* 3D Dropdown Submenu Container */
.gidrona-nav-list ul.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 280px;
	background: rgba(18, 24, 39, 0.97);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-top: 2px solid #ff7a00;
	border-radius: 0 0 12px 12px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 122, 0, 0.15);
	list-style: none;
	margin: 0;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: perspective(800px) rotateX(-12deg) translateY(10px);
	transform-origin: top center;
	transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
	            visibility 0.25s;
	z-index: 1000;
}

.gidrona-nav-list > li:hover > ul.sub-menu,
.gidrona-nav-list > li:focus-within > ul.sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: perspective(800px) rotateX(0deg) translateY(0);
}

/* Dropdown items */
.gidrona-nav-list ul.sub-menu li {
	margin: 0;
	padding: 0;
	position: relative;
}

.gidrona-nav-list ul.sub-menu li a {
	display: block;
	padding: 11px 22px;
	color: #cbd5e1;
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
	position: relative;
	border-left: 3px solid transparent;
}

.gidrona-nav-list ul.sub-menu li a:hover,
.gidrona-nav-list ul.sub-menu li.current-menu-item a {
	color: #ffffff;
	background: rgba(255, 122, 0, 0.12);
	border-left-color: #ff7a00;
	padding-left: 26px;
}

/* ==========================================================================
   Header Actions (Compact Phone Icon Button & Hamburger)
   ========================================================================== */
.gidrona-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

/* Sleek Circular Phone Call Button */
.gidrona-header-phone-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff9500, #ff5500);
	color: #ffffff !important;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	flex-shrink: 0;
	position: relative;
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.gidrona-header-phone-btn:hover {
	transform: scale(1.08) translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 122, 0, 0.65);
	background: linear-gradient(135deg, #ffa726, #ff6d00);
}

.phone-icon-symbol {
	font-size: 1.25rem;
	line-height: 1;
	display: inline-block;
	transition: transform 0.2s ease;
}

.gidrona-header-phone-btn:hover .phone-icon-symbol {
	transform: rotate(-15deg);
}

/* Hamburger Button */
.gidrona-hamburger-btn {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 40px;
	height: 40px;
	padding: 10px 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.gidrona-hamburger-btn:hover {
	background: rgba(255, 122, 0, 0.15);
	border-color: rgba(255, 122, 0, 0.3);
}

.hamburger-line {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #ffffff;
	border-radius: 2px;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

/* Hamburger Active State */
.gidrona-hamburger-btn.is-active .hamburger-line:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.gidrona-hamburger-btn.is-active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.gidrona-hamburger-btn.is-active .hamburger-line:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   3D Sticky Header Mode
   ========================================================================== */
.gidrona-main-header.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	padding: 10px 0;
	background: rgba(14, 19, 31, 0.94);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 2px 0 rgba(255, 122, 0, 0.35);
	animation: sticky3DEntrance 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gidrona-main-header.is-sticky .gidrona-logo-img {
	height: 42px;
}

@keyframes sticky3DEntrance {
	0% {
		opacity: 0;
		transform: perspective(1000px) translateY(-100%) rotateX(-15deg);
	}
	100% {
		opacity: 1;
		transform: perspective(1000px) translateY(0) rotateX(0deg);
	}
}

/* Spacer when header becomes fixed */
.gidrona-header-spacer {
	display: none;
	width: 100%;
}

.gidrona-header-spacer.is-active {
	display: block;
}

/* ==========================================================================
   Mobile Navigation Drawer & Overlay
   ========================================================================== */
.gidrona-mobile-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 330px;
	max-width: 86vw;
	background: #0e131f;
	box-shadow: none;
	visibility: hidden;
	pointer-events: none;
	z-index: 10002;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease, box-shadow 0.35s ease;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.gidrona-mobile-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
	transform: translateX(0);
	box-shadow: -10px 0 35px rgba(0, 0, 0, 0.7);
}

.gidrona-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gidrona-drawer-logo .gidrona-logo-img {
	height: 38px;
}

.gidrona-drawer-close {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #ffffff;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.gidrona-drawer-close:hover {
	background: #ff7a00;
	border-color: #ff7a00;
	transform: rotate(90deg);
}

.gidrona-drawer-body {
	padding: 20px 24px;
	overflow-y: auto;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Mobile nav list */
.gidrona-mobile-menu-list {
	list-style: none;
	margin: 0 0 25px 0;
	padding: 0;
}

.gidrona-mobile-menu-list > li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
}

.gidrona-mobile-menu-list > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 0;
	color: #f1f5f9;
	font-size: 1.05rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.gidrona-mobile-menu-list > li > a:hover {
	color: #ff7a00;
}

/* Mobile Submenu Accordion Toggle Button */
.gidrona-accordion-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.06);
	border: none;
	color: #cbd5e1;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.25s ease;
	margin-left: 10px;
}

.gidrona-accordion-toggle.is-expanded {
	background: rgba(255, 122, 0, 0.2);
	color: #ff7a00;
	transform: rotate(180deg);
}

/* Mobile Submenu */
.gidrona-mobile-menu-list ul.sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 10px 14px;
	border-left: 2px solid rgba(255, 122, 0, 0.3);
	display: none;
}

.gidrona-mobile-menu-list ul.sub-menu.is-visible {
	display: block;
	animation: fadeInSubmenu 0.25s ease;
}

@keyframes fadeInSubmenu {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}

.gidrona-mobile-menu-list ul.sub-menu li a {
	display: block;
	padding: 8px 0;
	color: #94a3b8;
	font-size: 0.92rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.gidrona-mobile-menu-list ul.sub-menu li a:hover {
	color: #ff7a00;
}

/* Drawer contacts */
.gidrona-drawer-contacts {
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.drawer-call-btn {
	width: 100%;
	text-align: center;
}

.drawer-info-item {
	font-size: 0.85rem;
	color: #94a3b8;
}

/* Overlay */
.gidrona-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 10001;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.gidrona-drawer-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
	.gidrona-desktop-nav {
		display: none !important;
	}
	.gidrona-hamburger-btn {
		display: flex;
	}
	.gidrona-logo-img {
		height: 40px;
		max-width: 180px;
	}
}

@media (max-width: 640px) {
	.gidrona-topbar {
		display: none !important; /* Hide topbar on small screens for maximum viewport efficiency */
	}
	.gidrona-main-header {
		padding: 10px 0;
	}
	.gidrona-header-actions {
		gap: 8px;
	}
	.gidrona-header-phone-btn {
		width: 38px;
		height: 38px;
	}
	.phone-icon-symbol {
		font-size: 1.1rem;
	}
	.gidrona-hamburger-btn {
		width: 38px;
		height: 38px;
		padding: 9px 7px;
	}
	.gidrona-logo-img {
		height: 34px;
		max-width: 150px;
	}
}

@media (max-width: 767px) {
	.g-container,
	.gidrona-topbar-inner,
	.gidrona-header-inner,
	.gidrona-footer-container,
	.gidrona-footer-bottom-inner {
		padding-left: 16px !important;
		padding-right: 16px !important;
		box-sizing: border-box !important;
	}
}


/**
 * Front Page Styles for РћРћРћ Р“РёРґСЂРѕРЅР° (Theme: РЎР°РјРѕРґРІРёР¶РµС†)
 */

:root {
	--g-primary: #ff7a00;
	--g-primary-hover: #e56d00;
	--g-primary-light: #fff2e6;
	--g-dark: #0e131f;
	--g-dark-card: #161e31;
	--g-dark-border: rgba(255, 255, 255, 0.08);
	--g-text-dark: #0f172a;
	--g-text-muted: #64748b;
	--g-text-light: #94a3b8;
	--g-bg-light: #f8fafc;
	--g-bg-white: #ffffff;
	--g-radius: 12px;
	--g-radius-lg: 16px;
	--g-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
	--g-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
	--g-shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
	--g-shadow-glow: 0 8px 25px rgba(255, 122, 0, 0.35);
	--g-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top Bar */
.gidrona-topbar {
	background: #090d16;
	color: #94a3b8;
	font-size: 0.85rem;
	padding: 9px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.gidrona-topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.gidrona-topbar-left,
.gidrona-topbar-right {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #cbd5e1;
	text-decoration: none;
	font-size: 0.85rem;
}

.topbar-link:hover,
.topbar-phone:hover {
	color: #ff7a00;
}

.topbar-phone {
	color: #ff7a00;
	font-weight: 700;
}

/* Base resets & layout */
.gidrona-frontpage {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	color: var(--g-text-dark);
	line-height: 1.6;
	width: 100%;
	overflow-x: hidden;
}

.g-container {
	max-width: 1240px !important;
	width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 24px !important;
	padding-right: 24px !important;
	box-sizing: border-box !important;
}

.g-section {
	width: 100%;
	padding: 80px 0;
	position: relative;
	box-sizing: border-box;
}

.g-bg-light {
	background-color: var(--g-bg-light);
}

.g-bg-dark {
	background-color: var(--g-dark);
	color: #ffffff;
}

/* Badges & Headers */
.g-badge {
	display: inline-block;
	padding: 6px 16px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 50px;
	background: rgba(255, 122, 0, 0.12);
	color: var(--g-primary);
	margin-bottom: 20px;
}

.g-badge-accent {
	background: rgba(255, 122, 0, 0.2);
	color: #ff9500;
}

.g-section-badge {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--g-primary);
	margin-bottom: 10px;
}

.g-section-head {
	margin-bottom: 50px;
}

.g-section-title {
	font-size: 2.3rem;
	font-weight: 800;
	line-height: 1.25;
	color: var(--g-text-dark);
	margin: 0 0 15px 0;
}

.g-section-head.text-center {
	text-align: center;
}

.g-section-desc {
	font-size: 1.15rem;
	color: var(--g-text-muted);
	max-width: 760px;
	margin: 0 auto;
}

.text-white { color: #ffffff !important; }
.text-muted { color: var(--g-text-light) !important; }
.text-center { text-align: center !important; }

/* Buttons */
.g-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 28px;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 8px;
	text-decoration: none;
	transition: var(--g-transition);
	cursor: pointer;
	border: 2px solid transparent;
}

.g-btn-primary {
	background: linear-gradient(135deg, #ff8c00, #ff6000);
	color: #ffffff !important;
	box-shadow: var(--g-shadow-glow);
}

.g-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(255, 122, 0, 0.45);
	color: #ffffff !important;
}

.g-btn-accent {
	background: #ff7a00;
	color: #ffffff !important;
}

.g-btn-accent:hover {
	background: #e56d00;
	transform: translateY(-2px);
}

.g-btn-outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff !important;
}

.g-btn-outline:hover {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
}

.g-btn-outline-white {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.4);
	color: #ffffff !important;
}

.g-btn-outline-white:hover {
	border-color: #ff7a00;
	color: #ff7a00 !important;
	background: rgba(255, 122, 0, 0.1);
}

.g-btn-dark {
	background: var(--g-dark);
	color: #ffffff !important;
}

.g-btn-dark:hover {
	background: #1e293b;
	transform: translateY(-2px);
}

.g-btn-outline-dark {
	background: transparent;
	border-color: var(--g-dark);
	color: var(--g-dark) !important;
}

.g-btn-outline-dark:hover {
	background: var(--g-dark);
	color: #ffffff !important;
}

.g-btn-lg {
	padding: 15px 32px;
	font-size: 1.1rem;
}

.g-btn-sm {
	padding: 8px 18px;
	font-size: 0.9rem;
}

/* ==========================================================================
   Hero Section - РЎРІРµС‚Р»С‹Р№ 3D РёРЅС‚РµСЂР°РєС‚РёРІРЅС‹Р№ Р±Р»РѕРє
   ========================================================================== */
.g-hero-section.g-hero-light {
	background-color: #f8fafc;
	background-image: 
		radial-gradient(ellipse 70% 50% at 85% 25%, rgba(255, 122, 0, 0.08) 0%, transparent 65%),
		radial-gradient(ellipse 60% 40% at 15% 75%, rgba(37, 99, 235, 0.04) 0%, transparent 60%),
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	color: var(--g-text-dark);
	padding: 85px 0 95px;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.g-hero-ambient-glow {
	position: absolute;
	top: -120px;
	right: 5%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
	pointer-events: none;
	filter: blur(50px);
	z-index: 1;
}

.g-hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 50px;
	align-items: center;
	position: relative;
	z-index: 2;
}

/* Badge with pulsating live indicator */
.g-hero-content .g-badge-accent {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 16px;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	border-radius: 50px;
	background: rgba(255, 107, 0, 0.09);
	border: 1px solid rgba(255, 107, 0, 0.22);
	color: #d95d00;
	margin-bottom: 20px;
	box-shadow: 0 2px 10px rgba(255, 107, 0, 0.08);
	max-width: 100%;
}

.badge-text-mobile {
	display: none;
}

.badge-text-desktop {
	display: inline;
}

.g-badge-pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ff6b00;
	box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
	animation: badgePulse 2s infinite;
	flex-shrink: 0;
}

@keyframes badgePulse {
	0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
	70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 107, 0, 0); }
	100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.g-hero-title {
	font-size: 2.75rem;
	font-weight: 900;
	line-height: 1.18;
	color: #0f172a;
	letter-spacing: -0.02em;
	margin: 0 0 20px 0;
}

/* Lead Box with exact original quote */
.g-hero-lead-box {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-left: 4px solid #ff6b00;
	border-radius: 12px;
	padding: 18px 22px;
	margin-bottom: 26px;
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
	backdrop-filter: blur(8px);
}

.g-hero-lead {
	font-size: 1.12rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 8px 0;
	line-height: 1.45;
}

.g-hero-subtitle {
	font-size: 0.98rem;
	color: #475569;
	margin: 0;
	line-height: 1.6;
}

/* Features Bullets */
.g-hero-features {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin-bottom: 34px;
}

.g-feat-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1.02rem;
	font-weight: 600;
	color: #334155;
}

.g-feat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff8a00, #ff6b00);
	color: #ffffff;
	font-size: 0.85rem;
	font-weight: 900;
	flex-shrink: 0;
	box-shadow: 0 3px 10px rgba(255, 107, 0, 0.35);
}

/* Primary CTA Actions & Smart Idle 3D Animation */
.g-hero-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.g-hero-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: linear-gradient(135deg, #ff6b00 0%, #ff8a00 100%);
	color: #ffffff !important;
	font-size: 1.15rem;
	font-weight: 800;
	padding: 16px 36px;
	border-radius: 14px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transform-style: preserve-3d;
	perspective: 800px;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.g-hero-cta .g-btn-arrow {
	font-size: 1.25rem;
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-hero-cta:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 14px 35px rgba(255, 107, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.25);
	color: #ffffff !important;
}

.g-hero-cta:hover .g-btn-arrow {
	transform: translateX(5px);
}

.g-hero-cta:active {
	transform: translateY(0) scale(0.98);
}

/* Light Sweep Shimmer on Button */
.g-btn-glow {
	position: absolute;
	top: 0;
	left: -120%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	transform: skewX(-20deg);
	transition: left 0.6s ease;
	pointer-events: none;
}

.g-hero-cta:hover .g-btn-glow {
	left: 140%;
}

/* Live 3D Idle Breathing Animation (Triggered when user is inactive) */
.g-hero-cta.is-idle-pulsing {
	animation: heroIdle3D 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.g-hero-cta.is-idle-pulsing .g-btn-glow {
	animation: lightSweep 2.4s infinite;
}

.g-hero-cta.is-idle-pulsing .g-btn-arrow {
	animation: arrowBob 1.2s ease-in-out infinite alternate;
}

@keyframes heroIdle3D {
	0%, 100% {
		transform: perspective(800px) rotateX(0deg) scale(1);
		box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
	}
	50% {
		transform: perspective(800px) rotateX(6deg) scale(1.045) translateY(-2px);
		box-shadow: 0 16px 40px rgba(255, 107, 0, 0.58), 0 0 28px rgba(255, 107, 0, 0.45);
	}
}

@keyframes lightSweep {
	0% { left: -120%; }
	40%, 100% { left: 140%; }
}

@keyframes arrowBob {
	0% { transform: translateX(0); }
	100% { transform: translateX(6px); }
}

.g-hero-cta-hint {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 0.88rem;
	color: #64748b;
	font-weight: 500;
}

.g-hero-cta-hint .hint-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #10b981;
}

/* ==========================================================================
   3D Visual Stage & Floating Glass Chips
   ========================================================================== */
.g-hero-visual {
	position: relative;
	perspective: 1200px;
	transform-style: preserve-3d;
}

.g-hero-image-wrap {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 30px 70px -15px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.05);
	transform-style: preserve-3d;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.g-hero-img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-hero-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
	pointer-events: none;
}

/* 3D Floating Glass Chips */
.g-floating-chip {
	position: absolute;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 16px;
	box-shadow: 0 16px 36px -10px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(15, 23, 42, 0.04);
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 5;
	transform-style: preserve-3d;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.g-floating-chip:hover {
	transform: translateZ(30px) scale(1.05);
	box-shadow: 0 22px 45px -10px rgba(15, 23, 42, 0.22), 0 0 20px rgba(255, 107, 0, 0.2);
}

.chip-icon-box {
	font-size: 24px;
	line-height: 1;
}

.chip-title {
	font-size: 0.95rem;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.2;
}

.chip-desc {
	font-size: 0.8rem;
	color: #64748b;
	margin-top: 2px;
}

.chip-badge-num {
	font-size: 1.6rem;
	font-weight: 900;
	color: #ff6b00;
	line-height: 1;
}

/* Specific Placements */
.chip-quality {
	top: -15px;
	left: -20px;
}

.chip-speed {
	bottom: -20px;
	right: -15px;
}

.chip-brands {
	top: 25px;
	right: -25px;
	flex-direction: column;
	align-items: flex-start;
	padding: 12px 16px;
}

/* Mobile & Tablet Adjustments for Hero */
@media (max-width: 1024px) {
	.g-hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.g-hero-title {
		font-size: 2.2rem;
	}

	.chip-quality {
		top: 10px;
		left: 10px;
	}

	.chip-speed {
		bottom: 10px;
		right: 10px;
	}

	.chip-brands {
		display: none;
	}
}

@media (max-width: 767px) {
	.badge-text-desktop {
		display: none !important;
	}

	.badge-text-mobile {
		display: inline !important;
	}

	.g-container {
		padding-left: 16px !important;
		padding-right: 16px !important;
		box-sizing: border-box !important;
	}

	.g-hero-ambient-glow {
		display: none !important;
	}

	.g-hero-section.g-hero-light {
		padding: 35px 0 45px;
		overflow-x: hidden;
		width: 100%;
	}

	.g-hero-content .g-badge-accent {
		font-size: 0.72rem;
		letter-spacing: 0.3px;
		padding: 6px 14px;
		gap: 7px;
		margin-bottom: 18px;
		white-space: nowrap;
		max-width: 100%;
		box-sizing: border-box;
	}

	.g-badge-pulse {
		width: 7px;
		height: 7px;
		flex-shrink: 0;
	}

	.g-hero-title {
		font-size: 1.7rem;
		line-height: 1.22;
		word-wrap: break-word;
	}

	.g-hero-cta {
		width: 100%;
		font-size: 1.05rem;
		padding: 15px 24px;
	}

	.g-hero-lead-box {
		padding: 14px 16px;
	}

	.g-hero-lead {
		font-size: 1.02rem;
	}

	.g-floating-chip {
		padding: 10px 14px;
	}

	.chip-quality {
		top: 10px;
		left: 10px;
		max-width: calc(100% - 20px);
	}

	.chip-speed {
		bottom: 10px;
		right: 10px;
		max-width: calc(100% - 20px);
	}

	.chip-icon-box {
		font-size: 18px;
	}

	.chip-title {
		font-size: 0.85rem;
	}

	.chip-desc {
		font-size: 0.75rem;
	}
}

.g-stat-text {
	font-size: 0.9rem;
	color: #e2e8f0;
	line-height: 1.3;
}

/* ==========================================================================
   Scroll Reveal Animation System (Apple HIG / Spring Motion)
   ========================================================================== */
.g-reveal-item {
	opacity: 0;
	transform: perspective(1000px) translateY(45px) scale(0.96) rotateX(4deg);
	transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0s),
	            transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0s);
	will-change: opacity, transform;
}

.g-reveal-item.is-revealed {
	opacity: 1;
	transform: perspective(1000px) translateY(0) scale(1) rotateX(0deg);
}

/* ==========================================================================
   Section 2: Tech Types & Moving Excavator Track & 3D Sparks Canvas
   ========================================================================== */
.g-tech-types-section {
	position: relative;
	background-color: #ffffff;
	background-image: 
		radial-gradient(circle at 10% 20%, rgba(255, 107, 0, 0.04) 0%, transparent 50%),
		radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
	padding: 95px 0 110px;
	overflow: hidden;
}

.g-sparks-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 3;
}

.g-tech-card.is-sparking {
	box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.15), 0 10px 25px rgba(255, 107, 0, 0.28) !important;
	border-color: rgba(255, 107, 0, 0.5) !important;
}

.g-tech-bg-scene {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 1;
}

.g-tech-grid-lines {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.7;
}

.g-tech-track-rail {
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	height: 190px;
	pointer-events: none;
}

.g-track-line {
	position: absolute;
	bottom: 24px;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(255, 107, 0, 0.2) 15%, 
		rgba(255, 107, 0, 0.6) 50%, 
		rgba(255, 107, 0, 0.2) 85%, 
		transparent 100%);
}

.g-track-pressure-pulse {
	position: absolute;
	bottom: 23px;
	left: -20%;
	width: 250px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #ff6b00, transparent);
	border-radius: 4px;
	filter: blur(1px);
	animation: trackPulse 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes trackPulse {
	0% { transform: translateX(0); opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { transform: translateX(120vw); opacity: 0; }
}

.g-bg-excavator-carrier {
	position: absolute;
	bottom: 12px;
	left: 0;
	width: 260px;
	height: 165px;
	will-change: transform;
	filter: drop-shadow(0 15px 30px rgba(255, 107, 0, 0.22));
	opacity: 0.88;
	transition: transform 0.08s linear;
}

.g-excavator-svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Cards & Grids */
.g-cards-grid {
	display: grid;
	gap: 30px;
	position: relative;
	z-index: 2;
}

.g-cards-3 {
	grid-template-columns: repeat(3, 1fr);
}

.g-cards-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* 3D Tech Card */
.g-tech-card {
	background: rgba(255, 255, 255, 0.96);
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.02);
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	transform-style: preserve-3d;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.g-tech-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 24px 50px -10px rgba(15, 23, 42, 0.16), 0 0 25px rgba(255, 107, 0, 0.18);
	border-color: rgba(255, 107, 0, 0.4);
}

.g-card-tag-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-size: 0.76rem;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 50px;
	z-index: 4;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.g-card-tag-badge.badge-heavy {
	background: rgba(217, 93, 0, 0.9);
	border-color: rgba(255, 255, 255, 0.3);
}

.g-card-tag-badge.badge-loader {
	background: rgba(30, 41, 59, 0.88);
}

.g-card-img-wrap {
	position: relative;
	width: 100%;
	height: 230px;
	overflow: hidden;
	background: #f1f5f9;
}

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

.g-tech-card:hover .g-card-img-wrap img {
	transform: scale(1.06);
}

.g-card-img-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.4) 100%);
	pointer-events: none;
}

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

.g-card-badge-row {
	margin-bottom: 8px;
}

.g-mini-badge {
	display: inline-block;
	font-size: 0.76rem;
	font-weight: 700;
	color: #ff6b00;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.g-card-title {
	font-size: 1.32rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 10px 0;
	line-height: 1.3;
}

.g-card-text {
	font-size: 0.94rem;
	color: #475569;
	margin-bottom: 22px;
	line-height: 1.55;
	flex-grow: 1;
}

.g-card-action-row {
	margin-top: auto;
}

.g-btn-card-cta {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 12px 18px;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 12px;
	color: #0f172a;
	font-size: 0.94rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.25s ease;
}

.g-btn-card-cta .btn-arrow {
	font-size: 1.15rem;
	color: #ff6b00;
	transition: transform 0.25s ease;
}

.g-tech-card:hover .g-btn-card-cta {
	background: linear-gradient(135deg, #ff6b00, #ff8a00);
	color: #ffffff;
	border-color: transparent;
	box-shadow: 0 6px 18px rgba(255, 107, 0, 0.35);
}

.g-tech-card:hover .g-btn-card-cta .btn-arrow {
	color: #ffffff;
	transform: translateX(4px);
}

/* Generic .g-card fallback */
.g-card {
	background: #ffffff;
	border-radius: var(--g-radius);
	overflow: hidden;
	box-shadow: var(--g-shadow-sm);
	transition: var(--g-transition);
	display: flex;
	flex-direction: column;
	border: 1px solid #e2e8f0;
}

.g-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--g-shadow-md);
	border-color: #cbd5e1;
}

.g-card-link:hover {
	gap: 10px;
	color: var(--g-primary-hover);
}

/* ==========================================================================
   Section 3: Attachments & Continuous Sparkler Particle Flow
   ========================================================================== */
.g-attachments-section {
	position: relative;
	background-color: #0b0f19;
	background-image: 
		radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 107, 0, 0.12), transparent 70%),
		radial-gradient(ellipse 60% 40% at 85% 90%, rgba(30, 58, 138, 0.15), transparent 70%);
	padding: 100px 0 110px;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.g-sparkler-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 3;
}

.g-attachments-ambient-glow {
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
	pointer-events: none;
	filter: blur(60px);
	z-index: 1;
}

/* 3D Dark Attachment Card with 1px Orange Border */
.g-attachment-card {
	background: rgba(14, 19, 31, 0.88) !important;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-radius: 20px !important;
	border: 1px solid rgba(255, 107, 0, 0.45) !important;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 107, 0, 0.1) !important;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	transform-style: preserve-3d;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.g-attachment-card:hover {
	transform: translateY(-8px) scale(1.02);
	border-color: #ff6b00 !important;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 107, 0, 0.35) !important;
}

/* Active glowing state when sparkler is traversing this card */
.g-attachment-card.is-sparkler-active {
	border-color: #ff8a00 !important;
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(255, 107, 0, 0.5), inset 0 0 15px rgba(255, 107, 0, 0.15) !important;
}

.g-attachment-card .g-card-img-wrap {
	position: relative;
	width: 100%;
	height: 220px;
	overflow: hidden;
	background: #090d16;
}

.g-attachment-card .g-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-attachment-card:hover .g-card-img-wrap img {
	transform: scale(1.06);
}

.g-attachment-card .g-card-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.g-attachment-card .text-accent {
	color: #ff8a00 !important;
	font-weight: 700;
}

.g-attachment-card .g-card-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 10px 0;
	line-height: 1.35;
}

.g-attachment-card .g-card-text {
	font-size: 0.92rem;
	color: #94a3b8;
	margin-bottom: 20px;
	line-height: 1.55;
	flex-grow: 1;
}

.btn-dark-cta {
	background: rgba(255, 255, 255, 0.06) !important;
	border: 1px solid rgba(255, 107, 0, 0.35) !important;
	color: #f1f5f9 !important;
	border-radius: 12px;
	padding: 12px 18px;
	font-size: 0.92rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	text-decoration: none;
	transition: all 0.25s ease;
}

.btn-dark-cta .btn-arrow {
	color: #ff6b00;
	font-size: 1.15rem;
	transition: transform 0.25s ease;
}

.g-attachment-card:hover .btn-dark-cta {
	background: linear-gradient(135deg, #ff6b00, #ff8a00) !important;
	border-color: transparent !important;
	color: #ffffff !important;
	box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.g-attachment-card:hover .btn-dark-cta .btn-arrow {
	color: #ffffff;
	transform: translateX(4px);
}

/* ==========================================================================
   Section 4: Services Section & 3D Service Cards
   ========================================================================== */
.g-services-section {
	position: relative;
	background-color: #ffffff;
	background-image: 
		radial-gradient(circle at 10% 10%, rgba(255, 107, 0, 0.03) 0%, transparent 40%),
		radial-gradient(circle at 90% 90%, rgba(37, 99, 235, 0.03) 0%, transparent 40%);
	padding: 95px 0 110px;
}

.g-service-card {
	background: rgba(255, 255, 255, 0.96);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.02);
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	transform-style: preserve-3d;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.g-service-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 24px 50px -10px rgba(15, 23, 42, 0.16), 0 0 25px rgba(255, 107, 0, 0.18);
	border-color: rgba(255, 107, 0, 0.4);
}

.g-service-card .g-card-img-wrap {
	position: relative;
	width: 100%;
	height: 220px;
	overflow: hidden;
	background: #f1f5f9;
}

.g-service-card .g-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-service-card:hover .g-card-img-wrap img {
	transform: scale(1.06);
}

.g-service-card .g-card-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

/* ==========================================================================
   Section 4 Sub-Block: Living Breathing Water & Dredging Ecosystem
   ========================================================================== */
.g-vodoem-block {
	position: relative;
	margin-top: 65px;
	padding: 45px 35px 40px;
	background: rgba(248, 250, 252, 0.88);
	border-radius: 28px;
	border: 1px solid rgba(14, 165, 233, 0.25);
	box-shadow: 0 15px 40px -15px rgba(14, 165, 233, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8);
	overflow: hidden;
}

.g-vodoem-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.g-vodoem-ambient-breathe {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(14, 165, 233, 0.14) 0%, rgba(255, 107, 0, 0.06) 45%, transparent 75%);
	pointer-events: none;
	animation: vodoemAmbientBreathe 7s ease-in-out infinite;
	z-index: 1;
}

@keyframes vodoemAmbientBreathe {
	0%, 100% {
		opacity: 0.5;
		transform: scale(0.97);
	}
	50% {
		opacity: 1;
		transform: scale(1.03);
	}
}

.g-vodoem-divider-line {
	position: relative;
	height: 2px;
	margin: 0 auto 35px;
	background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.4) 20%, rgba(255, 107, 0, 0.6) 50%, rgba(14, 165, 233, 0.4) 80%, transparent);
	z-index: 2;
}

.g-divider-dot {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	background: #ff6b00;
	border-radius: 50%;
	box-shadow: 0 0 12px #ff6b00;
}

.g-badge-water {
	background: rgba(14, 165, 233, 0.12);
	color: #0284c7;
	border: 1px solid rgba(14, 165, 233, 0.3);
}

.g-water-wave-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #0ea5e9;
	display: inline-block;
	box-shadow: 0 0 8px #0ea5e9;
	animation: waterDotPulse 2s infinite ease-in-out;
}

@keyframes waterDotPulse {
	0%, 100% { transform: scale(0.8); opacity: 0.7; }
	50% { transform: scale(1.3); opacity: 1; }
}

.g-vodoem-main-title {
	font-size: 1.85rem;
	font-weight: 800;
	color: #0f172a;
	margin: 12px 0 10px;
	line-height: 1.25;
}

.g-vodoem-pillar-card {
	background: rgba(255, 255, 255, 0.94);
	border-radius: 20px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	padding: 24px 22px;
	box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.02);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
	position: relative;
	z-index: 2;
	transform-style: preserve-3d;
	display: flex;
	flex-direction: column;
}

.g-vodoem-pillar-card:hover {
	transform: translateY(-8px) scale(1.02);
	border-color: rgba(14, 165, 233, 0.45);
	box-shadow: 0 20px 45px -10px rgba(14, 165, 233, 0.22), 0 0 25px rgba(255, 107, 0, 0.15);
}

.g-pillar-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.g-pillar-icon-box {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: #f0f9ff;
	border: 1px solid rgba(14, 165, 233, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.12);
}

.g-pillar-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	line-height: 1.2;
}

.g-pillar-sub {
	font-size: 0.8rem;
	font-weight: 600;
	color: #64748b;
}

.g-vodoem-links-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex-grow: 1;
}

.g-vodoem-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 12px;
	border-radius: 10px;
	color: #334155;
	font-size: 0.91rem;
	font-weight: 600;
	text-decoration: none;
	background: #f8fafc;
	border: 1px solid transparent;
	transition: all 0.25s ease;
}

.g-vodoem-link .link-bullet {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #0ea5e9;
	margin-right: 10px;
	flex-shrink: 0;
	transition: transform 0.25s ease, background 0.25s ease;
}

.g-vodoem-link .link-name {
	flex-grow: 1;
	transition: color 0.25s ease;
}

.g-vodoem-link .link-arrow {
	color: #94a3b8;
	font-size: 0.95rem;
	transition: transform 0.25s ease, color 0.25s ease;
}

.g-vodoem-link:hover {
	background: #ffffff;
	color: #0284c7;
	border-color: rgba(14, 165, 233, 0.3);
	transform: translateX(4px);
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.12);
}

.g-vodoem-link:hover .link-bullet {
	background: #ff6b00;
	transform: scale(1.4);
}

.g-vodoem-link:hover .link-arrow {
	color: #0284c7;
	transform: translateX(3px);
}

.g-vodoem-header-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 35px;
	position: relative;
	z-index: 2;
}

.g-vodoem-header-info {
	flex-grow: 1;
}

.g-vodoem-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #ffffff;
	border: 1px solid rgba(255, 107, 0, 0.4);
	border-radius: 12px;
	color: #0f172a;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
	flex-shrink: 0;
}

.g-vodoem-more-btn:hover {
	background: #ff6b00;
	color: #ffffff;
	border-color: #ff6b00;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.g-vodoem-more-btn .btn-arrow {
	transition: transform 0.3s ease;
}

.g-vodoem-more-btn:hover .btn-arrow {
	transform: translateX(4px);
}

/* Callout Banner */
.g-vodoem-banner-card {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	border-radius: 20px;
	padding: 28px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 35px;
	border: 1px solid rgba(255, 107, 0, 0.35);
	box-shadow: 0 16px 35px rgba(15, 23, 42, 0.25);
	position: relative;
	z-index: 2;
}

.g-vodoem-banner-badge {
	display: inline-block;
	font-size: 0.88rem;
	font-weight: 700;
	color: #38bdf8;
	line-height: 1.35;
	margin-bottom: 6px;
}

.g-vodoem-banner-title {
	font-size: 1.6rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0;
	line-height: 1.2;
}

.g-vodoem-banner-action {
	flex-shrink: 0;
}

/* Video & Consultation Info Grid (Section 13) */
.g-vodoem-intro-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 30px;
	align-items: start;
	margin-top: 35px;
	position: relative;
	z-index: 2;
}

.g-vodoem-video-card {
	background: #0f172a;
	border-radius: 20px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	overflow: hidden;
	box-shadow: 0 12px 35px -10px rgba(15, 23, 42, 0.15);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.g-vodoem-video-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 45px -10px rgba(14, 165, 233, 0.25), 0 0 25px rgba(255, 107, 0, 0.15);
}

.g-video-preview-wrap {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #0f172a;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.g-video-preview-wrap video {
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: contain;
	display: block;
	background: #0f172a;
	border-radius: 20px;
}

.g-video-play-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: rgba(255, 107, 0, 0.95);
	color: #ffffff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 8px rgba(255, 107, 0, 0.35), 0 10px 25px rgba(0, 0, 0, 0.35);
	transition: all 0.3s ease;
	z-index: 3;
}

.g-video-play-btn .play-icon {
	font-size: 22px;
	margin-left: 4px;
}

.g-video-play-btn:hover {
	transform: translate(-50%, -50%) scale(1.12);
	background: #ff6b00;
	box-shadow: 0 0 0 12px rgba(255, 107, 0, 0.45), 0 15px 30px rgba(255, 107, 0, 0.5);
}

.g-video-preview-wrap.is-playing .g-video-play-btn,
.g-video-preview-wrap.is-playing .g-video-badge {
	opacity: 0;
	pointer-events: none;
}

.g-video-badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: rgba(15, 23, 42, 0.8);
	backdrop-filter: blur(8px);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.g-vodoem-intro-text-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	padding: 26px 28px;
	box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.g-vodoem-text-body p {
	font-size: 0.95rem;
	color: #334155;
	line-height: 1.6;
	margin-bottom: 14px;
}

.g-vodoem-text-body p:last-child {
	margin-bottom: 0;
}

.g-highlight-link {
	color: #0284c7;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px dashed rgba(2, 132, 199, 0.4);
	transition: all 0.2s ease;
}

.g-highlight-link:hover {
	color: #ff6b00;
	border-bottom-color: #ff6b00;
}

.g-vodoem-intro-action {
	margin-top: 20px;
}

.g-btn-outline-gold {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background: #ffffff;
	border: 2px solid #ffaa00;
	border-radius: 12px;
	color: #0f172a;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 15px rgba(255, 170, 0, 0.15);
}

.g-btn-outline-gold:hover {
	background: #ffaa00;
	color: #0f172a;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 170, 0, 0.35);
}

@media (max-width: 900px) {
	.g-vodoem-block {
		padding: 30px 18px 25px;
	}

	.g-vodoem-header-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.g-vodoem-banner-card {
		flex-direction: column;
		text-align: center;
		padding: 24px 20px;
	}

	.g-vodoem-banner-action {
		width: 100%;
	}

	.g-vodoem-banner-action .g-btn {
		width: 100%;
		justify-content: center;
	}

	.g-vodoem-intro-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* ==========================================================================
   Section 5: High-Tech Engineering Showcase (Р­РєСЃРєР°РІР°С‚РѕСЂС‹)
   ========================================================================== */
.g-excavators-info-section {
	position: relative;
	background: #f8fafc;
	overflow: hidden;
}

.g-engineering-head-block {
	max-width: 920px;
	margin: 0 auto 40px;
	text-align: center;
}

.g-section-desc-lead {
	font-size: 1.08rem;
	color: #475569;
	line-height: 1.6;
}

/* Category Chips Row */
.g-tech-chips-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.g-tech-chips-row.justify-center {
	justify-content: center;
	margin-top: 18px;
}

.g-tech-chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	border-radius: 30px;
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.1);
	font-size: 0.88rem;
	font-weight: 700;
	color: #475569;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	user-select: none;
}

.g-tech-chip.is-active,
.g-tech-chip:hover {
	background: #0f172a;
	color: #ffffff;
	border-color: #0f172a;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
	transform: translateY(-2px);
}

/* Two Col Aligned in Height */
.g-engineering-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: stretch;
}

.g-col-text {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

/* Interactive Feature Cards 01-04 */
.g-tech-features-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	justify-content: space-between;
	flex-grow: 1;
}

.g-tech-feature-card {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 18px 22px;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	box-shadow: 0 4px 16px -4px rgba(15, 23, 42, 0.05);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: default;
}

.g-tech-feature-card .feature-num {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #fff7ed;
	border: 1px solid rgba(255, 107, 0, 0.25);
	color: #ff6b00;
	font-size: 1.15rem;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-tech-feature-card .feature-content {
	flex-grow: 1;
}

.g-tech-feature-card .feature-title {
	font-size: 1.05rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 4px;
	line-height: 1.3;
}

.g-tech-feature-card .feature-desc {
	font-size: 0.88rem;
	color: #64748b;
	margin: 0;
	line-height: 1.45;
}

.g-tech-feature-card:hover {
	transform: translateX(8px);
	background: #ffffff;
	border-color: rgba(255, 107, 0, 0.4);
	box-shadow: 0 12px 28px -8px rgba(255, 107, 0, 0.2);
}

.g-tech-feature-card:hover .feature-num {
	background: #ff6b00;
	color: #ffffff;
	transform: scale(1.1);
	box-shadow: 0 0 16px rgba(255, 107, 0, 0.5);
}

.g-guarantee-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	font-weight: 700;
	color: #1e293b;
	padding: 10px 16px;
	background: #f1f5f9;
	border-radius: 12px;
	border: 1px solid rgba(15, 23, 42, 0.06);
}

/* 3D Engineering Visual Stage */
.g-col-visual {
	height: 100%;
	display: flex;
}

.g-engineering-stage {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.g-engineering-card {
	position: relative;
	width: 100%;
	height: 100%;
	background: #0f172a;
	padding: 12px;
	border-radius: 26px;
	box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.3), 0 0 35px rgba(255, 107, 0, 0.18);
	border: 1px solid rgba(255, 107, 0, 0.35);
	transform-style: preserve-3d;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
	z-index: 2;
	display: flex;
	flex-direction: column;
}

.g-engineering-card:hover {
	box-shadow: 0 35px 80px -20px rgba(15, 23, 42, 0.4), 0 0 45px rgba(255, 107, 0, 0.3);
}

.g-blueprint-frame {
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: 26px;
	z-index: 3;
}

.g-blueprint-frame .frame-corner {
	position: absolute;
	width: 18px;
	height: 18px;
	border-color: #ff6b00;
	border-style: solid;
}

.g-blueprint-frame .frame-corner.top-left {
	top: 8px;
	left: 8px;
	border-width: 2px 0 0 2px;
	border-top-left-radius: 6px;
}

.g-blueprint-frame .frame-corner.top-right {
	top: 8px;
	right: 8px;
	border-width: 2px 2px 0 0;
	border-top-right-radius: 6px;
}

.g-blueprint-frame .frame-corner.bottom-left {
	bottom: 8px;
	left: 8px;
	border-width: 0 0 2px 2px;
	border-bottom-left-radius: 6px;
}

.g-blueprint-frame .frame-corner.bottom-right {
	bottom: 8px;
	right: 8px;
	border-width: 0 2px 2px 0;
	border-bottom-right-radius: 6px;
}

.g-engineering-img-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 480px;
	border-radius: 18px;
	overflow: hidden;
	flex-grow: 1;
	display: flex;
}

.g-engineering-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	border-radius: 18px;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-engineering-card:hover .g-engineering-img-wrap img {
	transform: scale(1.03);
}

.g-img-tech-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.35) 100%);
	pointer-events: none;
}

/* Floating Telemetry Chips */
.g-telemetry-chip {
	position: absolute;
	background: rgba(15, 23, 42, 0.88);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 10px 16px;
	border-radius: 14px;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
	z-index: 5;
	pointer-events: none;
	transition: transform 0.2s ease-out;
}

.g-telemetry-chip strong {
	display: block;
	font-size: 0.95rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
}

.g-telemetry-chip span {
	display: block;
	font-size: 0.75rem;
	color: #94a3b8;
	line-height: 1.2;
}

.g-telemetry-chip.chip-top-left {
	top: -14px;
	left: -14px;
	border-color: rgba(255, 107, 0, 0.5);
	box-shadow: 0 10px 25px rgba(255, 107, 0, 0.2);
}

.g-telemetry-chip.chip-bottom-right {
	bottom: -14px;
	right: -14px;
	border-color: rgba(14, 165, 233, 0.5);
	box-shadow: 0 10px 25px rgba(14, 165, 233, 0.2);
}

.g-telemetry-chip.chip-bottom-left {
	bottom: 24px;
	left: -12px;
	border-color: rgba(255, 215, 0, 0.5);
}

.chip-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}

.chip-dot.pulse-amber {
	background: #ff6b00;
	box-shadow: 0 0 10px #ff6b00;
	animation: dotPulse 1.8s infinite ease-in-out;
}

.chip-dot.pulse-cyan {
	background: #0ea5e9;
	box-shadow: 0 0 10px #0ea5e9;
	animation: dotPulse 2.2s infinite ease-in-out;
}

.chip-icon {
	font-size: 18px;
}

@keyframes dotPulse {
	0%, 100% { transform: scale(0.85); opacity: 0.7; }
	50% { transform: scale(1.3); opacity: 1; }
}

@media (max-width: 900px) {
	.g-engineering-two-col {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.g-telemetry-chip {
		position: static;
		margin-top: 10px;
	}
}

/* Two Col Grid */
.g-two-col-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 50px;
	align-items: center;
}

.g-check-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.g-check-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	font-size: 1.05rem;
	color: var(--g-text-dark);
}

.g-check-list li::before {
	content: "вњ“";
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--g-primary);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
}

.g-rounded-img {
	border-radius: var(--g-radius-lg);
	width: 100%;
	height: auto;
	display: block;
}

/* ==========================================================================
   Section 8: Portfolio 3D Interactive Gallery & Lightbox
   ========================================================================== */
.g-portfolio-section {
	background: #f8fafc;
	position: relative;
	overflow: hidden;
}

.g-portfolio-filter-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 35px;
}

.g-portfolio-filter-bar {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 9999px;
	padding: 6px;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px;
	box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
	max-width: 100%;
}

.g-filter-btn {
	background: transparent;
	color: #475569;
	font-weight: 600;
	font-size: 0.88rem;
	padding: 9px 18px;
	border-radius: 9999px;
	border: none;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.g-filter-btn:hover {
	color: #0f172a;
	background: rgba(15, 23, 42, 0.04);
}

.g-filter-btn.is-active {
	background: #0f172a;
	color: #ffffff;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.22);
}

.g-filter-btn .filter-count {
	background: rgba(255, 107, 0, 0.12);
	color: #ff6b00;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	transition: all 0.25s ease;
}

.g-filter-btn.is-active .filter-count {
	background: #ff6b00;
	color: #ffffff;
}

/* Portfolio 3D Grid */
.g-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
	z-index: 2;
}

.g-portfolio-card {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.02);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, opacity 0.3s ease, border-color 0.3s ease;
	transform-style: preserve-3d;
	cursor: pointer;
	position: relative;
	display: flex;
	flex-direction: column;
}

.g-portfolio-card.is-hidden {
	display: none;
	opacity: 0;
	transform: scale(0.92);
}

.g-portfolio-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 107, 0, 0.4);
	box-shadow: 0 20px 40px -10px rgba(255, 107, 0, 0.18), 0 0 0 1px rgba(255, 107, 0, 0.2);
}

.g-port-tag-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 5;
	background: rgba(15, 23, 42, 0.78);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	pointer-events: none;
}

.g-port-img-wrap {
	position: relative;
	height: 220px;
	overflow: hidden;
	background: #0f172a;
}

.g-port-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-portfolio-card:hover .g-port-img-wrap img {
	transform: scale(1.08);
}

.g-port-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.g-portfolio-card:hover .g-port-shine {
	opacity: 1;
}

.g-port-zoom-btn {
	position: absolute;
	bottom: 12px;
	right: 12px;
	z-index: 4;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	cursor: pointer;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.g-portfolio-card:hover .g-port-zoom-btn {
	opacity: 1;
	transform: scale(1);
}

.g-port-zoom-btn:hover {
	background: #ff6b00;
	color: #ffffff;
	transform: scale(1.1);
}

.g-port-body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	background: #ffffff;
}

.g-port-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.74rem;
	font-weight: 700;
}

.g-port-cat-name {
	color: #ff6b00;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.g-port-badge-check {
	color: #10b981;
}

.g-port-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.35;
	margin: 0;
	transition: color 0.2s ease;
}

.g-portfolio-card:hover .g-port-title {
	color: #ff6b00;
}

.g-port-desc {
	font-size: 0.84rem;
	color: #64748b;
	line-height: 1.45;
	margin: 0;
}

/* Portfolio CTA Card */
.g-port-cta-card {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	border-radius: 24px;
	padding: 35px 40px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.25);
	border: 1px solid rgba(255, 107, 0, 0.25);
}

.g-port-cta-glow {
	position: absolute;
	right: -50px;
	top: -50px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(255, 107, 0, 0.22) 0%, transparent 70%);
	pointer-events: none;
}

.g-port-cta-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	position: relative;
	z-index: 2;
}

.g-port-cta-text .cta-mini-badge {
	display: inline-block;
	color: #ff8a00;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.g-port-cta-text .cta-heading {
	font-size: 1.35rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 8px;
	line-height: 1.3;
}

.g-port-cta-text .cta-sub {
	color: #94a3b8;
	font-size: 0.95rem;
	margin: 0;
}

/* ==========================================================================
   Native Spring Lightbox Modal Viewer
   ========================================================================== */
.g-portfolio-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-portfolio-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}

.lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.88);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.lightbox-dialog {
	position: relative;
	z-index: 2;
	max-width: 920px;
	width: 92%;
	max-height: 90vh;
	background: #0f172a;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.12);
	display: flex;
	flex-direction: column;
	transform: scale(0.94);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-portfolio-lightbox.is-open .lightbox-dialog {
	transform: scale(1);
}

.lightbox-close-btn {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 10;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #ffffff;
	font-size: 1.1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
	background: #ff6b00;
	border-color: #ff6b00;
	transform: rotate(90deg) scale(1.05);
}

.lightbox-nav-btn {
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	z-index: 10;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #ffffff;
	font-size: 2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	line-height: 1;
	padding-bottom: 4px;
}

.lightbox-prev-btn {
	left: 16px;
}

.lightbox-next-btn {
	right: 16px;
}

.lightbox-nav-btn:hover {
	background: #ff6b00;
	border-color: #ff6b00;
	transform: translateY(-50%) scale(1.1);
}

.lightbox-media-wrap {
	position: relative;
	width: 100%;
	height: 520px;
	max-height: 60vh;
	background: #020617;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.lightbox-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	opacity: 1;
	transition: opacity 0.25s ease;
}

.lightbox-loader {
	position: absolute;
	width: 40px;
	height: 40px;
	border: 3px solid rgba(255, 255, 255, 0.2);
	border-top-color: #ff6b00;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	display: none;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.lightbox-info-bar {
	padding: 20px 28px 24px;
	background: #0f172a;
	color: #ffffff;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.lightbox-tag {
	font-size: 0.78rem;
	font-weight: 700;
	color: #ff8a00;
	background: rgba(255, 107, 0, 0.15);
	padding: 4px 10px;
	border-radius: 12px;
	border: 1px solid rgba(255, 107, 0, 0.3);
}

.lightbox-counter {
	font-size: 0.82rem;
	color: #94a3b8;
	font-weight: 600;
}

.lightbox-title {
	font-size: 1.2rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 6px;
}

.lightbox-desc {
	font-size: 0.9rem;
	color: #94a3b8;
	margin: 0;
	line-height: 1.45;
}

/* Responsive adjustments for Section 8 */
@media (max-width: 1024px) {
	.g-portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.g-port-cta-content {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 640px) {
	.g-portfolio-grid {
		grid-template-columns: 1fr;
	}
	.g-portfolio-filter-bar {
		border-radius: 16px;
		justify-content: center;
	}
	.g-filter-btn {
		font-size: 0.8rem;
		padding: 7px 12px;
	}
	.lightbox-nav-btn {
		width: 40px;
		height: 40px;
		font-size: 1.5rem;
	}
	.lightbox-prev-btn { left: 8px; }
	.lightbox-next-btn { right: 8px; }
}

/* ==========================================================================
   Section 6: Brands Showcase & Infinite Marquee
   ========================================================================== */
.g-brands-showcase-section {
	background: #ffffff;
	position: relative;
	overflow: hidden;
	padding: 90px 0;
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.g-brands-marquee-wrap {
	position: relative;
	overflow: hidden;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 25px;
	mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.g-marquee-track {
	display: flex;
	gap: 14px;
	width: max-content;
}

.g-marquee-left {
	animation: marqueeScrollLeft 32s linear infinite;
}

.g-marquee-right {
	animation: marqueeScrollRight 36s linear infinite;
}

.g-marquee-track:hover {
	animation-play-state: paused;
}

@keyframes marqueeScrollLeft {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollRight {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}

.g-brand-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 22px;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 40px;
	font-size: 0.95rem;
	font-weight: 700;
	color: #1e293b;
	box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.04);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: default;
	white-space: nowrap;
	user-select: none;
}

.g-brand-pill .brand-logo-icon {
	font-size: 14px;
}

.g-brand-pill:hover {
	background: #0f172a;
	color: #ffffff;
	border-color: #ff6b00;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 22px -4px rgba(255, 107, 0, 0.3);
}

/* Brands 3D Showcase Banner */
.g-brands-showcase-wrap {
	max-width: 1060px;
	margin: 0 auto;
}

.g-brands-banner-card {
	background: #0f172a;
	border-radius: 26px;
	padding: 14px;
	border: 1px solid rgba(255, 107, 0, 0.35);
	box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25), 0 0 35px rgba(255, 107, 0, 0.12);
	transform-style: preserve-3d;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.g-brands-banner-card:hover {
	box-shadow: 0 35px 80px -20px rgba(15, 23, 42, 0.35), 0 0 45px rgba(255, 107, 0, 0.25);
}

.g-brands-banner-img-wrap {
	position: relative;
	width: 100%;
	border-radius: 18px;
	overflow: hidden;
	background: #ffffff;
}

.g-brands-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 18px;
	filter: contrast(1.05);
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-brands-banner-card:hover .g-brands-img {
	transform: scale(1.02);
}

.g-brands-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 60%, rgba(15, 23, 42, 0.15) 100%);
	pointer-events: none;
}

/* Brands Metrics Row */
.g-brands-metrics-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 14px;
}

.g-brand-metric {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	color: #ffffff;
	transition: background 0.3s ease, border-color 0.3s ease;
}

.g-brand-metric:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 107, 0, 0.4);
}

.g-brand-metric .metric-icon {
	font-size: 24px;
	flex-shrink: 0;
}

.g-brand-metric strong {
	display: block;
	font-size: 1.05rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
}

.g-brand-metric span {
	display: block;
	font-size: 0.8rem;
	color: #94a3b8;
	line-height: 1.2;
	margin-top: 2px;
}

@media (max-width: 768px) {
	.g-brands-metrics-row {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

/* ==========================================================================
   Section 7: Interactive Cooperation Steps Timeline & 3D Stage
   ========================================================================== */
.g-steps-showcase-section {
	background: #f8fafc;
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

.g-steps-two-col {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: stretch;
}

/* Timeline Left (Compact) */
.g-steps-timeline-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-left: 8px;
	justify-content: space-between;
	height: 100%;
}

.g-steps-timeline-bar {
	position: absolute;
	left: 27px;
	top: 24px;
	bottom: 24px;
	width: 3px;
	background: linear-gradient(180deg, #ff6b00 0%, #0ea5e9 50%, #10b981 100%);
	border-radius: 3px;
	z-index: 1;
}

.g-step-timeline-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	z-index: 2;
}

.g-step-dot {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #ffffff;
	border: 2px solid #ff6b00;
	box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.12), 0 3px 8px rgba(15, 23, 42, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 0.92rem;
	color: #ff6b00;
	flex-shrink: 0;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-step-timeline-item:hover .g-step-dot {
	background: #ff6b00;
	color: #ffffff;
	transform: scale(1.15);
	box-shadow: 0 0 0 7px rgba(255, 107, 0, 0.3), 0 6px 16px rgba(255, 107, 0, 0.4);
}

.g-step-timeline-item .g-step-card {
	flex-grow: 1;
	padding: 12px 18px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	box-shadow: 0 3px 12px -3px rgba(15, 23, 42, 0.04);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: default;
}

.g-step-timeline-item:hover .g-step-card {
	transform: translateX(6px);
	background: #ffffff;
	border-color: rgba(255, 107, 0, 0.4);
	box-shadow: 0 10px 24px -6px rgba(255, 107, 0, 0.2);
}

.g-step-title {
	font-size: 0.98rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 2px;
	line-height: 1.25;
}

.g-step-text {
	font-size: 0.84rem;
	color: #64748b;
	line-height: 1.38;
	margin: 0;
}

/* 3D Visual Right (Taller and Perfectly Equalized) */
.g-steps-visual-col {
	position: relative;
	height: 100%;
	display: flex;
}

.g-steps-visual-sticky {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.g-steps-photo-composition {
	position: relative;
	width: 100%;
	flex-grow: 1;
	min-height: 380px;
	border-radius: 26px;
	background: #0f172a;
	padding: 12px;
	border: 1px solid rgba(255, 107, 0, 0.35);
	box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.3), 0 0 35px rgba(255, 107, 0, 0.15);
	transform-style: preserve-3d;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
	display: flex;
	flex-direction: column;
}

.g-steps-photo-composition:hover {
	box-shadow: 0 35px 80px -20px rgba(15, 23, 42, 0.4), 0 0 45px rgba(255, 107, 0, 0.25);
}

.g-photo-card.main-photo {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 360px;
	flex-grow: 1;
	border-radius: 18px;
	overflow: hidden;
}

.g-photo-card.main-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 18px;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-steps-photo-composition:hover .main-photo img {
	transform: scale(1.03);
}

.photo-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 10px;
}

.g-photo-card.floating-sub-photo {
	position: absolute;
	right: -15px;
	bottom: -20px;
	width: 58%;
	height: 185px;
	border-radius: 16px;
	overflow: hidden;
	border: 4px solid #0f172a;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
	z-index: 4;
	transform: translateZ(35px);
}

.g-photo-card.floating-sub-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.floating-badge {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(255, 107, 0, 0.9);
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 800;
	padding: 4px 8px;
	border-radius: 6px;
}

/* Floating chips on steps */
.chip-step-1 {
	top: -12px;
	right: 20px;
	border-color: rgba(14, 165, 233, 0.5);
	box-shadow: 0 10px 25px rgba(14, 165, 233, 0.2);
}

.chip-step-2 {
	bottom: 30px;
	left: -15px;
	border-color: rgba(255, 107, 0, 0.5);
	box-shadow: 0 10px 25px rgba(255, 107, 0, 0.2);
}

.chip-step-3 {
	top: 130px;
	left: -20px;
	border-color: rgba(16, 185, 129, 0.5);
}

.g-steps-cta-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 16px 22px;
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.06);
	margin-top: 16px;
}

.g-steps-cta-card strong {
	display: block;
	font-size: 0.98rem;
	font-weight: 800;
	color: #0f172a;
}

.g-steps-cta-card span {
	display: block;
	font-size: 0.82rem;
	color: #64748b;
	margin-top: 2px;
}

@media (max-width: 900px) {
	.g-steps-two-col {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.g-steps-visual-sticky {
		position: static;
	}

	.g-photo-card.floating-sub-photo {
		position: static;
		width: 100%;
		height: 200px;
		margin-top: 15px;
	}
}

/* ==========================================================================
   Section 10 + 11: Video Showcase (Dark Cinema & Live Ambient Canvas)
   ========================================================================== */
.g-video-section {
	background: #090e17;
	position: relative;
	overflow: hidden;
	padding: 95px 0 105px;
}

.g-video-ambient-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	opacity: 0.85;
}

.g-video-ambient-aura {
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 500px;
	background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.14) 0%, rgba(56, 189, 248, 0.05) 50%, transparent 70%);
	filter: blur(70px);
	pointer-events: none;
	animation: videoAuraBreathe 8s ease-in-out infinite alternate;
}

@keyframes videoAuraBreathe {
	0% { transform: translateX(-50%) scale(0.9); opacity: 0.6; }
	100% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.g-video-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	position: relative;
	z-index: 2;
	margin-top: 35px;
}

.g-video-showcase-card {
	background: rgba(15, 23, 42, 0.78);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 0, 0.1);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
}

.g-video-showcase-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 107, 0, 0.5);
	box-shadow: 0 25px 50px -10px rgba(255, 107, 0, 0.22), 0 0 25px rgba(255, 107, 0, 0.2);
}

.g-video-player-wrap {
	position: relative;
	width: 100%;
	height: 235px;
	background: #020617;
	overflow: hidden;
}

.g-native-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: #020617;
}

.g-video-player-wrap.is-playing .g-video-custom-play,
.g-video-player-wrap.is-playing .g-video-top-badges {
	opacity: 0;
	pointer-events: none;
}

.g-video-custom-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 6;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff6b00 0%, #ff8a00 100%);
	color: #ffffff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(255, 107, 0, 0.55);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, opacity 0.3s ease;
}

.g-video-custom-play .play-triangle {
	font-size: 1.4rem;
	margin-left: 3px;
	line-height: 1;
}

.g-video-custom-play .play-pulse-ring {
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 2px solid rgba(255, 107, 0, 0.6);
	animation: playPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes playPulse {
	0% { transform: scale(1); opacity: 0.8; }
	100% { transform: scale(1.4); opacity: 0; }
}

.g-video-custom-play:hover {
	transform: translate(-50%, -50%) scale(1.12);
	box-shadow: 0 15px 40px rgba(255, 107, 0, 0.75);
}

.g-video-top-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	z-index: 5;
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.v-badge-duration {
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.v-badge-quality {
	background: rgba(255, 107, 0, 0.88);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 16px;
	box-shadow: 0 2px 10px rgba(255, 107, 0, 0.4);
}

.g-video-card-body {
	padding: 22px 24px 26px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	background: rgba(15, 23, 42, 0.6);
}

.g-video-card-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.75rem;
	font-weight: 700;
}

.v-cat-tag {
	color: #ff8a00;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.v-status-tag {
	color: #10b981;
}

.g-video-card-title {
	font-size: 1.15rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.35;
	margin: 0;
	transition: color 0.2s ease;
}

.g-video-showcase-card:hover .g-video-card-title {
	color: #ff8a00;
}

.g-video-card-desc {
	font-size: 0.88rem;
	color: #94a3b8;
	line-height: 1.5;
	margin: 0;
}

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

@media (max-width: 640px) {
	.g-video-grid {
		grid-template-columns: 1fr;
	}
}

/* Water Grid */
.g-water-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.g-water-col {
	background: #ffffff;
	border-radius: var(--g-radius);
	padding: 30px;
	border: 1px solid #e2e8f0;
	box-shadow: var(--g-shadow-sm);
}

.g-water-col-title {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--g-text-dark);
	border-bottom: 2px solid var(--g-primary);
	padding-bottom: 12px;
	margin-bottom: 20px;
}

.g-links-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.g-links-list li {
	margin-bottom: 12px;
}

.g-links-list a {
	color: #334155;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.2s ease, transform 0.2s ease;
}

.g-links-list a::before {
	content: "\2022";
	color: var(--g-primary);
	font-size: 1.2rem;
}

.g-links-list a:hover {
	color: var(--g-primary);
	transform: translateX(4px);
}

/* Accent Banner */
.g-bg-accent-banner {
	background: linear-gradient(135deg, #ff8c00, #ff6000);
	color: #ffffff;
	padding: 60px 0;
}

.g-banner-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.g-banner-title {
	font-size: 1.8rem;
	font-weight: 800;
	margin: 0 0 10px 0;
	color: #ffffff;
}

.g-banner-sub {
	font-size: 1.1rem;
	margin: 0;
	opacity: 0.95;
}

.g-banner-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	flex-shrink: 0;
}

/* ==========================================================================
   Section 15: Apple 3D Interactive Trust & Testimonials
   ========================================================================== */
.g-testimonials-section {
	background: #f8fafc;
	padding: 95px 0 105px;
	position: relative;
}

.g-trust-metrics-bar {
	display: flex;
	align-items: center;
	justify-content: space-around;
	background: #ffffff;
	border-radius: 20px;
	padding: 24px 35px;
	margin-bottom: 45px;
	box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(15, 23, 42, 0.06);
	flex-wrap: wrap;
	gap: 20px;
}

.g-trust-metric-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4px;
}

.g-trust-metric-item .metric-value-wrap {
	display: flex;
	align-items: center;
	gap: 4px;
}

.g-trust-metric-item .metric-val {
	font-size: 2rem;
	font-weight: 900;
	color: #0f172a;
	line-height: 1;
	letter-spacing: -0.5px;
}

.g-trust-metric-item .metric-star {
	color: #ff8a00;
	font-size: 1.6rem;
	line-height: 1;
}

.g-trust-metric-item .metric-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: #64748b;
}

.g-trust-metric-divider {
	width: 1px;
	height: 40px;
	background: #e2e8f0;
}

.g-testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.g-testi-3d-card {
	background: #ffffff;
	border-radius: 22px;
	padding: 32px 28px 24px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(15, 23, 42, 0.02);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.g-testi-3d-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 107, 0, 0.4);
	box-shadow: 0 20px 40px -10px rgba(255, 107, 0, 0.15), 0 0 0 1px rgba(255, 107, 0, 0.2);
}

.g-testi-watermark {
	position: absolute;
	top: 15px;
	right: 22px;
	font-size: 5.5rem;
	font-family: Georgia, serif;
	line-height: 1;
	color: rgba(255, 107, 0, 0.08);
	pointer-events: none;
	user-select: none;
}

.g-testi-top-row {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
	position: relative;
	z-index: 2;
}

.g-testi-avatar-wrap {
	position: relative;
	width: 56px;
	height: 56px;
	flex-shrink: 0;
}

.g-testi-avatar {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #ff8a00;
	box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

.avatar-verified {
	position: absolute;
	bottom: -2px;
	right: -2px;
	width: 20px;
	height: 20px;
	background: #10b981;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	font-weight: 900;
	border: 2px solid #ffffff;
}

.g-testi-info {
	display: flex;
	flex-direction: column;
}

.g-testi-name {
	font-size: 1.1rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 3px;
}

.g-testi-role {
	font-size: 0.8rem;
	font-weight: 600;
	color: #64748b;
	line-height: 1.3;
}

.g-testi-project-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff7ed;
	border: 1px solid #ffedd5;
	color: #c2410c;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 12px;
	margin-bottom: 14px;
	width: fit-content;
}

.g-testi-stars {
	color: #ff8a00;
	font-size: 1.05rem;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.g-testi-stars .stars-val {
	font-size: 0.85rem;
	font-weight: 800;
	color: #0f172a;
	margin-left: 6px;
}

.g-testi-body {
	flex: 1;
	margin-bottom: 20px;
}

.g-testi-body p {
	color: #334155;
	font-size: 0.92rem;
	line-height: 1.6;
	margin: 0;
	font-style: normal;
}

.g-testi-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #f1f5f9;
	padding-top: 14px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #94a3b8;
}

.g-testi-check {
	color: #10b981;
}

@media (max-width: 1024px) {
	.g-testi-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.g-trust-metric-divider {
		display: none;
	}
}

@media (max-width: 640px) {
	.g-testi-grid {
		grid-template-columns: 1fr;
	}
	.g-trust-metrics-bar {
		padding: 20px;
	}
}

/* ==========================================================================
   Section: Guarantee & Expert CTA (Apple Dark Glassmorphism)
   ========================================================================== */
.g-guarantee-section {
	background: #090e17;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	padding: 95px 0 100px;
}

.g-guarantee-ambient-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 900px;
	height: 500px;
	background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.16) 0%, rgba(56, 189, 248, 0.06) 45%, transparent 70%);
	filter: blur(80px);
	pointer-events: none;
	animation: videoAuraBreathe 9s ease-in-out infinite alternate;
}

.g-guarantee-box {
	max-width: 980px;
	margin: 0 auto;
	background: rgba(15, 23, 42, 0.82);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-radius: 28px;
	padding: 55px 45px 50px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 107, 0, 0.15);
	position: relative;
	text-align: center;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.g-guarantee-box:hover {
	border-color: rgba(255, 107, 0, 0.5);
	box-shadow: 0 30px 70px -15px rgba(255, 107, 0, 0.25), 0 0 35px rgba(255, 107, 0, 0.2);
}

.g-guarantee-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 107, 0, 0.12);
	border: 1px solid rgba(255, 107, 0, 0.35);
	color: #ff8a00;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.g-guarantee-title {
	font-size: 2.2rem;
	font-weight: 900;
	color: #ffffff;
	line-height: 1.25;
	margin: 0 0 18px;
	letter-spacing: -0.5px;
}

.g-guarantee-text {
	font-size: 1.12rem;
	line-height: 1.7;
	color: #cbd5e1;
	max-width: 820px;
	margin: 0 auto 30px;
}

.g-guarantee-features {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.g-guar-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #e2e8f0;
	font-size: 0.85rem;
	font-weight: 700;
	padding: 8px 18px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.g-guar-chip:hover {
	background: rgba(255, 107, 0, 0.15);
	border-color: rgba(255, 107, 0, 0.4);
	transform: translateY(-2px);
}

.g-btn-expert {
	font-size: 1.15rem;
	padding: 16px 36px;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
}

/* ==========================================================================
   Section 16: Knowledge Base & Articles Grid (Apple 3D Cards + Ambient Canvas)
   ========================================================================== */
.g-articles-section {
	background: #f8fafc;
	position: relative;
	overflow: hidden;
	padding: 100px 0 110px;
}

.g-articles-ambient-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	opacity: 0.85;
}

.g-articles-ambient-aura {
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	width: 850px;
	height: 500px;
	background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.09) 0%, rgba(56, 189, 248, 0.05) 50%, transparent 70%);
	filter: blur(75px);
	pointer-events: none;
	z-index: 1;
	animation: videoAuraBreathe 10s ease-in-out infinite alternate;
}

.g-article-card {
	background: #ffffff;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(15, 23, 42, 0.02);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
}

.g-article-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 107, 0, 0.45);
	box-shadow: 0 22px 45px -10px rgba(255, 107, 0, 0.18), 0 0 0 1px rgba(255, 107, 0, 0.2);
}

.g-card-img-link {
	display: block;
	position: relative;
	width: 100%;
	height: 185px;
	overflow: hidden;
	background: #0f172a;
}

.g-card-img-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-article-card:hover .g-card-img-link img {
	transform: scale(1.08);
}

.g-art-cat-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(15, 23, 42, 0.82);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 4px 11px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	z-index: 2;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.g-article-card .g-card-body {
	padding: 20px 22px 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	gap: 12px;
}

.g-art-meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.75rem;
	font-weight: 600;
}

.g-art-read-time {
	color: #64748b;
}

.g-art-check {
	color: #10b981;
	font-weight: 700;
}

.g-article-card .g-card-title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.45;
	margin: 0;
}

.g-article-card .g-card-title a {
	color: #0f172a;
	text-decoration: none;
	transition: color 0.2s ease;
}

.g-article-card:hover .g-card-title a {
	color: #ff6b00;
}

.g-article-card .g-card-link {
	color: #ff6b00;
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: transform 0.2s ease;
	margin-top: auto;
}

.g-article-card .link-arrow {
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-article-card:hover .link-arrow {
	transform: translateX(5px);
}

/* Responsiveness */
@media (max-width: 1024px) {
	.g-cards-4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.g-cards-3 {
		grid-template-columns: repeat(2, 1fr);
	}
	.g-steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.g-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.g-water-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.g-hero-grid,
	.g-two-col-grid,
	.g-banner-flex {
		grid-template-columns: 1fr;
		flex-direction: column;
		text-align: center;
	}
	.g-hero-title {
		font-size: 2rem;
	}
	.g-section-title {
		font-size: 1.8rem;
	}
	.g-cards-3,
	.g-cards-4,
	.g-steps-grid,
	.g-gallery-grid {
		grid-template-columns: 1fr;
	}
	.g-hero-actions,
	.g-banner-buttons {
		justify-content: center;
	}
	.g-feat-item {
		justify-content: center;
	}
	.g-check-list li {
		text-align: left;
	}
}

/* Footer Styling */
.site-footer {
	background: #090d16;
	color: #94a3b8;
	padding: 40px 0 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gidrona-footer-info {
	text-align: center;
	font-size: 0.95rem;
	line-height: 1.8;
}

.gidrona-footer-info p.copyright {
	color: #e2e8f0;
	font-weight: 500;
	margin-bottom: 8px;
}

.gidrona-footer-info .footer-legal-links a {
	color: #94a3b8;
	text-decoration: none;
	margin: 0 4px;
	transition: color 0.2s ease;
}

.gidrona-footer-info .footer-legal-links a:hover {
	color: #ff7a00;
}


/**
 * Global Premium Footer Styles for РћРћРћ В«Р“РёРґСЂРѕРЅР°В»
 * Designed according to Apple HIG & Emil Kowalski Design Engineering principles.
 */

:root {
  --g-footer-bg: #07090E;
  --g-footer-surface: #0E131F;
  --g-footer-surface-hover: #141B2D;
  --g-footer-border: rgba(255, 255, 255, 0.07);
  --g-footer-border-hover: rgba(255, 107, 0, 0.35);
  --g-footer-text-primary: #F8FAFC;
  --g-footer-text-secondary: #94A3B8;
  --g-footer-text-muted: #64748B;
  --g-footer-accent: #FF6B00;
  --g-footer-accent-hover: #FF8A00;
  --g-footer-accent-glow: rgba(255, 107, 0, 0.25);
  --g-footer-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --g-footer-radius: 16px;
  --g-footer-radius-sm: 10px;
  --g-footer-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Main Footer Wrapper
   ========================================================================== */
.gidrona-global-footer {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--g-footer-bg);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 107, 0, 0.08), transparent 70%),
    radial-gradient(ellipse 60% 40% at 85% 100%, rgba(30, 58, 138, 0.12), transparent 70%);
  color: var(--g-footer-text-secondary);
  font-family: var(--g-footer-font);
  font-size: 15px;
  line-height: 1.6;
  border-top: 1px solid var(--g-footer-border);
  overflow: hidden;
  z-index: 10;
}

/* Top Glow Hairline */
.gidrona-global-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 107, 0, 0.2) 20%, 
    rgba(255, 107, 0, 0.8) 50%, 
    rgba(255, 107, 0, 0.2) 80%, 
    transparent 100%);
  z-index: 2;
}

.gidrona-footer-container {
  max-width: 1240px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}

/* ==========================================================================
   Main 4-Column Grid
   ========================================================================== */
.gidrona-footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.25fr;
  gap: 40px;
  padding: 64px 0 48px;
  position: relative;
  z-index: 2;
}

.gidrona-footer-col {
  display: flex;
  flex-direction: column;
}

/* Column Headings */
.gidrona-footer-title {
  color: var(--g-footer-text-primary);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 12px;
}

.gidrona-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--g-footer-accent);
  border-radius: 2px;
  transition: width 0.3s var(--g-footer-ease);
}

.gidrona-footer-col:hover .gidrona-footer-title::after {
  width: 48px;
}

/* ==========================================================================
   Column 1: Brand & Badges
   ========================================================================== */
.gidrona-footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
  transition: transform 0.3s var(--g-footer-ease), filter 0.3s ease;
}

.gidrona-footer-logo-link:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 16px var(--g-footer-accent-glow));
}

.gidrona-footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.gidrona-footer-desc {
  color: var(--g-footer-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Trust Badges Grid */
.gidrona-trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.gidrona-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--g-footer-surface);
  border: 1px solid var(--g-footer-border);
  padding: 8px 12px;
  border-radius: var(--g-footer-radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: #CBD5E1;
  transition: all 0.25s var(--g-footer-ease);
}

.gidrona-trust-badge:hover {
  background: var(--g-footer-surface-hover);
  border-color: var(--g-footer-border-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.gidrona-trust-badge .badge-icon {
  font-size: 15px;
  flex-shrink: 0;
}

/* ==========================================================================
   Columns 2 & 3: Navigation Links
   ========================================================================== */
.gidrona-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gidrona-footer-link {
  color: var(--g-footer-text-secondary);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, transform 0.25s var(--g-footer-ease);
  position: relative;
  padding: 3px 0;
}

.gidrona-footer-link::before {
  content: '\203A';
  color: var(--g-footer-accent);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.25s var(--g-footer-ease);
}

.gidrona-footer-link:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.gidrona-footer-link:hover::before {
  opacity: 1;
  transform: translateX(2px);
}

/* Badge on promo links */
.gidrona-link-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 107, 0, 0.15);
  color: var(--g-footer-accent-hover);
  border: 1px solid rgba(255, 107, 0, 0.3);
  margin-left: 4px;
}

/* ==========================================================================
   Column 4: Contact & Action Card
   ========================================================================== */
.gidrona-contact-card {
  background: var(--g-footer-surface);
  border: 1px solid var(--g-footer-border);
  border-radius: var(--g-footer-radius);
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: border-color 0.3s var(--g-footer-ease), box-shadow 0.3s ease;
}

.gidrona-contact-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 20px var(--g-footer-accent-glow);
}

.gidrona-contact-lead {
  font-size: 13.5px;
  color: var(--g-footer-text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Primary Phone CTA Button */
.gidrona-footer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--g-footer-accent) 0%, #FF8A00 100%);
  color: #FFFFFF !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 20px;
  border-radius: var(--g-footer-radius-sm);
  box-shadow: 0 4px 20px var(--g-footer-accent-glow);
  transition: all 0.25s var(--g-footer-ease);
  position: relative;
  overflow: hidden;
}

.gidrona-footer-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.gidrona-footer-cta-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.45);
}

.gidrona-footer-cta-btn:hover::before {
  left: 100%;
}

.gidrona-footer-cta-btn:active {
  transform: translateY(0) scale(0.98);
}

.gidrona-footer-cta-btn .cta-icon {
  font-size: 18px;
  display: inline-block;
  animation: pulse-ring 2.5s infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15) rotate(8deg); }
}

/* Direct Contacts List */
.gidrona-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13.5px;
}

.gidrona-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--g-footer-text-secondary);
}

.gidrona-contact-row .c-icon {
  font-size: 15px;
  color: var(--g-footer-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.gidrona-contact-row a {
  color: var(--g-footer-text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.gidrona-contact-row a:hover {
  color: var(--g-footer-accent-hover);
}

.gidrona-contact-sub {
  font-size: 12px;
  color: var(--g-footer-text-muted);
  margin-top: 2px;
}

/* ==========================================================================
   Bottom Copyright & Legal Bar
   ========================================================================== */
.gidrona-footer-bottom {
  border-top: 1px solid var(--g-footer-border);
  padding: 24px 0;
  background: rgba(5, 7, 12, 0.7);
  position: relative;
  z-index: 2;
}

.gidrona-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.gidrona-copyright {
  font-size: 13px;
  color: var(--g-footer-text-muted);
  margin: 0;
}

.gidrona-footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gidrona-legal-link {
  color: var(--g-footer-text-muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gidrona-legal-link:hover {
  color: var(--g-footer-text-primary);
}

.gidrona-security-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

/* ==========================================================================
   Back To Top Floating Button
   ========================================================================== */
.gidrona-back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: rgba(14, 19, 31, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px var(--g-footer-accent-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: all 0.35s var(--g-footer-ease);
  z-index: 99;
}

.gidrona-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.gidrona-back-to-top:hover {
  background: var(--g-footer-accent);
  border-color: var(--g-footer-accent-hover);
  color: #FFFFFF;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.gidrona-back-to-top:active {
  transform: translateY(0) scale(0.95);
}

/* ==========================================================================
   Mobile & Tablet Responsiveness
   ========================================================================== */
@media (max-width: 1024px) {
  .gidrona-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    padding: 48px 0 36px;
  }
}

@media (max-width: 767px) {
  .gidrona-footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 0 28px;
  }

  .gidrona-footer-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .gidrona-trust-badges {
    grid-template-columns: 1fr;
  }

  .gidrona-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .gidrona-footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .gidrona-contact-card {
    padding: 20px;
  }

  .gidrona-footer-cta-btn {
    padding: 14px;
    font-size: 15px;
  }

  .gidrona-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

