/* ==========================================================================
   INDUSTRI TECH & INDUSTRIAL SUPPLIER DESIGN SYSTEM
   Theme: Swiss Minimalism + Industrial Engineering Precision + Tactical B2B Accents
   ========================================================================== */

:root {
    /* Color Palette: Industrial Deep Navy & Precision Blues */
    --color-slate-950: #060913;
    --color-navy-900: #0b132b;
    --color-navy-800: #1c2541;
    --color-navy-700: #2b395d;
    --color-navy-600: #3a506b;
    --color-primary: #0052ff;
    --color-primary-dark: #003ebd;
    --color-primary-light: #3375ff;
    --color-accent: #f59e0b;
    --color-accent-light: #fbbf24;
    --color-accent-dark: #d97706;

    /* Surfaces & Neutrals */
    --color-bg-base: #ffffff;
    --color-bg-subtle: #f8fafc;
    --color-bg-sunken: #f1f5f9;
    --color-bg-card: #ffffff;
    --color-border: #e2e8f0;
    --color-border-subtle: #edf2f7;
    --color-border-strong: #cbd5e1;

    /* Text System */
    --color-text-primary: #0f172a;
    --color-text-secondary: #475569;
    --color-text-muted: #64748b;
    --color-text-faint: #94a3b8;
    --color-text-inverse: #ffffff;

    /* Elevation & Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 2px 4px 0 rgba(15, 23, 42, 0.05), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 6px 16px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 16px 32px -4px rgba(15, 23, 42, 0.12), 0 6px 12px -4px rgba(15, 23, 42, 0.06);
    --shadow-glow: 0 10px 25px rgba(0, 82, 255, 0.25);

    /* Controlled Tactile / Claymorphism */
    --clay-badge: 0 2px 4px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    --clay-card: 0 10px 25px -4px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    --clay-btn-amber: 0 4px 14px rgba(245, 158, 11, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.15);

    /* Geometry & Spacing */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 400ms cubic-bezier(0.16, 1, 0.3, 1);

    --topbar-height: 40px;
    --header-height: 76px;
}

/* Base Reset & International Typography */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--color-text-primary);
    background-color: var(--color-bg-base);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Headings Typography System */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-navy-900);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.025em;
}

h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h4 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.015em;
}

h5 {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h6 {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary-600);
}

/* Section Eyebrow Labels */
.section-label, .eyebrow-accent {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-navy-900);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
    display: inline-block;
}

/* Underlined Title Decoration */
.section-title {
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    font-weight: 800;
    color: var(--color-navy-900);
    position: relative;
    display: inline-block;
}

.section-title-underlined {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title-underlined::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 3.5px;
    background-color: var(--color-primary-600);
    border-radius: 2px;
}

p {
    color: var(--color-text-secondary);
}

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

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

.mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.container-narrow { max-width: 1024px; }
.container-tight { max-width: 800px; }

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.site-topbar {
    background-color: var(--color-slate-950);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    height: var(--topbar-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1002;
}

.topbar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.topbar-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.topbar-tagline i {
    color: var(--color-accent);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition-fast);
}

.topbar-item:hover {
    color: #ffffff;
}

.topbar-item i {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xs);
    padding: 0.15rem 0.4rem;
    gap: 0.35rem;
}

.lang-switch a {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.1rem 0.25rem;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.lang-switch a.active, .lang-switch a:hover {
    color: #ffffff;
    background: var(--color-primary);
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
header.site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

header.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 1.5rem;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: var(--color-navy-900);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.35rem;
    box-shadow: var(--shadow-xs);
}

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

.brand-name {
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-navy-900);
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    padding: 0.5rem 0.2rem;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-primary);
}

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

.nav-mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    color: var(--color-navy-900);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--color-navy-900);
    color: #ffffff;
    border-color: var(--color-navy-900);
}

