/* ==========================================================================
   NexContainer Pro - Modern Industrial Design System & Core Styles
   ========================================================================== */

:root {
	/* Industrial Color Palette */
	--color-bg-deep: #0b1120;
	--color-bg-card: #0f172a;
	--color-bg-card-hover: #1e293b;
	--color-surface: #1e293b;
	--color-surface-light: #f8fafc;
	--color-border: #334155;
	--color-border-light: #e2e8f0;

	/* Accent & Safety Visibility */
	--color-accent: #f59e0b;        /* Safety Amber */
	--color-accent-hover: #d97706;
	--color-accent-rgb: 245, 158, 11;
	--color-secondary: #0284c7;     /* Maritime Port Cyan */
	--color-secondary-hover: #0369a1;
	--color-success: #10b981;
	--color-danger: #ef4444;

	/* Typography */
	--color-text-main: #f8fafc;
	--color-text-muted: #94a3b8;
	--color-text-dark: #0f172a;
	--color-text-dark-muted: #64748b;

	--font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-mono: 'Space Grotesk', ui-monospace, SFMono-Regular, monospace;

	/* Layout & Shadows */
	--container-max: 1280px;
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 12px -1px rgba(0, 0, 0, 0.2);
	--shadow-lg: 0 12px 30px -4px rgba(0, 0, 0, 0.4);
	--shadow-glow: 0 0 25px rgba(245, 158, 11, 0.25);

	--transition-base: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text-main);
	background-color: var(--color-bg-deep);
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-base);
}

img, svg {
	display: block;
	max-width: 100%;
}

button, input, select, textarea {
	font: inherit;
}

/* Container Utility */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

/* Screen Reader */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: #ffffff;
	font-weight: 700;
	line-height: 1.2;
}

.section-header {
	margin-bottom: 3.5rem;
}

.section-header.text-center {
	text-align: center;
}

.badge-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.85rem;
	background: rgba(245, 158, 11, 0.12);
	border: 1px solid rgba(245, 158, 11, 0.3);
	color: var(--color-accent);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-radius: 9999px;
	margin-bottom: 1rem;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.section-subtitle {
	color: var(--color-text-muted);
	font-size: 1.125rem;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.gradient-text {
	background: linear-gradient(135deg, #ffffff 30%, var(--color-accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: block;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.75rem 1.4rem;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.95rem;
	border-radius: var(--radius-sm);
	cursor: pointer;
	border: 1px solid transparent;
	transition: var(--transition-base);
}

.btn-primary {
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: #0b1120;
	border-color: #f59e0b;
	box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-outline {
	background: rgba(30, 41, 59, 0.6);
	color: #ffffff;
	border: 1px solid var(--color-border);
	backdrop-filter: blur(8px);
}

.btn-outline:hover {
	background: var(--color-surface);
	border-color: var(--color-accent);
	color: var(--color-accent);
	transform: translateY(-2px);
}

.btn-large {
	padding: 0.95rem 1.85rem;
	font-size: 1.05rem;
}

.btn-block {
	width: 100%;
}

/* ==========================================================================
   Header & Top Utility Bar
   ========================================================================== */
.top-utility-bar {
	background: #070b14;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	font-size: 0.825rem;
	color: var(--color-text-muted);
	padding: 0.5rem 0;
}

.top-utility-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.top-announcement {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--color-accent);
	box-shadow: 0 0 8px var(--color-accent);
	flex-shrink: 0;
}

.top-actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-shrink: 0;
}

.depot-status {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: #38bdf8;
}

.phone-hotline a {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: #ffffff;
}

.phone-hotline a:hover {
	color: var(--color-accent);
}

/* Multilingual Switcher Dropdown */
.lang-dropdown {
	position: relative;
}

.lang-btn {
	background: rgba(30, 41, 59, 0.7);
	border: 1px solid var(--color-border);
	color: #ffffff;
	padding: 0.25rem 0.55rem;
	border-radius: 4px;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	cursor: pointer;
	font-size: 0.8rem;
}

.lang-btn:hover {
	border-color: var(--color-accent);
}

.lang-menu {
	display: none;
	position: absolute;
	right: 0;
	top: 100%;
	margin-top: 0.35rem;
	background: #0f172a;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
	list-style: none;
	min-width: 140px;
	z-index: 100;
	overflow: hidden;
}

.lang-dropdown.open .lang-menu {
	display: block;
}

.lang-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.5rem 0.85rem;
	font-size: 0.825rem;
	color: var(--color-text-main);
}

