/* ===== ENERGY OIL & GREASE - Modern Multi-Page Design ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #e94560;
    --accent-hover: #d63d56;
    --gold: #f0c040;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #a3a3a3;
    --gray-600: #525252;
    --gray-800: #262626;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0f172a;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.logo-img {
    width: 34px;
    height: 34px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
}

.logo-text {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ===== HERO (Homepage) ===== */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 20px 40px;
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== QUICK LINKS ===== */
.quick-links {
    padding: 48px 0;
    background: var(--gray-50);
}

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

.quick-card {
    background: var(--white);
    padding: 20px 16px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.2s;
    border: 1px solid var(--gray-200);
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.quick-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quick-icon svg {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.quick-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.quick-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
    padding: 32px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.brands-section h2 {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.brands-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.brand-logo {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.brand-logo:hover {
    opacity: 1;
}

.brand-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.brand-logo:hover img {
    filter: grayscale(0%);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 36px 0;
    background: var(--primary);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cta-contact {
    text-align: right;
}

.cta-phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2px;
}

.cta-phone:hover {
    color: var(--white);
}

.cta-hours {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #0f172a;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer p {
    color: #64748b;
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
}

/* ===== INDUSTRIAL HOMEPAGE ===== */

.ind-home {
    --ind-orange: #e94560;
    --ind-orange-hover: #d63d56;
    --ind-yellow: #eab308;
    --ind-slate-900: #0f172a;
    --ind-slate-800: #1e293b;
    --ind-slate-700: #334155;
    --ind-slate-600: #475569;
    --ind-slate-500: #64748b;
    --ind-slate-400: #94a3b8;
    --ind-slate-300: #cbd5e1;
    --ind-slate-200: #e2e8f0;
    --ind-slate-100: #f1f5f9;
    --ind-slate-50: #f8fafc;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    --ind-glow: 0 0 0 3px rgba(233, 69, 96, 0.25);
}

/* --- Top Conversion CTA --- */
.ind-top-cta {
    padding: 64px 20px 0;
    background: var(--ind-slate-900);
}

.ind-top-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
    min-height: 46px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.98));
    border: 1px solid var(--ind-slate-700);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.ind-top-cta-copy {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--ind-slate-300);
    font-size: 0.82rem;
    line-height: 1.35;
}

.ind-top-cta-copy strong {
    color: #fff;
    font-weight: 700;
}

.ind-top-cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ind-top-cta-phone,
.ind-top-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 13px;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ind-top-cta-phone {
    color: #fff;
    border: 1px solid var(--ind-slate-600);
}

.ind-top-cta-phone:hover {
    border-color: var(--ind-orange);
    color: var(--ind-orange);
}

.ind-top-cta-link {
    background: var(--ind-orange);
    color: #fff;
}

.ind-top-cta-link:hover {
    background: var(--ind-orange-hover);
}

/* --- Industrial Hero --- */
.ind-hero {
    min-height: calc(80vh - 62px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ind-slate-900);
    position: relative;
    overflow: hidden;
}

.ind-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

.ind-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(249, 115, 22, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.ind-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 100px 24px 60px;
    text-align: center;
}

.ind-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ind-slate-400);
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid var(--ind-slate-700);
    border-radius: 4px;
    background: rgba(30, 41, 59, 0.6);
}

.ind-hero-tag .tag-dot {
    width: 7px;
    height: 7px;
    background: var(--ind-orange);
    border-radius: 50%;
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.ind-hero-title {
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.ind-hero-title .title-accent {
    color: var(--ind-orange);
}

.ind-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 300;
    color: var(--ind-slate-400);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.ind-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.ind-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.ind-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.ind-btn-primary {
    background: var(--ind-orange);
    color: #fff;
    border-color: var(--ind-orange);
}

.ind-btn-primary:hover {
    background: var(--ind-orange-hover);
    border-color: var(--ind-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.ind-btn-primary:hover svg {
    transform: translateX(3px);
}

.ind-btn-ghost {
    background: transparent;
    color: var(--ind-slate-300);
    border-color: var(--ind-slate-600);
}

.ind-btn-ghost:hover {
    color: #fff;
    border-color: var(--ind-slate-400);
    background: rgba(255, 255, 255, 0.04);
}

/* Hero stats bar */
.ind-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--ind-slate-700);
}

.ind-stat {
    text-align: center;
}

.ind-stat-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.ind-stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ind-slate-500);
    margin-top: 6px;
}

/* --- Technical Modules (Features) --- */
.ind-modules {
    padding: 64px 0;
    background: var(--ind-slate-50);
    position: relative;
}

.ind-modules::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.ind-section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.ind-section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ind-orange);
    margin-bottom: 8px;
}

.ind-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ind-slate-900);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.ind-section-sub {
    font-size: 0.9rem;
    color: var(--ind-slate-500);
    max-width: 480px;
    margin: 0 auto;
}

.ind-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
}

.ind-module {
    background: #fff;
    border: 1px solid var(--ind-slate-200);
    border-radius: 8px;
    padding: 28px 22px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ind-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ind-slate-200);
    transition: background 0.3s;
}

.ind-module:hover {
    transform: translateY(-6px);
    border-color: var(--ind-orange);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1), var(--ind-glow);
}

.ind-module:hover::before {
    background: var(--ind-orange);
}

.ind-module-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: var(--ind-slate-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ind-slate-500);
    transition: all 0.3s;
}

.ind-module:hover .ind-module-icon {
    background: rgba(249, 115, 22, 0.1);
    color: var(--ind-orange);
}

.ind-module-icon svg {
    width: 24px;
    height: 24px;
}

.ind-module h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ind-slate-800);
    margin-bottom: 6px;
}

.ind-module p {
    font-size: 0.82rem;
    color: var(--ind-slate-500);
    line-height: 1.5;
    margin-bottom: 14px;
}

.ind-module-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ind-orange);
    transition: gap 0.2s;
}

.ind-module-link:hover {
    gap: 9px;
}

.ind-module-link svg {
    width: 13px;
    height: 13px;
}

/* --- Brand Authority Grid --- */
.ind-brands {
    padding: 56px 0;
    background: var(--ind-slate-800);
    position: relative;
    overflow: hidden;
}

.ind-brands::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.ind-brands .ind-section-tag {
    color: var(--ind-slate-400);
}

.ind-brands .ind-section-title {
    color: #fff;
}

.ind-brands .ind-section-sub {
    color: var(--ind-slate-400);
}

.ind-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    position: relative;
}

.ind-brand-cell {
    background: var(--ind-slate-700);
    border: 1px solid var(--ind-slate-600);
    border-radius: 8px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: all 0.3s;
}

.ind-brand-cell:hover {
    border-color: var(--ind-orange);
    background: var(--ind-slate-600);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ind-brand-cell img {
    height: 36px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.8) contrast(0.8);
    opacity: 0.6;
    transition: all 0.3s;
}

.ind-brand-cell:hover img {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
}