.btn-primary:hover {
    background-color: var(--color-navy-800);
    border-color: var(--color-navy-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-accent {
    background-color: var(--color-accent);
    color: #0f172a;
    border-color: var(--color-accent);
    box-shadow: var(--clay-btn-amber);
}

.btn-accent:hover {
    background-color: var(--color-accent-light);
    border-color: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-border-strong);
    color: var(--color-navy-900);
}

.btn-outline:hover {
    border-color: var(--color-navy-900);
    background-color: var(--color-bg-sunken);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

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

.btn-sm {
    padding: 0.45rem 0.95rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
}

/* ==========================================================================
   HERO SECTION (Industrial Heavy Equipment Benchmark)
   ========================================================================== */
.hero-industrial {
    position: relative;
    background: linear-gradient(135deg, #091224 0%, #0d1b3e 60%, #070d1d 100%);
    color: #ffffff;
    padding: 4.5rem 0 3.5rem;
    overflow: hidden;
}

.hero-industrial::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 80% 30%, rgba(0, 82, 255, 0.25) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 48px 48px, 48px 48px;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 82, 255, 0.18);
    border: 1px solid rgba(0, 82, 255, 0.4);
    color: #93c5fd;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.hero-headline {
    color: #ffffff;
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 2.25rem;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #0d1b3e;
}

.hero-visual-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.hero-visual-card:hover img {
    transform: scale(1.03);
}

.hero-floating-tag {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    background: rgba(11, 19, 43, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-floating-tag h4 {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.hero-floating-tag span {
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ==========================================================================
   TRUST BADGES STRIP (Below Hero)
   ========================================================================== */
.trust-features-strip {
    background-color: var(--color-slate-950);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    color: #ffffff;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

.trust-icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--color-accent);
    flex-shrink: 0;
}

.trust-feature-title {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.trust-feature-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    line-height: 1.35;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section {
    padding: 5rem 0;
}

.section-subtle {
    background-color: var(--color-bg-subtle);
}

.section-dark {
    background-color: var(--color-navy-900);
    color: #ffffff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
}

.section-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-navy-900);
}

.section-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    max-width: 540px;
    line-height: 1.6;
}

.section-link-all {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-navy-900);
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.section-link-all:hover {
    color: var(--color-primary);
    gap: 0.7rem;
}

/* ==========================================================================
   CATEGORY BENTO & CARDS
   ========================================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.category-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.category-image-wrap {
    width: 100%;
    height: 140px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: var(--color-bg-sunken);
    margin-bottom: 1.1rem;
    position: relative;
}

.category-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.category-card:hover .category-image-wrap img {
    transform: scale(1.05);
}

.category-icon-floating {
    position: absolute;
    bottom: -14px;
    left: 12px;
    width: 38px;
    height: 38px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-navy-900);
    box-shadow: var(--shadow-sm);
}

.category-card-body {
    padding-top: 0.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy-900);
    margin-bottom: 0.35rem;
}

.category-desc {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.45;
    margin-bottom: 1rem;
    flex: 1;
}

.category-cta-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-navy-900);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap var(--transition-fast);
}

.category-card:hover .category-cta-link {
    color: var(--color-primary);
    gap: 0.6rem;
}

/* ==========================================================================
   PRINCIPAL & BRAND PARTNERS
   ========================================================================== */
.brand-partner-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    align-items: center;
}

.brand-partner-pill {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 1.25rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all var(--transition-fast);
    min-height: 80px;
}

.brand-partner-pill:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.brand-partner-pill span {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-navy-800);
    letter-spacing: -0.02em;
}

/* ==========================================================================
   STATISTICS STRIP (High Impact Navy)
   ========================================================================== */
.stats-banner {
    background-color: var(--color-navy-900);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2rem;
    color: #ffffff;
    margin: 3.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding-right: 1.5rem;
}

.stat-box:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--color-accent);
    flex-shrink: 0;
}

.stat-number {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.2rem;
}

.stat-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

/* ==========================================================================
   INDUSTRY EXPERIENCE CARDS
   ========================================================================== */
.industry-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.industry-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-navy-700);
}

.industry-thumb {
    width: 100%;
    height: 145px;
    background-color: var(--color-bg-sunken);
    overflow: hidden;
}