.lang-item:hover, .lang-item.active {
	background: var(--color-surface);
	color: var(--color-accent);
}

/* Main Site Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 99;
	background: rgba(11, 17, 32, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 0.9rem 0;
	transition: var(--transition-base);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Logo */
.logo-box {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.brand-text-group {
	display: flex;
	flex-direction: column;
}

.brand-title {
	font-family: var(--font-heading);
	font-size: 1.45rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #ffffff;
}

.brand-title strong {
	color: var(--color-accent);
}

.brand-tagline {
	font-size: 0.65rem;
	letter-spacing: 0.14em;
	color: var(--color-text-muted);
	font-weight: 600;
}

/* Navigation Menu */
.main-navigation .nav-menu {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 1.75rem;
}

.main-navigation .nav-menu > li {
	position: relative;
}

.main-navigation .nav-menu > li > a {
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 600;
	color: #cbd5e1;
	padding: 0.5rem 0;
	position: relative;
}

.main-navigation .nav-menu > li > a:hover,
.main-navigation .nav-menu > li.current-menu-item > a {
	color: var(--color-accent);
}

.main-navigation .nav-menu > li > a.highlight-link {
	color: var(--color-accent);
}

/* Dropdown / Sub Menu */
.main-navigation .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #0f172a;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-lg);
	border-radius: var(--radius-sm);
	list-style: none;
	min-width: 220px;
	padding: 0.5rem 0;
	z-index: 100;
}

.main-navigation .menu-item-has-children:hover > .sub-menu {
	display: block;
}

.main-navigation .sub-menu li a {
	display: block;
	padding: 0.55rem 1.25rem;
	font-size: 0.875rem;
	color: #cbd5e1;
}

.main-navigation .sub-menu li a:hover {
	background: var(--color-surface);
	color: var(--color-accent);
	padding-left: 1.5rem;
}

/* Header CTAs */
.header-cta-group {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.btn-quote-trigger {
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: #0b1120;
	font-weight: 700;
	padding: 0.65rem 1.25rem;
	border-radius: var(--radius-sm);
	box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-quote-trigger:hover {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	transform: translateY(-2px);
}

/* Mobile Hamburger */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 28px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

.mobile-menu-toggle .bar {
	height: 2px;
	width: 100%;
	background-color: #ffffff;
	border-radius: 2px;
	transition: var(--transition-base);
}

/* Mobile Drawer */
.mobile-nav-drawer {
	position: fixed;
	top: 0;
	right: -320px;
	width: 300px;
	height: 100vh;
	background: #0f172a;
	border-left: 1px solid var(--color-border);
	box-shadow: var(--shadow-lg);
	z-index: 1000;
	transition: right 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
}

.mobile-nav-drawer.active {
	right: 0;
}

.mobile-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--color-border);
}

.drawer-title {
	font-family: var(--font-heading);
	font-weight: 700;
	color: #ffffff;
}

.drawer-close {
	background: transparent;
	border: none;
	color: var(--color-text-muted);
	font-size: 1.8rem;
	cursor: pointer;
}

.mobile-drawer-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
}

.mobile-menu-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.mobile-menu-list a {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 600;
	color: #cbd5e1;
	display: block;
}

.mobile-menu-list a:hover {
	color: var(--color-accent);
}

.mobile-drawer-footer {
	border-top: 1px solid var(--color-border);
	padding-top: 1.5rem;
}

.mobile-hotline {
	margin-bottom: 1rem;
}

.mobile-hotline .label {
	display: block;
	font-size: 0.8rem;
	color: var(--color-text-muted);
}

.mobile-hotline a {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-accent);
}

.mobile-nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	z-index: 999;
}