/* --- Command Center CTA --- */
.ind-cta {
    padding: 0;
    background: var(--ind-slate-900);
    position: relative;
    overflow: hidden;
}

.ind-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 80% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.ind-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 280px;
    position: relative;
}

.ind-cta-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ind-cta-content .ind-section-tag {
    text-align: left;
    margin-bottom: 8px;
}

.ind-cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.ind-cta-desc {
    font-size: 0.9rem;
    color: var(--ind-slate-400);
    margin-bottom: 24px;
    max-width: 400px;
    line-height: 1.6;
}

.ind-cta-panel {
    background: var(--ind-slate-800);
    border-left: 1px solid var(--ind-slate-700);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.ind-cta-data {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ind-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ind-cta-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ind-orange);
}

.ind-cta-icon svg {
    width: 18px;
    height: 18px;
}

.ind-cta-row-text {
    display: flex;
    flex-direction: column;
}

.ind-cta-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ind-slate-500);
}

.ind-cta-value {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.ind-cta-value a {
    color: var(--ind-orange);
    transition: color 0.2s;
}

.ind-cta-value a:hover {
    color: #fff;
}

.ind-cta-divider {
    height: 1px;
    background: var(--ind-slate-700);
}

.ind-cta-btn {
    margin-top: 8px;
}

/* --- Homepage Responsive --- */
@media (max-width: 1024px) {
    .ind-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ind-top-cta {
        padding: 58px 14px 0;
    }

    .ind-top-cta-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .ind-top-cta-copy,
    .ind-top-cta-actions {
        justify-content: center;
    }

    .ind-hero {
        min-height: 70vh;
    }

    .ind-hero-inner {
        padding: 80px 20px 40px;
    }

    .ind-hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .ind-modules {
        padding: 48px 0;
    }

    .ind-modules-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ind-module {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        text-align: left;
        padding: 18px;
        gap: 0 14px;
    }

    .ind-module-icon {
        grid-row: 1 / 3;
        margin: 0;
        width: 44px;
        height: 44px;
    }

    .ind-module h3 {
        margin-bottom: 2px;
        align-self: end;
    }

    .ind-module p {
        margin-bottom: 8px;
    }

    .ind-module-link {
        grid-column: 1 / -1;
    }

    .ind-brands {
        padding: 40px 0;
    }

    .ind-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ind-cta-inner {
        grid-template-columns: 1fr;
    }

    .ind-cta-content {
        padding: 40px 24px 32px;
        text-align: center;
    }

    .ind-cta-content .ind-section-tag {
        text-align: center;
    }

    .ind-cta-desc {
        max-width: none;
    }

    .ind-cta-panel {
        border-left: none;
        border-top: 1px solid var(--ind-slate-700);
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .ind-top-cta-actions {
        flex-direction: column;
    }

    .ind-top-cta-phone,
    .ind-top-cta-link {
        width: 100%;
    }

    .ind-hero-title {
        font-size: 2rem;
    }

    .ind-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .ind-btn {
        width: 100%;
        justify-content: center;
    }

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

/* ===== INDUSTRIAL SUBPAGES (Shared) ===== */
.ind-page {
    --ind-accent: #e94560;
    --ind-accent-hover: #d63d56;
    --ind-slate-900: #0f172a;
    --ind-slate-800: #1e293b;
    --ind-slate-700: #334155;
    --ind-slate-600: #475569;
    --ind-slate-500: #64748b;
    --ind-slate-400: #94a3b8;
    --ind-slate-300: #cbd5e1;
    --ind-slate-200: #e2e8f0;
    --ind-slate-100: #f1f5f9;
    --ind-slate-50: #f8fafc;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

/* --- Page Hero --- */
.ind-page-hero {
    position: relative;
    padding: 100px 24px 48px;
    background: var(--ind-slate-900);
    overflow: hidden;
    text-align: center;
}

.ind-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.ind-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ind-accent), transparent);
}

.ind-page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.ind-page-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--ind-accent);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ind-page-tag .tag-line {
    width: 24px;
    height: 1px;
    background: var(--ind-accent);
}

.ind-page-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.ind-page-subtitle {
    font-size: 0.95rem;
    color: var(--ind-slate-400);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* --- Industrial Section Layout --- */
.ind-section {
    padding: 56px 0;
}

.ind-section-dark {
    background: var(--ind-slate-900);
}

.ind-section-darker {
    background: var(--ind-slate-800);
}

.ind-section-light {
    background: var(--ind-slate-50);
}

.ind-section-white {
    background: #fff;
}

.ind-section-header {
    margin-bottom: 32px;
}

.ind-section-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ind-accent);
    margin-bottom: 8px;
}

.ind-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ind-slate-900);
    letter-spacing: -0.3px;
}

.ind-section-dark .ind-section-title,
.ind-section-darker .ind-section-title {
    color: #fff;
}

.ind-section-dark .ind-section-label,
.ind-section-darker .ind-section-label {
    color: var(--ind-accent);
}

/* --- Industrial Cards --- */
.ind-card {
    background: #fff;
    border: 1px solid var(--ind-slate-200);
    border-radius: 8px;
    padding: 28px 24px;
    transition: all 0.2s ease;
    position: relative;
}

.ind-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ind-accent);
    border-radius: 8px 8px 0 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.ind-card:hover {
    border-color: var(--ind-slate-300);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.ind-card:hover::before {
    opacity: 1;
}

.ind-dark-card {
    background: var(--ind-slate-800);
    border: 1px solid var(--ind-slate-700);
    border-radius: 8px;
    padding: 28px 24px;
    transition: all 0.2s ease;
}

.ind-dark-card:hover {
    border-color: var(--ind-slate-600);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* --- Industrial Buttons (subpage) --- */
.ind-page .ind-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    text-decoration: none;
}

.ind-page .ind-btn-primary {
    background: var(--ind-accent);
    color: #fff;
    border-color: var(--ind-accent);
}

.ind-page .ind-btn-primary:hover {
    background: var(--ind-accent-hover);
    border-color: var(--ind-accent-hover);
    transform: translateY(-2px);
}

.ind-page .ind-btn-ghost {
    background: transparent;
    color: #fff;
    border-color: var(--ind-slate-600);
}

.ind-page .ind-btn-ghost:hover {
    border-color: var(--ind-accent);
    color: var(--ind-accent);
}

/* --- About: Story Section --- */
.ind-story-content {
    max-width: 720px;
}

.ind-story-content p {
    font-size: 0.95rem;
    color: var(--ind-slate-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.ind-product-list {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.ind-product-list li {
    position: relative;
    padding: 12px 0 12px 20px;
    border-bottom: 1px solid var(--ind-slate-100);
    font-size: 0.9rem;
    color: var(--ind-slate-600);
    line-height: 1.6;
}

.ind-product-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 6px;
    height: 6px;
    background: var(--ind-accent);
    border-radius: 1px;
    transform: rotate(45deg);
}

.ind-product-list li strong {
    color: var(--ind-slate-900);
    font-weight: 600;
}

/* --- About: Values Grid --- */
.ind-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ind-value-card {
    text-align: center;
}

.ind-value-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: var(--ind-slate-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid var(--ind-slate-700);
}

.ind-value-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.ind-value-card p {
    font-size: 0.85rem;
    color: var(--ind-slate-400);
    line-height: 1.5;
}

/* --- Services: Grid --- */
.ind-services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ind-service-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #fff;
    border: 1px solid var(--ind-slate-200);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
}

.ind-service-card:nth-child(even) {
    direction: rtl;
}

.ind-service-card:nth-child(even) > * {
    direction: ltr;
}

.ind-service-card:hover {
    border-color: var(--ind-accent);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.ind-service-img {
    height: 100%;
    min-height: 200px;
    overflow: hidden;
}

.ind-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind-service-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ind-slate-100, #f1f5f9);
    color: var(--ind-slate-400, #94a3b8);
}

.ind-service-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ind-service-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ind-accent);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ind-service-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ind-slate-900);
    margin-bottom: 10px;
}