.industry-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.industry-card:hover .industry-thumb img {
    transform: scale(1.06);
}

.industry-body {
    padding: 1.1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.industry-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-navy-900);
    margin-bottom: 0.3rem;
}

.industry-supply-tag {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-bottom: 0.85rem;
    flex: 1;
}

.industry-badge-pill {
    display: inline-block;
    background: var(--color-bg-sunken);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-xs);
    width: fit-content;
}

/* ==========================================================================
   CONSULTATION & QUOTATION BANNER (Bottom Action)
   ========================================================================== */
.consultation-banner {
    background: linear-gradient(135deg, #091224 0%, #0d1b3e 100%);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 3.5rem;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.consultation-eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
    display: block;
}

.consultation-title {
    color: #ffffff;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.consultation-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.consultation-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.consultation-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.consult-feat-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
}

.consult-feat-row i {
    font-size: 1.4rem;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.consult-feat-row h5 {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.consult-feat-row p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   PRODUCT CATALOG & TECHNICAL SPECIFICATIONS
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(11, 23, 54, 0.1), 0 8px 10px -6px rgba(11, 23, 54, 0.05);
    border-color: #0052FF;
}

.product-thumb {
    width: 100%;
    height: 165px;
    background-color: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-thumb img {
    transform: scale(1.05);
}

.product-badge-category {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(11, 23, 54, 0.88);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.02em;
}

.product-meta-sku {
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.product-card-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0b1736;
    margin-bottom: 0.45rem;
    line-height: 1.35;
    height: 2.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-title a {
    color: #0b1736;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-card-title a:hover {
    color: #0052FF;
}

.product-card-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 1rem;
    height: 2.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-foot {
    border-top: 1px solid #f1f5f9;
    padding-top: 0.85rem;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-price-box {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-height: 48px;
    justify-content: center;
}

.product-price-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-price-val {
    font-size: 1.12rem;
    font-weight: 900;
    color: #0f172a;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.product-price-val .currency-symbol {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
}

.product-price-val .unit-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.product-rfq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0284c7;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    width: fit-content;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.btn-card-spec {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.55rem 0.65rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-card-spec:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
    color: #0052FF;
}

.btn-card-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff !important;
    background: #059669;
    border: 1px solid #047857;
    border-radius: 6px;
    padding: 0.55rem 0.65rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(5, 150, 105, 0.2);
}

.btn-card-wa:hover {
    background: #047857;
    box-shadow: 0 4px 8px rgba(4, 120, 87, 0.3);
    transform: translateY(-1px);
}

/* ==========================================================================
   CUSTOM CLEAN PAGINATION STYLES (NO BROKEN ARROWS / CLEAN PILLS)
   ========================================================================== */
.custom-pagination-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0 1rem;
    width: 100%;
}

.pagination-info {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}

.pagination-info .font-medium {
    font-weight: 700;
    color: #0b1736;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item {
    display: inline-flex;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-link:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0052FF;
}

.page-item.active .page-link {
    background: #0b1736;
    border-color: #0b1736;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(11, 23, 54, 0.25);
}

.page-item.disabled .page-link {
    color: #cbd5e1;
    background: #f8fafc;
    border-color: #e2e8f0;
    cursor: not-allowed;
    pointer-events: none;
}

/* Global reset to prevent any Laravel default SVGs from exploding */
nav[role="navigation"] svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    max-width: 1.25rem !important;
    max-height: 1.25rem !important;
    display: inline-block !important;
}

/* Technical Specification Table */
.spec-table-wrap {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ffffff;
    margin-bottom: 2rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.spec-table th, .spec-table td {
    padding: 0.85rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.spec-table th {
    background: var(--color-bg-sunken);
    color: var(--color-navy-900);
    font-weight: 700;
    width: 35%;
}

.spec-table td {
    color: var(--color-text-primary);
    font-family: 'JetBrains Mono', monospace;
}

.spec-table tr:last-child th, .spec-table tr:last-child td {
    border-bottom: none;
}

/* ==========================================================================
   CATALOG LAYOUT (Sidebar + Main Product Grid with 1:1 Square Images)
   ========================================================================== */
.catalog-layout-grid {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 2.25rem;
    align-items: start;
}

@media (max-width: 991px) {
    .catalog-layout-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Widgets */
.catalog-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.catalog-sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(11, 23, 54, 0.03);
}

.catalog-sidebar-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0b1736;
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.catalog-sidebar-title i {
    color: #0052FF;
}

.sidebar-filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-filter-link:hover {
    background: #f8fafc;
    color: #0052FF;
}

.sidebar-filter-link.active {
    background: #0b1736;
    color: #ffffff;
    font-weight: 700;
}

.sidebar-filter-link .filter-badge {
    font-size: 0.72rem;
    padding: 0.12rem 0.45rem;
    border-radius: 10px;
    background: #f1f5f9;
    color: #64748b;
    font-family: 'JetBrains Mono', monospace;
}

.sidebar-filter-link.active .filter-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Sidebar Live WA Support Card */
.sidebar-wa-card {
    background: linear-gradient(135deg, #0b1736 0%, #1e293b 100%);
    border-radius: 10px;
    padding: 1.25rem;
    color: #ffffff;
}

/* Product Grid & 1:1 Cards */
.catalog-main-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.catalog-top-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.85rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(11, 23, 54, 0.08);
    border-color: #cbd5e1;
}

/* 1:1 Aspect Ratio Square Image Container */
.product-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    background: #f8fafc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f1f5f9;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: rgba(11, 23, 54, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    max-width: 85%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

.product-card-body {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: #0b1736;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.45rem;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.product-brand-tag i {
    color: #0052FF;
}

.product-sku-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.product-sku-badge {
    color: #64748b;
    font-weight: 600;
}

.product-stock-badge {
    color: #059669;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.product-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0b1736;
    line-height: 1.35;
    margin-bottom: 0.45rem;
    min-height: 2.7em;
    max-height: 2.7em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card-title a {
    color: #0b1736;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-card-title a:hover {
    color: #0052FF;
}

.product-card-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0.85rem;
    min-height: 3em;
    max-height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price-box {
    margin-top: auto;
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 6px;
    margin-bottom: 0.85rem;
}

.product-rfq-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #0052FF;
    font-size: 0.76rem;
    font-weight: 700;
}

.product-price-label {
    font-size: 0.72rem;
    color: #64748b;
}

.product-price-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0b1736;
}

.product-price-unit {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: auto;
}

.btn-card-spec {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.5rem 0.6rem;
    text-align: center;
    border-radius: 6px;
    background: #ffffff;
    border: 1.5px solid #0b1736;
    color: #0b1736;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.btn-card-spec:hover {
    background: #0b1736;
    color: #ffffff;
}

.btn-card-wa {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.5rem 0.6rem;
    text-align: center;
    border-radius: 6px;
    background: #16a34a;
    border: 1.5px solid #16a34a;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.btn-card-wa:hover {
    background: #15803d;
    border-color: #15803d;
    color: #ffffff;
}

/* ==========================================================================
   FOOTER (Corporate Navigation Hub)
   ========================================================================== */
footer.site-footer {
    background-color: var(--color-slate-950);
    color: rgba(255, 255, 255, 0.65);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-brand-icon {
    width: 38px;
    height: 38px;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.footer-brand-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 360px;
}

.footer-col-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    transition: all var(--transition-fast);
}

.footer-menu a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.88rem;
}

.footer-contact-row i {
    color: var(--color-accent);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (All Viewports)
   ========================================================================== */
@media (max-width: 1200px) {
    .category-grid, .industry-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
    .brand-partner-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 1.25rem;
    }
    .stat-box:nth-child(3), .stat-box:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 992px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-visual-card {
        max-width: 580px;
    }
    .trust-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    .nav-menu {
        display: none;
    }
    .nav-mobile-toggle {
        display: flex;
    }
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
/* ==========================================================================
   BLOG / ARTICLES TWO-COLUMN LAYOUT & SIDEBAR
   ========================================================================== */
.blog-layout {
    display: grid;
    grid-template-columns: 2.7fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(11, 23, 54, 0.1), 0 8px 10px -6px rgba(11, 23, 54, 0.05);
    border-color: #0052FF;
}

.blog-card-thumb {
    width: 100%;
    height: 200px;
    background-color: #f1f5f9;
    overflow: hidden;
    position: relative;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.05);
}

.blog-badge-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(11, 23, 54, 0.88);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.blog-card-meta i {
    font-size: 0.85rem;
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0b1736;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    height: 2.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a {
    color: #0b1736;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: #0052FF;
}

.blog-card-snippet {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card-foot {
    border-top: 1px solid #f1f5f9;
    padding-top: 0.85rem;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-read-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0b1736;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
}

.btn-read-more:hover {
    color: #0052FF;
    gap: 0.55rem;
}

/* ==========================================================================
   BLOG SIDEBAR WIDGETS
   ========================================================================== */
.blog-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.35rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.widget-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0b1736;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0052FF;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.widget-title i {
    color: #0052FF;
    font-size: 1.1rem;
}

/* Search Widget Form */
.sidebar-search-form {
    display: flex;
    gap: 0.4rem;
}

.sidebar-search-input {
    flex: 1;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease;
}

.sidebar-search-input:focus {
    border-color: #0052FF;
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.1);
}

.sidebar-search-btn {
    background: #0b1736;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 0 0.85rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.sidebar-search-btn:hover {
    background: #0052FF;
}

/* Categories List in Sidebar */
.sidebar-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sidebar-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #f8fafc;
    border: 1px solid transparent;
}

.sidebar-category-link:hover, .sidebar-category-link.active {
    background: #eff6ff;
    color: #0052FF;
    border-color: #bfdbfe;
    font-weight: 700;
}

.sidebar-category-link .cat-count {
    font-size: 0.72rem;
    font-weight: 700;
    background: #e2e8f0;
    color: #475569;
    padding: 0.15rem 0.45rem;
    border-radius: 10px;
    font-family: 'JetBrains Mono', monospace;
}

.sidebar-category-link.active .cat-count {
    background: #0052FF;
    color: #ffffff;
}

/* Recent Posts List in Sidebar */
.sidebar-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.recent-post-item {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    text-decoration: none;
}

.recent-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background: #f1f5f9;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.08);
}

.recent-post-info h5 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0b1736;
    margin: 0 0 0.25rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.recent-post-item:hover .recent-post-info h5 {
    color: #0052FF;
}

.recent-post-info span {
    font-size: 0.7rem;
    color: #94a3b8;
    display: block;
}

/* Sidebar Consultation Banner */
.sidebar-cta-card {
    background: #0b1736;
    border-radius: 10px;
    padding: 1.5rem;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(11, 23, 54, 0.15);
}

.sidebar-cta-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.sidebar-cta-card p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.45;
    margin-bottom: 1.1rem;
}