.mobile-nav-overlay.active {
	display: block;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
	position: relative;
	padding: 5rem 0 6rem;
	background: radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
	            radial-gradient(circle at 20% 80%, rgba(2, 132, 199, 0.08) 0%, transparent 50%),
	            #0b1120;
	overflow: hidden;
}

.hero-bg-grid {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 32px 32px;
	opacity: 0.5;
	pointer-events: none;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 3.5rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.4rem 0.9rem;
	background: rgba(30, 41, 59, 0.7);
	border: 1px solid var(--color-border);
	border-radius: 9999px;
	font-size: 0.825rem;
	font-weight: 600;
	color: #38bdf8;
	margin-bottom: 1.5rem;
}

.live-pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #38bdf8;
	box-shadow: 0 0 10px #38bdf8;
}

.hero-title {
	font-size: 3.25rem;
	line-height: 1.12;
	letter-spacing: -0.03em;
	margin-bottom: 1.5rem;
}

.hero-lead {
	font-size: 1.15rem;
	color: var(--color-text-muted);
	margin-bottom: 2rem;
	max-width: 580px;
}

.hero-size-chips {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 2.25rem;
}

.chips-label {
	font-size: 0.825rem;
	font-weight: 600;
	color: var(--color-text-muted);
	margin-right: 0.5rem;
}

.hero-size-chips .chip {
	padding: 0.35rem 0.85rem;
	background: rgba(30, 41, 59, 0.7);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: 0.85rem;
	font-weight: 600;
	color: #cbd5e1;
}

.hero-size-chips .chip:hover,
.hero-size-chips .chip.active {
	background: rgba(245, 158, 11, 0.15);
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 3rem;
}

.hero-metrics {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-item strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.5rem;
	color: #ffffff;
	line-height: 1.1;
}

.metric-item span {
	font-size: 0.8rem;
	color: var(--color-text-muted);
}

.metric-sep {
	width: 1px;
	height: 32px;
	background: rgba(255, 255, 255, 0.1);
}

/* Hero Showcase Card */
.showcase-card {
	background: #0f172a;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.4);
	overflow: hidden;
	transition: var(--transition-base);
}

.showcase-card:hover {
	border-color: rgba(245, 158, 11, 0.5);
	box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.showcase-top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	background: #1e293b;
	border-bottom: 1px solid var(--color-border);
}

.iso-spec-tag {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 700;
	background: #0b1120;
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	color: var(--color-accent);
	border: 1px solid rgba(245, 158, 11, 0.3);
}

.stock-status {
	font-size: 0.8rem;
	font-weight: 600;
}

.stock-status.in-stock {
	color: #10b981;
}

.showcase-visual-container {
	padding: 1.5rem;
}

.isometric-container-art {
	width: 100%;
	margin-bottom: 1.25rem;
}

.showcase-spec-quickgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem;
	background: #0b1120;
	padding: 0.85rem;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-spec {
	text-align: center;
}

.quick-spec .q-label {
	display: block;
	font-size: 0.7rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
}

.quick-spec .q-val {
	font-size: 0.85rem;
	font-weight: 700;
	color: #ffffff;
}

.showcase-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	background: #141f36;
	border-top: 1px solid var(--color-border);
}

.showcase-pricing .from-text {
	display: block;
	font-size: 0.75rem;
	color: var(--color-text-muted);
}

.price-figures {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

.big-price {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	font-weight: 800;
	color: #ffffff;
}

.rent-option {
	font-size: 0.8rem;
	color: var(--color-accent);
	font-weight: 600;
}

/* ==========================================================================
   Catalog Section & Grid
   ========================================================================== */
.section-catalog {
	padding: 6rem 0;
	background: #070b14;
	position: relative;
}

.catalog-filters-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 3rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-tabs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tab-btn {
	background: #0f172a;
	border: 1px solid var(--color-border);
	color: #cbd5e1;
	padding: 0.55rem 1.15rem;
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition-base);
}

.tab-btn:hover,
.tab-btn.active {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #0b1120;
}