.ind-service-body p {
    font-size: 0.9rem;
    color: var(--ind-slate-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* --- Battery Finder (industrial) --- */
.ind-battery-finder {
    text-align: center;
    padding: 40px 24px;
    background: var(--ind-slate-800);
    border-radius: 8px;
    border: 1px solid var(--ind-slate-700);
    margin-top: 32px;
}

.ind-battery-finder h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.ind-battery-finder p {
    color: var(--ind-slate-400);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

/* --- Products: Category Cards --- */
.ind-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.ind-product-cat {
    background: #fff;
    border: 1px solid var(--ind-slate-200);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
}

.ind-product-cat:hover {
    border-color: var(--ind-accent);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.ind-product-cat-header {
    padding: 16px 20px;
    background: var(--ind-slate-900);
    border-bottom: 2px solid var(--ind-accent);
}

.ind-product-cat-header h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.ind-product-cat-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ind-product-cat-items li {
    padding: 10px 20px;
    border-bottom: 1px solid var(--ind-slate-100);
    font-size: 0.85rem;
    color: var(--ind-slate-600);
    transition: background 0.15s;
}

.ind-product-cat-items li:last-child {
    border-bottom: none;
}

.ind-product-cat-items li:hover {
    background: var(--ind-slate-50);
    color: var(--ind-slate-900);
}

/* --- Products: Brand Grid --- */
.ind-brands-section {
    padding: 56px 0;
    background: var(--ind-slate-900);
}

.ind-brands-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.ind-brand-item {
    background: var(--ind-slate-800);
    border: 1px solid var(--ind-slate-700);
    border-radius: 8px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.ind-brand-item:hover {
    border-color: var(--ind-accent);
    background: var(--ind-slate-700);
}

.ind-brand-item img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
    transition: all 0.2s;
}

.ind-brand-item:hover img {
    opacity: 1;
    filter: none;
}

/* --- Contact: Layout --- */
.ind-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ind-contact-info {
    background: var(--ind-slate-800);
    border: 1px solid var(--ind-slate-700);
    border-radius: 8px;
    padding: 32px 28px;
}

.ind-contact-info-title {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ind-accent);
    margin-bottom: 24px;
}

.ind-contact-item {
    margin-bottom: 24px;
}

.ind-contact-item h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ind-slate-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.ind-contact-item p,
.ind-contact-item address {
    color: #fff;
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.6;
}

.ind-contact-item a {
    color: var(--ind-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.ind-contact-item a:hover {
    color: #fff;
}

.ind-contact-image img {
    width: 100%;
    border-radius: 8px;
    margin-top: 24px;
    border: 1px solid var(--ind-slate-700);
}

.ind-contact-map {
    background: #fff;
    border: 1px solid var(--ind-slate-200);
    border-radius: 8px;
    padding: 28px 24px;
}

.ind-contact-map-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ind-slate-900);
    margin-bottom: 16px;
}

.ind-map-wrap {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.ind-map-title {
    margin-top: 28px;
}

.ind-quote-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.ind-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ind-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ind-form-field label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ind-slate-500);
}

.ind-form-field input,
.ind-form-field select,
.ind-form-field textarea {
    width: 100%;
    border: 1px solid var(--ind-slate-200);
    border-radius: 6px;
    padding: 11px 12px;
    color: var(--ind-slate-800);
    font: inherit;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ind-form-field input:focus,
.ind-form-field select:focus,
.ind-form-field textarea:focus {
    outline: none;
    border-color: var(--ind-accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.15);
}

.ind-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.ind-form-success,
.ind-form-errors {
    border-radius: 6px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.ind-form-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.ind-form-errors {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #9f1239;
}

.ind-form-errors p {
    margin: 0 0 4px;
}

.ind-form-errors p:last-child {
    margin-bottom: 0;
}

.ind-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ind-map-wrap iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* --- Contact: Inquiries --- */
.ind-inquiries {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.ind-inquiries p {
    font-size: 0.95rem;
    color: var(--ind-slate-400);
    line-height: 1.7;
    margin-bottom: 16px;
}

.ind-inquiries .ind-phone {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ind-accent);
}

.ind-inquiries .ind-phone:hover {
    color: #fff;
}

/* --- Industrial CTA (Subpage) --- */
.ind-page-cta {
    padding: 48px 0;
    background: var(--ind-slate-900);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ind-page-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ind-accent), transparent);
}

.ind-page-cta h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.ind-page-cta p {
    color: var(--ind-slate-400);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* --- Subpage Responsive --- */
@media (max-width: 1024px) {
    .ind-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ind-page-hero {
        padding: 80px 20px 36px;
    }

    .ind-page-title {
        font-size: 1.5rem;
    }

    .ind-section {
        padding: 40px 0;
    }

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

    .ind-service-card {
        grid-template-columns: 1fr;
    }

    .ind-service-card:nth-child(even) {
        direction: ltr;
    }

    .ind-service-img {
        min-height: 180px;
        max-height: 200px;
    }

    .ind-contact-grid {
        grid-template-columns: 1fr;
    }

    .ind-form-grid {
        grid-template-columns: 1fr;
    }

    .ind-products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .ind-values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .ind-products-grid {
        grid-template-columns: 1fr;
    }

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

/* ===== PAGE HERO (Subpages - legacy) ===== */
.page-hero {
    padding: 80px 20px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    position: relative;
}

.page-hero-overlay {
    display: none;
}

.page-hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.page-hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== SECTIONS (Subpages) ===== */
.section {
    padding: 48px 0;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.section-title.text-gold {
    color: var(--gold);
}

.title-line {
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 24px;
    border-radius: 2px;
}

.title-line.gold {
    background: var(--gold);
}

.section-box {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ===== ABOUT PAGE ===== */
.section-about {
    background: var(--gray-50);
}

.about-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 14px;
    line-height: 1.7;
}

.product-list {
    margin: 16px 0;
    padding-left: 20px;
}

.product-list li {
    margin-bottom: 10px;
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.9rem;
}

.product-list strong {
    color: var(--gray-800);
}

/* ===== SERVICES PAGE ===== */
.section-services {
    background: var(--gray-50);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even)>* {
    direction: ltr;
}

.service-detail-image {
    height: 200px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.service-detail-description {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.battery-finder-section {
    text-align: center;
    padding: 32px 24px;
    background: var(--primary);
    border-radius: var(--radius);
    margin-top: 32px;
}

.battery-finder-section h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.battery-finder-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

/* ===== MODAL STYLES ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--accent);
}

.modal-icon svg {
    width: 100%;
    height: 100%;
}

.modal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.modal-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-actions .btn {
    flex: 1;
    max-width: 160px;
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-800);
    border: 1px solid var(--gray-200);
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--gray-200);
}

/* ===== CTA SECTION (Subpages) ===== */
.section-cta {
    background: var(--accent);
    padding: 32px 0;
    text-align: center;
}

.section-cta h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.section-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.section-cta .btn-primary {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}

.section-cta .btn-primary:hover {
    background: transparent;
    color: var(--white);
}

/* ===== CONTACT PAGE ===== */
.section-contact {
    background: var(--gray-50);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-info-card,
.contact-map-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-info-card {
    background: var(--primary);
}

.contact-info-card .section-title {
    color: var(--gold);
}

.contact-details {
    margin-bottom: 20px;
}

.contact-detail-item {
    margin-bottom: 16px;
}

.contact-detail-item h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-detail-item p,
.contact-detail-item address {
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    font-size: 0.9rem;
}

.phone-number a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

.phone-number a:hover {
    color: var(--white);
}

.contact-image img {
    width: 100%;
    border-radius: var(--radius);
}

.map-container {
    margin-top: 16px;
    border-radius: var(--radius);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

/* ===== CATALOGS PAGE ===== */
.catalogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.catalog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.2s;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.catalog-card-image {
    height: 140px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.catalog-card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.catalog-card-content {
    padding: 16px;
    text-align: center;
}

.catalog-card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.catalog-card-content p {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* ===== EMBEDDED CATALOG ===== */
.embedded-catalog {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 32px;
    box-shadow: var(--shadow);
}

.embedded-catalog h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.catalog-filters {
    background: var(--gray-100);
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.filter-row input,
.filter-row select {
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.85rem;
    background: var(--white);
}

.filter-row input {
    flex: 1;
    min-width: 160px;
}

.filter-row button {
    padding: 8px 16px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

.filter-row button:hover {
    background: var(--accent-hover);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.category-pill {
    padding: 5px 12px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    font-size: 0.8rem;
    color: var(--gray-600);
    transition: all 0.2s;
}

.category-pill:hover,
.category-pill.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.results-count {
    color: var(--gray-600);
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.products-list,
.embedded-products-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.embedded-products-list {
    max-height: 400px;
    overflow-y: auto;
}

.product-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.product-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.product-summary:hover {
    background: var(--gray-50);
}

.product-summary h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
}

.product-summary span {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.product-details {
    display: none;
    padding: 14px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.product-details.active {
    display: block;
}

.product-details p {
    margin-bottom: 6px;
    color: var(--gray-600);
    font-size: 0.85rem;
}

.product-details strong {
    color: var(--gray-800);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
}

.pagination a,
.pagination span {
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.pagination a:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.pagination .active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.no-results {
    text-align: center;
    padding: 32px;
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== PRODUCTS PAGE ===== */
.section-products {
    background: var(--gray-50);
}

.products-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.product-category {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-200);
}

.product-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-list-items .product-item {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

.product-list-items .product-item:last-child {
    border-bottom: none;
}

.product-name {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== BRANDS GRID (Products Page) ===== */
.section-brands {
    background: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.brands-grid .brand-logo {
    background: var(--gray-50);
    padding: 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    opacity: 1;
}

.brands-grid .brand-logo:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

.brands-grid .brand-logo img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    filter: none;
}

/* ===== CATALOGS EMBEDDED ===== */
.section-embedded-catalog {
    background: var(--gray-50);
}

.section-intro {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 600px;
}

.filter-form {
    width: 100%;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
}

.filter-buttons {
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--gray-600);
    border-color: var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-400);
    border-color: var(--gray-400);
    color: var(--white);
}

.category-nav {
    margin-bottom: 16px;
}

.category-nav h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.results-info {
    background: var(--white);
    padding: 10px 14px;
    border-radius: var(--radius);
    margin-bottom: 12px;
    border-left: 4px solid var(--accent);
}

.results-info p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.85rem;
}

.embedded-product-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 6px;
    overflow: hidden;
}

.embedded-product-item .product-summary {
    padding: 10px 14px;
}

.product-main-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-part-number {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.9rem;
}

.product-type {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.product-expand-icon {
    color: var(--gray-400);
    transition: transform 0.2s;
}

.embedded-product-item.expanded .product-expand-icon {
    transform: rotate(180deg);
}

.product-expanded-details {
    display: none;
    padding: 14px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.embedded-product-item.expanded .product-expanded-details {
    display: block;
}

.detail-row {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.detail-label {
    font-weight: 600;
    color: var(--gray-800);
    min-width: 100px;
    font-size: 0.85rem;
}

.detail-value {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f172a;
        padding: 12px;
        border-top: 1px solid rgba(148, 163, 184, 0.1);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 2px;
    }

    .nav-link {
        padding: 10px 14px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .brands-row {
        gap: 16px;
    }

    .brand-logo img {
        height: 28px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

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

    .page-hero-title {
        font-size: 1.25rem;
    }

    .section {
        padding: 32px 0;
    }

    .section-box {
        padding: 16px;
    }

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

    .service-detail:nth-child(even) {
        direction: ltr;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 12px;
    }

    .logo-text {
        font-size: 0.68rem;
        letter-spacing: 0.04em;
    }

    .logo-img {
        width: 30px;
        height: 30px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

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

    .quick-card {
        padding: 16px 12px;
    }
}

/* ===== CATALOG PAGE STYLES ===== */
.catalog-intro {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.catalog-filter-form {
    margin-bottom: 20px;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.filter-input,
.filter-select {
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.85rem;
    background: var(--white);
}

.filter-input {
    min-width: 180px;
}

.filter-select {
    min-width: 140px;
}

.results-count {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.products-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.products-table th,
.products-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.products-table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.products-table tbody tr:hover {
    background: var(--gray-50);
}

.products-table td {
    color: var(--gray-600);
}

.external-catalogs {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.external-catalogs h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.catalog-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.catalog-link {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.catalog-link:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.catalog-link span {
    font-weight: 600;
    color: var(--gray-800);
}

.catalog-link small {
    color: var(--gray-400);
    font-size: 0.8rem;
}

/* ===== NEW CATALOG PAGE STYLES ===== */

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.catalog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.catalog-card-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
}

.catalog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.catalog-card-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.catalog-badge {
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.catalog-card-desc {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 16px;
    flex-grow: 1;
}

.catalog-card-featured .catalog-card-desc {
    color: rgba(255, 255, 255, 0.85);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.category-pill {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-pill:hover,
.category-pill.active {
    background: var(--accent);
    border-color: var(--accent);
}

.catalog-card-actions {
    margin-top: auto;
}

.section-intro {
    color: var(--gray-600);
    margin-bottom: 24px;
    max-width: 600px;
}

.section-alt {
    background: var(--gray-50);
}

/* Search Results Grid */
.search-results {
    margin-top: 24px;
}

.results-summary {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px;
    transition: all 0.2s;
}

.product-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.product-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.part-number {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

.page-link {
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.page-link:hover {
    background: var(--accent);
}

.product-card-body {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.product-category {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.product-type {
    color: var(--gray-400);
    font-size: 0.75rem;
    padding: 4px 0;
}

.product-card-specs {
    display: flex;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

.spec {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--gray-400);
    font-weight: 600;
}

.spec-value {
    font-size: 0.8rem;
    color: var(--gray-800);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 8px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-600);
    font-size: 0.85rem;
    transition: all 0.2s;
}

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

.page-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.page-dots {
    color: var(--gray-400);
    padding: 0 4px;
}

.no-results {
    text-align: center;
    padding: 48px 24px;
    color: var(--gray-600);
}

.no-results p {
    margin-bottom: 16px;
}

/* ===== INDUSTRIAL CATALOG - PREMIUM UI ===== */

/* --- Industrial Catalog Container --- */
.industrial-catalog {
    --cat-ancra: #3b82f6;
    --cat-fillrite: #dc2626;
    --cat-continental: #059669;
    --cat-milton: #7c3aed;
    --ind-orange: #e94560;
    --ind-orange-hover: #d63d56;
    --ind-yellow: #eab308;
    --ind-slate-900: #0f172a;
    --ind-slate-800: #1e293b;
    --ind-slate-700: #334155;
    --ind-slate-600: #475569;
    --ind-slate-500: #64748b;
    --ind-slate-400: #94a3b8;
    --ind-slate-300: #cbd5e1;
    --ind-slate-200: #e2e8f0;
    --ind-slate-100: #f1f5f9;
    --ind-slate-50: #f8fafc;
    --ind-glow: 0 0 0 3px rgba(233, 69, 96, 0.25);
    --ind-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.06);
    --ind-shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -2px rgba(15, 23, 42, 0.1);
    --ind-shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.1);
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
    background: var(--ind-slate-50);
}

/* --- Hero Section --- */
.industrial-catalog .page-hero {
    background: linear-gradient(160deg, var(--ind-slate-900) 0%, var(--ind-slate-800) 40%, #0c2d57 100%);
    padding: 100px 24px 44px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--ind-orange);
}

.industrial-catalog .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.industrial-catalog .page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.industrial-catalog .page-hero-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    position: relative;
    margin-bottom: 8px;
}

.industrial-catalog .page-hero-subtitle {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--ind-slate-400);
    letter-spacing: 0.04em;
    position: relative;
}

.industrial-catalog .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 20px;
    position: relative;
}

.industrial-catalog .hero-stat {
    display: flex;
    flex-direction: column;
}

.industrial-catalog .hero-stat-value {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ind-orange);
    line-height: 1;
}

.industrial-catalog .hero-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ind-slate-400);
    margin-top: 4px;
}

/* --- Tab Navigation --- */
.industrial-catalog .catalog-tabs {
    background: var(--ind-slate-800);
    padding: 0;
    position: sticky;
    top: 52px;
    z-index: 90;
    border-bottom: 1px solid var(--ind-slate-700);
}

.industrial-catalog .tabs-wrapper {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--ind-slate-600) transparent;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.industrial-catalog .tabs-wrapper::-webkit-scrollbar {
    height: 3px;
}

.industrial-catalog .tabs-wrapper::-webkit-scrollbar-thumb {
    background: var(--ind-slate-600);
    border-radius: 3px;
}

.industrial-catalog .catalog-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: transparent;
    border-radius: 0;
    color: var(--ind-slate-400);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.industrial-catalog .catalog-tab:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--ind-slate-200);
    border-bottom-color: var(--ind-slate-500);
}

.industrial-catalog .catalog-tab.active {
    background: rgba(249, 115, 22, 0.08);
    color: var(--ind-orange);
    border-bottom-color: var(--ind-orange);
}

.industrial-catalog .tab-name {
    font-weight: 600;
}

.industrial-catalog .tab-count {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    opacity: 0.8;
}

.industrial-catalog .catalog-tab.active .tab-count {
    background: rgba(249, 115, 22, 0.2);
    color: var(--ind-orange);
}

/* --- Search & Filter Toolbar --- */
.industrial-catalog .catalog-filters {
    background: var(--ind-slate-800);
    padding: 16px 0;
    border-bottom: 1px solid var(--ind-slate-700);
}

.industrial-catalog .filter-form {
    margin-bottom: 0;
}

.industrial-catalog .filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.industrial-catalog .search-box {
    display: flex;
    flex: 1;
    min-width: 280px;
    max-width: 460px;
    position: relative;
}

.industrial-catalog .search-input {
    flex: 1;
    padding: 10px 16px 10px 40px;
    background: var(--ind-slate-700);
    border: 1px solid var(--ind-slate-600);
    border-radius: 6px 0 0 6px;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: all 0.2s;
}

.industrial-catalog .search-input::placeholder {
    color: var(--ind-slate-500);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-style: italic;
}

.industrial-catalog .search-input:focus {
    outline: none;
    border-color: var(--ind-orange);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
    background: var(--ind-slate-900);
}

.industrial-catalog .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ind-slate-500);
    pointer-events: none;
    width: 18px;
    height: 18px;
}

.industrial-catalog .search-btn {
    padding: 10px 20px;
    background: var(--ind-orange);
    color: #fff;
    border: 1px solid var(--ind-orange);
    border-left: none;
    border-radius: 0 6px 6px 0;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.2s;
}

.industrial-catalog .search-btn:hover {
    background: var(--ind-orange-hover);
    border-color: var(--ind-orange-hover);
}

.industrial-catalog .category-select {
    padding: 10px 36px 10px 14px;
    background: var(--ind-slate-700);
    border: 1px solid var(--ind-slate-600);
    border-radius: 6px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 180px;
    cursor: pointer;
    transition: all 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.industrial-catalog .category-select:focus {
    outline: none;
    border-color: var(--ind-orange);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

.industrial-catalog .category-select option {
    background: var(--ind-slate-800);
    color: #fff;
}

.industrial-catalog .clear-filters {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ind-slate-400);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 14px;
    border: 1px solid var(--ind-slate-600);
    border-radius: 6px;
    transition: all 0.2s;
}

.industrial-catalog .clear-filters:hover {
    color: var(--ind-orange);
    border-color: var(--ind-orange);
    text-decoration: none;
}

/* --- Results Bar --- */
.industrial-catalog .results-bar {
    background: var(--ind-slate-100);
    border-bottom: 1px solid var(--ind-slate-200);
    padding: 10px 0;
}

.industrial-catalog .results-info {
    font-size: 0.8rem;
    color: var(--ind-slate-500);
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
    background: none;
    padding: 0;
    border-left: none;
}

.industrial-catalog .results-info strong {
    color: var(--ind-slate-700);
    font-weight: 700;
}

/* --- Product Cards Grid --- */
.industrial-catalog .catalog-products {
    padding: 28px 0 48px;
    background: var(--ind-slate-50);
}

.industrial-catalog .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.industrial-catalog .product-card {
    background: #fff;
    border: 1px solid var(--ind-slate-200);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.industrial-catalog .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--ind-slate-300);
    transition: background 0.25s;
}

.industrial-catalog .product-card[data-catalog="Ancra"]::before { background: var(--cat-ancra); }
.industrial-catalog .product-card[data-catalog="Fill-Rite"]::before { background: var(--cat-fillrite); }
.industrial-catalog .product-card[data-catalog="Continental"]::before { background: var(--cat-continental); }
.industrial-catalog .product-card[data-catalog="Milton"]::before { background: var(--cat-milton); }

.industrial-catalog .product-card:hover {
    border-color: var(--ind-orange);
    box-shadow: var(--ind-glow), var(--ind-shadow-lg);
    transform: translateY(-3px) scale(1.01);
}

.industrial-catalog .product-card:hover::before {
    background: var(--ind-orange);
}

/* Card Header */
.industrial-catalog .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px 10px 20px;
    border-bottom: 1px solid var(--ind-slate-100);
    background: var(--ind-slate-50);
}

.industrial-catalog .catalog-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.industrial-catalog .catalog-ancra { background: rgba(59, 130, 246, 0.12); color: var(--cat-ancra); }
.industrial-catalog .catalog-fill-rite { background: rgba(220, 38, 38, 0.1); color: var(--cat-fillrite); }
.industrial-catalog .catalog-continental { background: rgba(5, 150, 105, 0.1); color: var(--cat-continental); }
.industrial-catalog .catalog-milton { background: rgba(124, 58, 237, 0.1); color: var(--cat-milton); }

.industrial-catalog .page-ref {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--ind-slate-400);
    padding: 3px 8px;
    background: var(--ind-slate-100);
    border-radius: 4px;
    transition: all 0.2s;
}

.industrial-catalog .page-ref:hover {
    background: var(--ind-slate-800);
    color: #fff;
}

.industrial-catalog .page-ref svg {
    width: 12px;
    height: 12px;
}

/* Card Body - Part Number Focus */
.industrial-catalog .card-body {
    padding: 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.industrial-catalog .part-number-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.industrial-catalog .pn-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--ind-slate-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ind-slate-400);
    transition: all 0.25s;
}

.industrial-catalog .product-card:hover .pn-icon {
    background: rgba(249, 115, 22, 0.1);
    color: var(--ind-orange);
}

.industrial-catalog .pn-icon svg {
    width: 18px;
    height: 18px;
}

.industrial-catalog .part-number {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ind-slate-800);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.industrial-catalog .part-number small {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--ind-slate-400);
    letter-spacing: 0;
    margin-top: 2px;
}

/* Card Specs Row */
.industrial-catalog .card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 10px 0 0;
    border-top: 1px dashed var(--ind-slate-200);
}

.industrial-catalog .spec-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.industrial-catalog .spec-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ind-slate-400);
}

.industrial-catalog .spec-value {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ind-slate-700);
}

/* Card Footer */
.industrial-catalog .card-footer {
    padding: 10px 20px 14px;
}

.industrial-catalog .view-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ind-orange);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.2s;
}

.industrial-catalog .view-link:hover {
    gap: 10px;
    color: var(--ind-orange-hover);
}

.industrial-catalog .view-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.industrial-catalog .view-link:hover svg {
    transform: translateX(2px);
}

/* --- Pagination --- */
.industrial-catalog .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.industrial-catalog .page-btn {
    padding: 8px 14px;
    border: 1px solid var(--ind-slate-200);
    border-radius: 6px;
    background: #fff;
    color: var(--ind-slate-600);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s;
}

.industrial-catalog .page-btn:hover {
    border-color: var(--ind-orange);
    color: var(--ind-orange);
    background: rgba(249, 115, 22, 0.04);
}

.industrial-catalog .page-btn.active {
    background: var(--ind-orange);
    border-color: var(--ind-orange);
    color: #fff;
    font-weight: 700;
}

.industrial-catalog .page-dots {
    color: var(--ind-slate-400);
    padding: 0 4px;
    font-family: var(--font-mono);
}

/* --- No Results --- */
.industrial-catalog .no-results {
    text-align: center;
    padding: 64px 24px;
    color: var(--ind-slate-500);
}

.industrial-catalog .no-results h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ind-slate-700);
    margin-bottom: 8px;
}

.industrial-catalog .no-results p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.industrial-catalog .no-results .btn-primary {
    background: var(--ind-orange);
    border-color: var(--ind-orange);
}

.industrial-catalog .no-results .btn-primary:hover {
    background: var(--ind-orange-hover);
    border-color: var(--ind-orange-hover);
}

/* --- PDF Downloads Section --- */
.industrial-catalog .downloads-section {
    padding: 48px 0;
    background: var(--ind-slate-800);
    border-top: 3px solid var(--ind-slate-700);
}

.industrial-catalog .downloads-section .section-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.industrial-catalog .downloads-section .title-line {
    background: var(--ind-orange);
    width: 40px;
    height: 3px;
    border-radius: 2px;
    margin-bottom: 8px;
}

.industrial-catalog .downloads-section .section-intro {
    color: var(--ind-slate-400);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.industrial-catalog .pdf-downloads {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin-top: 0;
}

.industrial-catalog .pdf-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--ind-slate-700);
    border: 1px solid var(--ind-slate-600);
    border-radius: 8px;
    transition: all 0.25s;
}

.industrial-catalog .pdf-card:hover {
    border-color: var(--ind-orange);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.15);
    transform: translateY(-2px);
}

.industrial-catalog .pdf-card .pdf-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(249, 115, 22, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--ind-orange);
    transition: all 0.25s;
}

.industrial-catalog .pdf-card:hover .pdf-icon {
    background: var(--ind-orange);
    color: #fff;
}

.industrial-catalog .pdf-card .pdf-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.industrial-catalog .pdf-card .pdf-info span {
    font-size: 0.75rem;
    color: var(--ind-slate-400);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .industrial-catalog .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .industrial-catalog .page-hero {
        padding: 80px 16px 32px;
    }

    .industrial-catalog .hero-stats {
        gap: 20px;
    }

    .industrial-catalog .tabs-wrapper {
        padding: 0 16px;
    }

    .industrial-catalog .catalog-tab {
        padding: 12px 14px;
        font-size: 0.75rem;
    }

    .industrial-catalog .catalog-filters .container {
        padding: 0 16px;
    }

    .industrial-catalog .filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .industrial-catalog .search-box {
        max-width: none;
        min-width: 0;
    }

    .industrial-catalog .category-select {
        min-width: 0;
        width: 100%;
    }

    .industrial-catalog .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .industrial-catalog .pdf-downloads {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .industrial-catalog .page-hero-title {
        font-size: 1.25rem;
    }

    .industrial-catalog .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .industrial-catalog .card-specs {
        grid-template-columns: 1fr;
    }
}

/* ===== PUBLIC TYPOGRAPHY TUNE =====
   Keep the existing public color system, but replace terminal-like mono
   typography with a warmer business sans. Admin pages use admin.css. */

body {
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}

.ind-home,
.ind-page,
.industrial-catalog {
    --font-mono: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer p,
.ind-top-cta-phone,
.ind-top-cta-link,
.ind-hero-tag,
.ind-section-tag,
.ind-section-label,
.ind-page-tag,
.ind-service-num,
.ind-contact-info-title,
.ind-form-field label,
.ind-cta-label,
.ind-stat-value,
.ind-cta-value,
.ind-inquiries .ind-phone,
.industrial-catalog .page-hero-subtitle,
.industrial-catalog .hero-stat-value,
.industrial-catalog .tab-count,
.industrial-catalog .search-input,
.industrial-catalog .results-info,
.industrial-catalog .part-number,
.industrial-catalog .page-ref,
.industrial-catalog .page-btn {
    font-family: inherit;
}

.footer p {
    letter-spacing: 0;
}

.ind-section-tag,
.ind-section-label,
.ind-page-tag,
.ind-service-num,
.ind-contact-info-title,
.ind-form-field label,
.ind-cta-label,
.industrial-catalog .catalog-tab,
.industrial-catalog .view-link {
    letter-spacing: 0.06em;
}

/* De-tech the public presentation without changing the established palette. */
.ind-hero::before,
.ind-modules::before,
.ind-brands::before,
.ind-page-hero::before,
.industrial-catalog .page-hero::before,
.industrial-catalog .page-hero::after {
    display: none;
}

.ind-hero-tag,
.ind-section-tag,
.ind-section-label,
.ind-page-tag,
.ind-service-num,
.ind-contact-info-title,
.ind-form-field label,
.ind-cta-label,
.ind-stat-label,
.ind-btn,
.ind-page .ind-btn,
.industrial-catalog .catalog-tab,
.industrial-catalog .catalog-badge,
.industrial-catalog .spec-label,
.industrial-catalog .view-link,
.industrial-catalog .search-btn,
.industrial-catalog .hero-stat-label {
    text-transform: none;
}

.ind-hero-title,
.ind-section-title,
.ind-page-title,
.industrial-catalog .page-hero-title {
    letter-spacing: 0;
}

.ind-hero-tag,
.ind-section-tag,
.ind-section-label,
.ind-page-tag,
.ind-service-num,
.ind-contact-info-title,
.ind-form-field label,
.ind-cta-label,
.ind-stat-label,
.industrial-catalog .catalog-tab,
.industrial-catalog .view-link,
.industrial-catalog .page-hero-subtitle,
.industrial-catalog .results-info {
    letter-spacing: 0.02em;
}

.ind-hero-tag .tag-dot {
    animation: none;
}

.ind-btn,
.ind-page .ind-btn {
    font-size: 0.92rem;
}

.ind-module:hover,
.ind-card:hover,
.ind-service-card:hover,
.ind-product-cat:hover,
.industrial-catalog .product-card:hover {
    transform: translateY(-2px);
}

/* Final CTA lock: compact top quote button and clear hero hierarchy. */
.ind-top-cta-inner {
    gap: 12px;
}

.ind-top-cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ind-top-cta-phone {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
}

.ind-top-cta-link,
.ind-top-cta-link:hover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px;
    border: 1px solid var(--ind-orange);
    border-radius: 6px;
    background: var(--ind-orange);
    color: #fff;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.ind-top-cta-link:hover {
    border-color: var(--ind-orange-hover);
    background: var(--ind-orange-hover);
}

.ind-top-cta-link::before {
    content: "";
    margin: 0;
}

.ind-hero-actions .ind-btn-primary {
    background: var(--ind-orange);
    border-color: var(--ind-orange);
    color: #fff;
}

.ind-hero-actions .ind-btn-primary:hover {
    background: var(--ind-orange-hover);
    border-color: var(--ind-orange-hover);
}

.ind-hero-actions .ind-btn-ghost {
    background: rgba(15, 23, 42, 0.48);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

@media (max-width: 768px) {
    .ind-top-cta-inner {
        gap: 8px;
    }

    .ind-top-cta-actions {
        gap: 10px;
    }

    .ind-top-cta-link,
    .ind-top-cta-link:hover {
        min-height: 34px;
        padding: 7px 12px;
    }
}

/* CTA hierarchy: quote is primary; phone is secondary but still high contrast. */
.ind-top-cta-inner {
    gap: 14px;
}

.ind-top-cta-actions {
    align-items: center;
    gap: 12px;
}

.ind-top-cta-phone {
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
}

.ind-top-cta-phone:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ind-top-cta-link {
    min-height: 36px;
    padding: 8px 15px;
    border: 1px solid var(--ind-orange);
    border-radius: 6px;
    background: var(--ind-orange);
    color: #fff;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.ind-top-cta-link::before {
    content: "";
    margin: 0;
}

.ind-top-cta-link:hover {
    background: var(--ind-orange-hover);
    border-color: var(--ind-orange-hover);
    color: #fff;
}

.ind-hero-actions .ind-btn-primary {
    background: var(--ind-orange);
    border-color: var(--ind-orange);
    color: #fff;
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.22);
}

.ind-hero-actions .ind-btn-primary:hover {
    background: var(--ind-orange-hover);
    border-color: var(--ind-orange-hover);
}

.ind-hero-actions .ind-btn-ghost {
    background: rgba(15, 23, 42, 0.48);
    border-color: rgba(255, 255, 255, 0.46);
    color: #fff;
}

.ind-hero-actions .ind-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .ind-top-cta-actions {
        gap: 10px;
    }

    .ind-top-cta-phone,
    .ind-top-cta-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .ind-top-cta-link {
        min-height: 34px;
        padding: 7px 12px;
    }

    .ind-top-cta-link::before {
        content: "";
        margin: 0;
    }
}

/* Public storefront feel: keep colors, replace app-like framing with service-company cues. */
.ind-top-cta {
    padding: 62px 0 0;
    background: var(--ind-slate-900);
}

.ind-top-cta-inner {
    max-width: none;
    width: 100%;
    min-height: 0;
    justify-content: center;
    padding: 8px 24px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
}

.ind-top-cta-copy {
    font-size: 0.9rem;
}

.ind-top-cta-copy span,
.ind-top-cta-copy strong {
    display: inline;
}

.ind-top-cta-actions {
    gap: 8px;
}

.ind-top-cta-phone,
.ind-top-cta-link {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
}

.ind-top-cta-link::before {
    content: "or";
    margin-right: 8px;
    color: var(--ind-slate-400);
    font-weight: 400;
}

.ind-top-cta-link:hover {
    background: transparent;
    color: #fff;
}

.ind-hero {
    min-height: calc(78vh - 62px);
    justify-content: flex-start;
    background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.58) 48%, rgba(15, 23, 42, 0.2) 100%),
        url('../images/hero-bg.jpg') center/cover no-repeat,
        var(--ind-slate-900);
}

.ind-hero-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 86px 24px 58px;
    text-align: left;
}