/* ==========================================================================
   BLOG / TECHNICAL INSIGHTS STYLES
   ========================================================================== */
.blog-filter-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.85rem 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-filter-pills {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    align-items: center;
}

.blog-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
    background: #f1f5f9;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.blog-pill:hover {
    background: #e2e8f0;
    color: #0b1736;
}

.blog-pill.active {
    background: #0b1736;
    color: #ffffff;
    border-color: #0b1736;
}

/* Featured Spotlight Banner */
.featured-article-spotlight {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    margin-bottom: 2.75rem;
    box-shadow: 0 4px 20px rgba(11, 23, 54, 0.05);
    transition: all 0.3s ease;
}

.featured-article-spotlight:hover {
    box-shadow: 0 12px 30px rgba(11, 23, 54, 0.1);
    border-color: #0052FF;
}

.featured-spotlight-thumb {
    width: 100%;
    min-height: 280px;
    background-color: #f1f5f9;
    overflow: hidden;
    position: relative;
}

.featured-spotlight-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.featured-article-spotlight:hover .featured-spotlight-thumb img {
    transform: scale(1.04);
}

.featured-spotlight-body {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #eff6ff;
    color: #0052FF;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: fit-content;
    margin-bottom: 0.85rem;
    border: 1px solid #bfdbfe;
}