.catalog-search-wrap input {
	background: #0f172a;
	border: 1px solid var(--color-border);
	color: #ffffff;
	padding: 0.55rem 1.25rem;
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
	width: 260px;
}

.catalog-search-wrap input:focus {
	outline: none;
	border-color: var(--color-accent);
}

.container-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	gap: 2rem;
}

.container-card {
	background: #0f172a;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: var(--transition-base);
	position: relative;
}

.container-card:hover {
	transform: translateY(-4px);
	border-color: rgba(245, 158, 11, 0.5);
	box-shadow: var(--shadow-lg);
}

.card-badge-strip {
	position: absolute;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
}

.badge-tag {
	font-size: 0.725rem;
	font-weight: 700;
	padding: 0.25rem 0.6rem;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.badge-tag.condition {
	background: rgba(15, 23, 42, 0.85);
	border: 1px solid var(--color-border);
	color: #ffffff;
	backdrop-filter: blur(4px);
}

.badge-tag.condition.highlight {
	background: rgba(2, 132, 199, 0.85);
	border-color: #0284c7;
	color: #ffffff;
}

.badge-tag.stock {
	background: rgba(16, 185, 129, 0.15);
	border: 1px solid rgba(16, 185, 129, 0.3);
	color: #10b981;
}

.card-media {
	background: #141f36;
	padding: 2.5rem 1.5rem 1.5rem;
	border-bottom: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-iso-svg {
	width: 100%;
	height: auto;
	max-height: 180px;
}

.card-body {
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.card-title {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.card-desc {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	margin-bottom: 1.25rem;
	flex-grow: 1;
}

.card-specs-matrix {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem 1rem;
	background: #0b1120;
	padding: 0.85rem;
	border-radius: var(--radius-sm);
	font-size: 0.825rem;
	margin-bottom: 1.25rem;
}

.cs-item {
	display: flex;
	justify-content: space-between;
}

.cs-k {
	color: var(--color-text-muted);
}

.cs-v {
	font-weight: 600;
	color: #ffffff;
}

.card-pricing-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	border-top: 1px solid var(--color-border);
}

.price-col .p-type {
	display: block;
	font-size: 0.75rem;
	color: var(--color-text-muted);
}

.price-col .p-val {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 800;
	color: #ffffff;
}

.price-col .p-val small {
	font-size: 0.8rem;
	color: var(--color-accent);
}

.card-footer {
	padding: 1.25rem 1.5rem;
	background: #0b1120;
	border-top: 1px solid var(--color-border);
}

/* ==========================================================================
   ISO Specifications Comparison Table
   ========================================================================== */
.section-specs {
	padding: 6rem 0;
	background: #0b1120;
}

.table-responsive-wrapper {
	width: 100%;
	overflow-x: auto;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
}

.specs-comparison-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	font-size: 0.925rem;
}

.specs-comparison-table th,
.specs-comparison-table td {
	padding: 1.15rem 1.25rem;
	border-bottom: 1px solid var(--color-border);
}

.specs-comparison-table thead th {
	background: #1e293b;
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 700;
	color: #ffffff;
}

.specs-comparison-table tbody tr:nth-child(even) {
	background: rgba(15, 23, 42, 0.5);
}

.specs-comparison-table tbody tr:hover {
	background: rgba(30, 41, 59, 0.4);
}

.specs-comparison-table th.highlight-th {
	background: #14223d;
	color: var(--color-accent);
	border-left: 1px solid rgba(245, 158, 11, 0.3);
	border-right: 1px solid rgba(245, 158, 11, 0.3);
}

.specs-comparison-table td.highlight-td {
	background: rgba(245, 158, 11, 0.05);
	font-weight: 600;
	color: #ffffff;
	border-left: 1px solid rgba(245, 158, 11, 0.2);
	border-right: 1px solid rgba(245, 158, 11, 0.2);
}

/* ==========================================================================
   Freight & Delivery Section
   ========================================================================== */
.section-freight {
	padding: 6rem 0;
	background: #070b14;
}

.freight-trucks-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.truck-card {
	background: #0f172a;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 2.25rem 2rem;
	transition: var(--transition-base);
}

.truck-card:hover {
	border-color: var(--color-accent);
	transform: translateY(-3px);
}

.truck-icon {
	margin-bottom: 1.5rem;
}

.truck-title {
	font-size: 1.35rem;
	margin-bottom: 0.4rem;
}

.truck-suit {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--color-accent);
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.truck-desc {
	font-size: 0.925rem;
	color: var(--color-text-muted);
	margin-bottom: 1.5rem;
}

.truck-checklist {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: #cbd5e1;
}

/* ==========================================================================
   Why Choose Us & Trust Badges
   ========================================================================== */
.section-why {
	padding: 6rem 0;
	background: #0b1120;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
}

.feature-box {
	background: #0f172a;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 2rem;
	transition: var(--transition-base);
}

.feature-box:hover {
	border-color: rgba(245, 158, 11, 0.4);
}

.f-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.f-title {
	font-size: 1.2rem;
	margin-bottom: 0.75rem;
}

.f-desc {
	font-size: 0.9rem;
	color: var(--color-text-muted);
}

/* ==========================================================================
   Call To Action Banner
   ========================================================================== */
.section-cta-banner {
	padding: 5rem 0;
	background: linear-gradient(135deg, #14223d 0%, #0b1120 100%);
	border-top: 1px solid rgba(245, 158, 11, 0.3);
	border-bottom: 1px solid rgba(245, 158, 11, 0.3);
}

.cta-banner-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
}

.cta-text h2 {
	font-size: 2.25rem;
	margin-bottom: 0.75rem;
}

.cta-text p {
	font-size: 1.1rem;
	color: var(--color-text-muted);
	max-width: 580px;
}

.cta-actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: #070b14;
	border-top: 1px solid var(--color-border);
	margin-top: auto;
}

.footer-trust-strip {
	background: #0b1120;
	border-bottom: 1px solid var(--color-border);
	padding: 2rem 0;
}

.trust-strip-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.trust-badge-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.badge-text strong {
	display: block;
	font-size: 0.95rem;
	color: #ffffff;
}

.badge-text span {
	font-size: 0.8rem;
	color: var(--color-text-muted);
}

.footer-main {
	padding: 4.5rem 0 3.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 3rem;
}

.footer-about .footer-desc {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	margin: 1.25rem 0 1.5rem;
}

.compliance-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.compliance-tag {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.25rem 0.55rem;
	background: #1e293b;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	color: #cbd5e1;
}

.footer-col-title {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #ffffff;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	font-size: 0.9rem;
	color: var(--color-text-muted);
}

.footer-links a:hover {
	color: var(--color-accent);
	padding-left: 0.35rem;
}

.depot-locations-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	font-size: 0.875rem;
}