.ind-hero-tag {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    font-weight: 600;
}

.ind-hero-tag .tag-dot {
    display: none;
}

.ind-hero-title {
    max-width: 720px;
    font-size: clamp(2.35rem, 6vw, 4.6rem);
    line-height: 1.03;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.ind-hero-sub {
    max-width: 640px;
    margin-left: 0;
    margin-right: 0;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 400;
}

.ind-hero-actions,
.ind-hero-stats {
    justify-content: flex-start;
}

.ind-hero-stats {
    gap: 16px;
    width: min(680px, 100%);
    border-top-color: rgba(255, 255, 255, 0.18);
}

.ind-stat {
    text-align: left;
}

.ind-btn-primary:hover,
.ind-module:hover,
.ind-card:hover,
.ind-service-card:hover,
.ind-product-cat:hover,
.industrial-catalog .product-card:hover {
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.16);
}

@media (max-width: 768px) {
    .ind-top-cta {
        padding: 58px 0 0;
    }

    .ind-top-cta-inner {
        gap: 10px;
        padding: 9px 16px;
    }

    .ind-top-cta-copy {
        text-align: center;
        font-size: 0.86rem;
    }

    .ind-top-cta-copy span,
    .ind-top-cta-copy strong {
        display: inline;
    }

    .ind-top-cta-actions {
        width: 100%;
        justify-content: center;
    }

    .ind-top-cta-phone,
    .ind-top-cta-link {
        flex: 1;
        max-width: none;
        justify-content: center;
        padding: 7px 10px;
        border: 1px solid var(--ind-slate-600);
        border-radius: 6px;
    }

    .ind-top-cta-link {
        background: var(--ind-orange);
        border-color: var(--ind-orange);
    }

    .ind-top-cta-link::before {
        content: "";
        margin: 0;
    }

    .ind-hero {
        min-height: 64vh;
        background:
            linear-gradient(rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.7)),
            url('../images/hero-bg.jpg') center/cover no-repeat,
            var(--ind-slate-900);
    }

    .ind-hero-inner {
        padding: 58px 20px 42px;
        text-align: left;
    }

    .ind-hero-title {
        font-size: clamp(2.35rem, 12vw, 3.25rem);
    }

    .ind-hero-actions {
        justify-content: flex-start;
    }

    .ind-hero-stats {
        align-items: stretch;
    }
}