.spotlight-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0b1736;
    line-height: 1.3;
    margin-bottom: 0.85rem;
}

.spotlight-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.spotlight-title a:hover {
    color: #0052FF;
}

.spotlight-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.spotlight-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.1rem;
}

/* Two-Column Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1.85fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(11, 23, 54, 0.08);
    border-color: #cbd5e1;
}

.blog-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    position: relative;
    background: #f8fafc;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.05);
}

.blog-badge-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: rgba(11, 23, 54, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    max-width: 85%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0b1736;
    line-height: 1.35;
    margin-bottom: 0.45rem;
    min-height: 2.7em;
    max-height: 2.7em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: #0052FF;
}

.blog-card-snippet {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 3em;
    max-height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-card-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.75rem;
}

.btn-read-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0052FF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s ease;
}

.btn-read-more:hover {
    gap: 0.45rem;
}

/* Sidebar Styling */
.blog-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(11, 23, 54, 0.03);
}

.widget-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0b1736;
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.widget-title i {
    color: #0052FF;
}

.sidebar-category-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.65rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-category-item:hover {
    background: #f8fafc;
    color: #0052FF;
}

.sidebar-category-item.active {
    background: #0b1736;
    color: #ffffff;
    font-weight: 700;
}

.sidebar-search-form {
    display: flex;
    position: relative;
    width: 100%;
}