.depot-locations-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.port-status.active {
	font-size: 0.75rem;
	color: #10b981;
	font-weight: 600;
}

.footer-contact-block {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

.contact-line .contact-label {
	display: block;
	font-size: 0.75rem;
	color: var(--color-text-muted);
}

.contact-line .contact-val.highlight {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--color-accent);
}

.footer-bottom {
	background: #05080f;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 1.5rem 0;
	font-size: 0.85rem;
	color: var(--color-text-muted);
}

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

.footer-legal-links {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.footer-legal-links a:hover {
	color: #ffffff;
}

/* ==========================================================================
   Universal RFQ Dialog Modal
   ========================================================================== */
.quote-dialog {
	border: 1px solid var(--color-border);
	background: #0f172a;
	color: var(--color-text-main);
	border-radius: var(--radius-lg);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75);
	max-width: 680px;
	width: 90%;
	margin: auto;
	padding: 0;
}

.quote-dialog::backdrop {
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(6px);
}

.dialog-content {
	padding: 2.25rem 2.5rem;
}

.dialog-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 1.75rem;
}

.dialog-header h3 {
	font-size: 1.65rem;
	margin-top: 0.35rem;
}

.dialog-close {
	background: transparent;
	border: none;
	color: var(--color-text-muted);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

.dialog-close:hover {
	color: #ffffff;
}

.form-row-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-group {
	margin-bottom: 1.25rem;
}

.form-group label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: #cbd5e1;
	margin-bottom: 0.4rem;
}