/* Storefront polish: less SaaS hero, simpler service-business contact strip. */
.ind-top-cta-inner {
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 8px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ind-top-cta-actions {
    width: auto;
    gap: 14px;
}

.ind-top-cta-phone,
.ind-top-cta-link {
    flex: 0 0 auto;
    max-width: none;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.ind-top-cta-link::before {
    content: "";
    margin: 0;
}

.ind-top-cta-link:hover {
    background: transparent;
}

.ind-hero {
    min-height: calc(68vh - 62px);
    background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.58) 0%, rgba(15, 23, 42, 0.4) 52%, rgba(15, 23, 42, 0.14) 100%),
        url('../images/hero-bg.jpg') center/cover no-repeat,
        var(--ind-slate-900);
}

.ind-hero-inner {
    padding: 72px 24px 54px;
}

.ind-hero-title {
    max-width: 680px;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.08;
}

.ind-hero-title .title-accent {
    color: inherit;
}

.ind-hero-sub {
    max-width: 600px;
    font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.ind-hero-actions {
    gap: 12px;
    margin-bottom: 36px;
}

.ind-hero-actions .ind-btn {
    padding: 10px 18px;
    font-size: 0.92rem;
    border-radius: 4px;
}

.ind-hero-actions .ind-btn-primary {
    box-shadow: none;
}

@media (max-width: 768px) {
    .ind-top-cta-inner {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 9px 16px 11px;
        text-align: center;
    }

    .ind-top-cta-copy,
    .ind-top-cta-actions {
        display: flex;
        justify-content: center;
        width: auto;
    }

    .ind-top-cta-copy {
        flex-wrap: wrap;
        gap: 4px;
        font-size: 0.84rem;
        line-height: 1.25;
    }

    .ind-top-cta-actions {
        gap: 12px;
    }

    .ind-top-cta-phone,
    .ind-top-cta-link {
        display: inline-flex;
        padding: 0;
        border: 0;
        background: transparent;
        font-size: 0.92rem;
        line-height: 1.25;
    }

    .ind-top-cta-phone::before {
        content: "";
    }

    .ind-top-cta-link::before {
        content: " · ";
        color: var(--ind-slate-400);
    }

    .ind-hero {
        min-height: 58vh;
        background:
            linear-gradient(rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.54)),
            url('../images/hero-bg.jpg') center/cover no-repeat,
            var(--ind-slate-900);
    }

    .ind-hero-inner {
        padding: 40px 20px 34px;
    }

    .ind-hero-title {
        max-width: 560px;
        font-size: clamp(1.85rem, 7.8vw, 2.35rem);
        line-height: 1.08;
    }

    .ind-hero-sub {
        max-width: 580px;
        font-size: 1rem;
        line-height: 1.45;
    }

    .ind-hero-actions {
        gap: 10px;
        margin-bottom: 28px;
    }

    .ind-hero-actions .ind-btn {
        width: auto;
        min-width: 0;
        padding: 9px 14px;
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .ind-hero-actions {
        align-items: flex-start;
    }

    .ind-hero-actions .ind-btn {
        width: auto;
    }
}

.industrial-catalog .product-card:hover {
    transform: translateY(-2px);
}

.ind-top-cta .ind-top-cta-primary,
.ind-top-cta .ind-top-cta-primary:hover {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px !important;
    border: 1px solid var(--ind-orange) !important;
    border-radius: 6px !important;
    background: var(--ind-orange) !important;
    color: #fff !important;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.ind-top-cta .ind-top-cta-primary:hover {
    border-color: var(--ind-orange-hover) !important;
    background: var(--ind-orange-hover) !important;
}

.ind-top-cta .ind-top-cta-primary::before {
    content: "" !important;
    margin: 0 !important;
}

.ind-hero {
    background-position: center center, center center, center center !important;
}

.ind-hero-stats .ind-stat-label {
    color: #fff;
}