.sidebar-search-input {
    width: 100%;
    padding: 0.65rem 2.2rem 0.65rem 0.75rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #0b1736;
    background: #f8fafc;
    font-family: inherit;
}

.sidebar-search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #0052FF;
    cursor: pointer;
    font-size: 1rem;
}

.trending-rank {
    width: 26px;
    height: 26px;
    background: #eff6ff;
    color: #0052FF;
    font-weight: 800;
    font-size: 0.75rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    flex-shrink: 0;
}

.sidebar-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.sidebar-tag-pill {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.sidebar-tag-pill:hover {
    background: #0b1736;
    color: #ffffff;
    border-color: #0b1736;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseStatus 1.8s infinite;
}

@keyframes pulseStatus {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.sidebar-download-box {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.download-box-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.download-box-icon {
    width: 38px;
    height: 38px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.download-box-info h5 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0b1736;
    margin: 0;
}

.download-box-info span {
    font-size: 0.7rem;
    color: #64748b;
}

/* ==========================================================================
   GLOBAL RESPONSIVE FORM CONTROLS & UTILITIES
   ========================================================================== */
.form-control {
    width: 100%;
    padding: 0.72rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--color-text-primary);
    background-color: #ffffff;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.15);
}

/* ==========================================================================
   CAREER MODULE RESPONSIVE STYLES
   ========================================================================== */
.career-filter-bar {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-xs);
}

.career-filter-form {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr auto;
    gap: 1rem;
    align-items: center;
}

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

.career-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xs);
    transition: all 0.25s ease;
}

.career-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.career-card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.career-card-actions .btn {
    flex: 1;
    text-align: center;
}

.career-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.career-main-content {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-xs);
}

.career-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

/* ==========================================================================
   PRODUCT DETAILS MODULE RESPONSIVE STYLES
   ========================================================================== */
.product-show-top-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
    align-items: start;
    margin-bottom: 4rem;
}

.product-gallery-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    padding: 1rem;
    margin-bottom: 1rem;
}