.form-group .req {
	color: var(--color-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	background: #0b1120;
	border: 1px solid var(--color-border);
	color: #ffffff;
	padding: 0.7rem 1rem;
	border-radius: var(--radius-sm);
	font-size: 0.925rem;
	transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.input-readonly {
	background: #1e293b !important;
	color: #94a3b8 !important;
	cursor: default;
}

.dialog-actions {
	margin-top: 1rem;
}

.quote-feedback {
	padding: 1rem;
	border-radius: var(--radius-sm);
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
	font-weight: 600;
}

.quote-feedback.success {
	background: rgba(16, 185, 129, 0.15);
	border: 1px solid rgba(16, 185, 129, 0.4);
	color: #34d399;
}

.quote-feedback.error {
	background: rgba(239, 68, 68, 0.15);
	border: 1px solid rgba(239, 68, 68, 0.4);
	color: #f87171;
}

/* Page & Single Container Layouts */
.container-single-header,
.page-header-banner,
.archive-header-banner {
	padding: 3.5rem 0 3rem;
	background: #070b14;
	border-bottom: 1px solid var(--color-border);
}

.breadcrumbs {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	margin-bottom: 0.75rem;
}

.breadcrumbs a:hover {
	color: var(--color-accent);
}

.breadcrumbs .sep {
	margin: 0 0.4rem;
	color: var(--color-border);
}

.single-container-title,
.page-title,
.archive-title {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

.archive-lead,
.page-lead {
	color: var(--color-text-muted);
	font-size: 1.1rem;
	max-width: 680px;
}

.single-meta-badges {
	display: flex;
	gap: 0.75rem;
	margin-top: 0.75rem;
}

.single-container-content-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr;
	gap: 3.5rem;
	padding: 4rem 1.5rem 6rem;
}

.single-visual-card {
	background: #0f172a;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 2rem;
	margin-bottom: 2.5rem;
}

.single-description-block {
	margin-bottom: 2.5rem;
}

.single-description-block h2 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
}

.single-specs-table-block h3 {
	font-size: 1.4rem;
	margin-bottom: 1.25rem;
}

.specs-table {
	width: 100%;
	border-collapse: collapse;
}

.specs-table th,
.specs-table td {
	padding: 0.85rem 1rem;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.925rem;
}

.specs-table th {
	color: var(--color-text-muted);
	width: 38%;
	text-align: left;
}

.pricing-rfq-card {
	background: #0f172a;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	position: sticky;
	top: 6.5rem;
}

.rfq-pricing-header {
	display: flex;
	justify-content: space-between;
	padding: 1.5rem;
	background: #141f36;
	border-bottom: 1px solid var(--color-border);
}

.rfq-pricing-header .label {
	display: block;
	font-size: 0.75rem;
	color: var(--color-text-muted);
}

.rfq-pricing-header .price {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	color: #ffffff;
}

.rfq-form-container {
	padding: 1.75rem 1.5rem;
}

.rfq-form-container h4 {
	font-size: 1.25rem;
	margin-bottom: 0.25rem;
}

.rfq-subtitle {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	margin-bottom: 1.5rem;
}

.rfq-guarantee {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.785rem;
	color: var(--color-text-muted);
	margin-top: 1.25rem;
}

/* Dedicated RFQ Page */
.rfq-page-layout {
	padding: 4rem 1.5rem 6rem;
}

.rfq-page-card {
	max-width: 800px;
	margin: 0 auto;
	background: #0f172a;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 3rem;
	box-shadow: var(--shadow-lg);
}

.form-section-title {
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 0.6rem;
	margin: 2rem 0 1.25rem;
}

.form-section-title:first-of-type {
	margin-top: 0;
}

.form-section-title h3 {
	font-size: 1.25rem;
	color: var(--color-accent);
}

.rfq-submit-box {
	margin-top: 2rem;
	text-align: center;
}

.rfq-privacy-note {
	font-size: 0.8rem;
	color: var(--color-text-muted);
	margin-top: 1rem;
}