.product-main-preview {
    width: 100%;
    aspect-ratio: 4/3;
    max-height: 440px;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-main-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.product-thumb-item {
    aspect-ratio: 4/3;
    height: auto;
    border-radius: var(--radius-xs);
    overflow: hidden;
    border: 2px solid var(--color-border);
    cursor: pointer;
    background: #f1f5f9;
    transition: all 0.2s ease;
}

.product-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumb-item:hover, .product-thumb-item.active {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.product-download-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.product-download-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.product-show-body-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.spec-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-xs);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

.spec-table th {
    width: 35%;
    min-width: 140px;
    background: #f8fafc;
    color: var(--color-navy-900);
    font-weight: 700;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    vertical-align: top;
}

.spec-table td {
    color: var(--color-text-secondary);
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
    border-bottom: none;
}

/* ==========================================================================
   COMPREHENSIVE MULTI-DEVICE RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* 1. LARGE SCREENS & DESKTOPS (<= 1200px) */
@media (max-width: 1200px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .catalog-layout {
        grid-template-columns: 260px 1fr;
        gap: 2rem;
    }
    .career-detail-grid, .product-show-top-grid, .product-show-body-grid {
        gap: 2rem;
    }
}

/* 2. LAPTOPS & TABLETS LANDSCAPE (<= 1024px) */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    .nav-mobile-toggle {
        display: flex;
    }
    .header-actions .btn-primary {
        display: none;
    }
    .featured-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .brand-partner-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .category-grid, .industry-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 3. TABLETS PORTRAIT & COMPACT LAPTOPS (<= 992px) */
@media (max-width: 992px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .hero-content-grid .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .catalog-sidebar {
        position: static;
        margin-bottom: 1.5rem;
    }
    .career-detail-grid, .product-show-top-grid, .product-show-body-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-show-top-grid {
        margin-bottom: 2.5rem;
    }
    .career-sidebar {
        position: static;
    }
    .featured-article-spotlight {
        grid-template-columns: 1fr;
    }
    .featured-spotlight-thumb {
        min-height: 240px;
    }
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
        margin-top: 2rem;
    }
    .services-grid, .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    .about-split-grid, .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* 4. PHABLETS & LARGE SMARTPHONES (<= 768px) */
@media (max-width: 768px) {
    .site-topbar {
        font-size: 0.75rem;
        height: auto;
        padding: 0.4rem 0;
    }
    .topbar-wrap {
        flex-direction: column;
        gap: 0.35rem;
        text-align: center;
    }
    .topbar-tagline {
        display: none;
    }
    .topbar-right {
        gap: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .career-filter-form {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .career-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .form-row-2, .form-row-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .form-upload-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .category-grid, .industry-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    .brand-partner-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-box {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 1.5rem 1rem;
    }
    .stat-box:last-child {
        border-bottom: none;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .career-main-content {
        padding: 1.5rem;
    }
    .consultation-banner {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }
    .consultation-banner .btn {
        width: 100%;
    }
}

/* 5. STANDARD SMARTPHONES (<= 576px) */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .hero-industrial {
        padding: 3rem 0 2rem;
    }
    .hero-headline {
        font-size: 1.85rem !important;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
    }
    .category-grid, .industry-grid-5 {
        grid-template-columns: 1fr;
    }
    .featured-products-grid {
        grid-template-columns: 1fr;
    }
    .services-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .brand-partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .career-card-actions {
        flex-direction: column;
    }
    .career-card-actions .btn {
        width: 100%;
    }
    .responsive-btn {
        width: 100%;
        text-align: center;
    }
    .catalog-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .product-download-actions {
        grid-template-columns: 1fr;
    }
    .spec-table th {
        width: 40%;
        padding: 0.75rem 0.85rem;
        font-size: 0.82rem;
    }
    .spec-table td {
        padding: 0.75rem 0.85rem;
        font-size: 0.82rem;
    }
    .product-main-preview {
        aspect-ratio: 1/1;
    }
}

/* 6. COMPACT DEVICES (<= 375px) */
@media (max-width: 375px) {
    .hero-headline {
        font-size: 1.6rem !important;
    }
    .brand-name {
        font-size: 1rem;
    }
    .topbar-right {
        font-size: 0.7rem;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   SINGLE-PAGE 100% REPLICA STYLING SYSTEM
   ========================================================================== */

/* 1. Header & Navigation */
.site-header-singlepage {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(4, 9, 24, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.site-header-singlepage .nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.25rem;
    margin: 0;
    padding: 0;
}

.site-header-singlepage .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

.site-header-singlepage .nav-link:hover {
    color: #38bdf8;
}

.btn-header-contact:hover {
    background: #0052ff !important;
    border-color: #0052ff !important;
    transform: translateY(-1px);
}

/* 2. Hero Section */
.hero-replica-section {
    position: relative;
    background: linear-gradient(135deg, #030712 0%, #0b1739 50%, #04091e 100%);
    padding: 5.5rem 0 4.5rem;
    overflow: hidden;
}

.hero-replica-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-replica-glow {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.hero-replica-container {
    position: relative;
    z-index: 2;
}

.hero-replica-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-replica-badge {
    color: #0080ff;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.15rem;
}

.hero-replica-title {
    font-size: clamp(2.1rem, 3.8vw, 3.2rem);
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -0.025em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
}

.hero-replica-desc {
    font-size: 0.98rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin-bottom: 2.25rem;
}

.hero-replica-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-replica-primary {
    background: #0052ff;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.8rem 1.65rem;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 82, 255, 0.4);
}

.btn-replica-primary:hover {
    background: #0040cc;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.5);
}

.btn-replica-secondary {
    background: rgba(11, 23, 54, 0.85);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.8rem 1.65rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.btn-replica-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
}

.hero-engineer-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-engineer-img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
}

.hero-uniform-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(6, 14, 35, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.uniform-badge-logo {
    font-size: 0.85rem;
    letter-spacing: -1px;
}

.uniform-badge-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: 0.05em;
}

/* 3. About Section */
.about-replica-section {
    background: #ffffff;
    padding: 5.5rem 0;
}

.about-replica-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-tag-blue {
    color: #0052ff;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.section-title-replica {
    font-size: clamp(1.85rem, 2.9vw, 2.45rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.22;
    margin-bottom: 1.35rem;
    letter-spacing: -0.025em;
}

.about-replica-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.15rem;
}

.about-replica-tagline {
    font-size: 1.08rem;
    font-weight: 800;
    color: #0052ff;
    margin-top: 1.35rem;
}

.about-img-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid #e2e8f0;
}

.about-main-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* 4. Our Clients Section */
.clients-replica-section {
    background: #f8fafc;
    padding: 5.5rem 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.clients-replica-header {
    max-width: 680px;
    margin: 0 auto 3.25rem;
}

.section-subtitle-replica {
    font-size: 0.96rem;
    color: #64748b;
    line-height: 1.6;
    margin-top: 0.6rem;
}

.clients-grid-replica {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.75rem;
}

.client-card-replica {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-card-replica:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.09);
    border-color: #cbd5e1;
}

.client-logo-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-svg {
    width: 100%;
    max-width: 145px;
    height: 44px;
    display: block;
}

.clients-cta-center {
    text-align: center;
}

.btn-view-more-clients {
    background: #ffffff;
    color: #0052ff;
    border: 1.5px solid #0052ff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.7rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.btn-view-more-clients:hover {
    background: #0052ff;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.25);
    transform: translateY(-2px);
}

/* 5. CTA Banner */
.cta-banner-replica-section {
    position: relative;
    background: linear-gradient(135deg, #071538 0%, #0d276b 50%, #081a42 100%);
    overflow: hidden;
    padding: 3.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 2rem;
}

.cta-banner-title {
    font-size: clamp(1.45rem, 2.3vw, 1.95rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.45rem;
    letter-spacing: -0.015em;
}

.cta-banner-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
}

.btn-cta-white {
    background: #ffffff;
    color: #0052ff;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 0.8rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover {
    background: #f8fafc;
    color: #003ebd;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 6. Responsive Breakpoints */
@media (max-width: 1024px) {
    .clients-grid-replica {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-replica-grid,
    .about-replica-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-grid-replica {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    .site-header-singlepage .nav-menu {
        display: none;
    }
    .clients-grid-replica {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer-grid-replica {
        grid-template-columns: 1fr !important;
    }
}


