/* ============================================
   SOLUTIONS PAGE - MAXHUB-Inspired Clean Design
   Professional, Minimalist, Enterprise-Grade
   ============================================ */

:root {
    --mh-bg-white: #ffffff;
    --mh-bg-light: #f5f7fa;
    --mh-bg-gray: #f0f2f5;
    --mh-primary: #0066ff;
    --mh-primary-dark: #0052cc;
    --mh-text-dark: #1a1a2e;
    --mh-text-body: #4a4a5a;
    --mh-text-muted: #8a8a9a;
    --mh-border: #e5e7eb;
    --mh-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --mh-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
    --mh-radius: 16px;
    --mh-radius-sm: 12px;
    --mh-transition: all 0.3s ease;
}

/* Page Base */
.solutions-page {
    background: var(--mh-bg-white);
    color: var(--mh-text-dark);
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   HERO SECTION - Clean & Professional
   ============================================ */
.solutions-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 5% 80px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    overflow: hidden;
}

.solutions-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.solutions-hero-bg {
    display: none;
}

.solutions-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 24px;
}

.solutions-hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.solutions-hero-content h1 .text-gradient {
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions-hero-content .hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item .number {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-item .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

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

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--mh-transition);
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 168, 255, 0.35);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--mh-transition);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.scroll-indicator {
    display: none;
}

/* ============================================
   BRAND HERO CAROUSEL - Display Solutions
   Premium Full-Width Showcase
   ============================================ */
.solution-brand-hero {
    position: relative;
    width: 100%;
    background: #0a0a0f;
}

.brand-hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
}

.brand-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.brand-hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.brand-hero-slide .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.brand-hero-slide .slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 15, 0.8) 0%,
        rgba(26, 26, 46, 0.7) 50%,
        rgba(10, 10, 15, 0.85) 100%
    );
}

.brand-hero-slide .slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 40px 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.brand-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(0, 168, 255, 0.15);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #00a8ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.brand-hero-slide h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.brand-hero-slide h1 .text-gradient {
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-hero-slide .slide-subtext {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Stats Row */
.brand-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    justify-content: center;
}

.brand-hero-stats .stat-item {
    text-align: center;
}

.brand-hero-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00a8ff;
    line-height: 1.2;
}

.brand-hero-stats .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.brand-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.brand-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 168, 255, 0.4);
}

.brand-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.brand-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Carousel Dots */
.brand-hero-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.brand-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.brand-hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.brand-hero-dot.active {
    background: #00a8ff;
    transform: scale(1.2);
}

/* Brand Logos Section */
.brand-logos-section {
    background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 50px 0;
}

.brand-logos-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}

.brand-logos-container h4 {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.brand-logos-track {
    display: flex;
    gap: 60px;
    animation: scrollBrands 25s linear infinite;
    width: max-content;
}

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

.brand-logo {
    flex-shrink: 0;
    width: 120px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.1);
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-hero-carousel {
        height: 90vh;
        min-height: 600px;
    }

    .brand-hero-slide .slide-content {
        padding: 100px 24px 80px;
    }

    .brand-hero-badge {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .brand-hero-stats {
        gap: 24px;
    }

    .brand-hero-stats .stat-number {
        font-size: 1.4rem;
    }

    .brand-hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .brand-hero-btn-primary,
    .brand-hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .brand-hero-dots {
        bottom: 130px;
    }

    .brand-logos-track {
        gap: 40px;
    }

    .brand-logo {
        width: 80px;
        height: 35px;
    }
}

/* ============================================
   SOLUTION SECTIONS - Clean Card Layout
   ============================================ */
.solution-section {
    padding: 100px 5%;
    background: var(--mh-bg-white);
}

.solution-section:nth-child(even) {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
}

/* Dark section text colors */
.solution-section:nth-child(even) .solution-section-header .section-icon {
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
}

.solution-section:nth-child(even) .solution-section-header .section-icon i {
    color: #00a8ff;
}

.solution-section:nth-child(even) .solution-section-header h2 {
    color: #ffffff;
}

.solution-section:nth-child(even) .solution-section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.solution-section:nth-child(even) .product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-section:nth-child(even) .product-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 168, 255, 0.3);
}

.solution-section:nth-child(even) .product-card-image {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.solution-section:nth-child(even) .product-card-content h3 {
    color: #ffffff;
}

.solution-section:nth-child(even) .product-card-content p {
    color: rgba(255, 255, 255, 0.6);
}

.solution-section:nth-child(even) .product-card-link {
    color: #00a8ff;
}

.solution-section:nth-child(even) .product-card-specs .spec-tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.solution-section:nth-child(even) .product-card-specs .spec-tag i {
    color: #00a8ff;
}

.solution-section:nth-child(even) .featured-product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-section:nth-child(even) .featured-product-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 168, 255, 0.3);
}

.solution-section:nth-child(even) .featured-product-image {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.solution-section:nth-child(even) .featured-product-content h3 {
    color: #ffffff;
}

.solution-section:nth-child(even) .featured-product-content p {
    color: rgba(255, 255, 255, 0.7);
}

.solution-section:nth-child(even) .spec-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.solution-section:nth-child(even) .spec-tag i {
    color: #00a8ff;
}

/* Applications section dark theme */
.solution-section:nth-child(even) .application-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-section:nth-child(even) .application-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 168, 255, 0.3);
}

.solution-section:nth-child(even) .application-card-icon {
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
}

.solution-section:nth-child(even) .application-card h4 {
    color: #ffffff;
}

.solution-section-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Allow carousel to break out of container */
.solution-section {
    overflow-x: clip;
    overflow-y: visible;
}

/* Section Header */
.solution-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-section-header .section-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.solution-section-header .section-icon i {
    font-size: 28px;
    color: #00a8ff;
}

.solution-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--mh-text-dark);
    margin-bottom: 12px;
}

.solution-section-header p {
    font-size: 16px;
    color: var(--mh-text-body);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   MORE PRODUCTS SUBSECTION
   ============================================ */
.more-products-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 50px 0 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.more-products-header h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--mh-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.more-products-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 168, 255, 0.3) 0%, transparent 100%);
}

/* Dark section more products header */
.solution-section:nth-child(even) .more-products-header {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.solution-section:nth-child(even) .more-products-header h4 {
    color: rgba(255, 255, 255, 0.6);
}

.solution-section:nth-child(even) .more-products-header::after {
    background: linear-gradient(90deg, rgba(0, 168, 255, 0.3) 0%, transparent 100%);
}

/* Product Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ============================================
   PRODUCTS CAROUSEL (Edge-to-Edge, Draggable)
   ============================================ */
.products-carousel-wrapper {
    /* Break out of parent container to span full viewport */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: visible;
    padding: 20px 0;
    box-sizing: border-box;
}

.products-carousel {
    width: 100%;
    overflow-x: scroll;
    overflow-y: visible;
    position: relative;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 10px 0;
    /* Ensure scroll container works */
    display: block;
}

.products-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.products-carousel.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.products-carousel-track {
    display: inline-flex;
    gap: 24px;
    padding: 0;
    white-space: nowrap;
    /* No animation - manual scroll only */
}

/* First card starts exactly at left viewport edge */
.products-carousel-track > .product-card:first-child {
    margin-left: 0;
}

/* Last card ends exactly at right viewport edge */
.products-carousel-track > .product-card:last-child {
    margin-right: 0;
}

.products-carousel .product-card {
    flex-shrink: 0;
    width: 300px;
    margin: 0;
    cursor: grab;
    user-select: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-carousel.dragging .product-card {
    cursor: grabbing;
    pointer-events: none;
}

.products-carousel .product-card:active {
    cursor: grabbing;
}

/* Dark section carousel adjustments */
.solution-section:nth-child(even) .products-carousel-wrapper {
    background: transparent;
}

.solution-section:nth-child(even) .products-carousel .product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-section:nth-child(even) .products-carousel .product-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 168, 255, 0.3);
}

.solution-section:nth-child(even) .products-carousel .product-card-image {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.solution-section:nth-child(even) .products-carousel .product-card-content h3 {
    color: #ffffff;
}

.solution-section:nth-child(even) .products-carousel .product-card-content p {
    color: rgba(255, 255, 255, 0.6);
}

.solution-section:nth-child(even) .products-carousel .product-card-link {
    color: #00a8ff;
}

.solution-section:nth-child(even) .products-carousel .product-card-specs .spec-tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .products-carousel .product-card {
        width: 280px;
    }
}

@media (max-width: 576px) {
    .products-carousel .product-card {
        width: 260px;
    }

    .products-carousel-track {
        gap: 16px;
    }
}

/* Ensure no clipping on carousel edges */
.products-carousel-wrapper::before,
.products-carousel-wrapper::after {
    display: none;
}

/* Smooth scroll behavior when not dragging */
.products-carousel:not(.dragging) {
    scroll-behavior: smooth;
}

/* Product Card - Unified Style */
.product-card {
    background: var(--mh-bg-white);
    border-radius: var(--mh-radius);
    overflow: hidden;
    box-shadow: var(--mh-shadow);
    transition: var(--mh-transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--mh-shadow-hover);
    border-color: rgba(0, 168, 255, 0.2);
}

.product-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--mh-transition);
}

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

.product-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--mh-text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card-content p {
    font-size: 13px;
    color: var(--mh-text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

/* Product Card Specs - Matching Featured Cards */
.product-card-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.product-card-specs .spec-tag {
    padding: 4px 8px;
    font-size: 10px;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(0, 168, 255, 0.15);
}

.product-card-specs .spec-tag i {
    font-size: 9px;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #00a8ff;
    transition: var(--mh-transition);
    margin-top: auto;
}

.product-card-link i {
    font-size: 11px;
    transition: var(--mh-transition);
}

.product-card:hover .product-card-link {
    gap: 10px;
}

.product-card:hover .product-card-link i {
    transform: translateX(4px);
}

/* Featured Products - Larger Cards */
.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-product-card {
    background: var(--mh-bg-white);
    border-radius: var(--mh-radius);
    overflow: hidden;
    box-shadow: var(--mh-shadow);
    transition: var(--mh-transition);
    text-decoration: none;
}

.featured-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--mh-shadow-hover);
}

.featured-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f0f4f8 0%, #e4e9ef 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--mh-radius-sm);
    transition: var(--mh-transition);
}

.featured-product-card:hover .featured-product-image img {
    transform: scale(1.03);
}

.featured-product-content {
    padding: 28px;
}

.featured-product-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--mh-text-dark);
    margin-bottom: 10px;
}

.featured-product-content p {
    font-size: 15px;
    color: var(--mh-text-body);
    line-height: 1.6;
    margin-bottom: 16px;
}

.featured-product-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.spec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--mh-bg-light);
    border-radius: 6px;
    font-size: 12px;
    color: var(--mh-text-body);
    font-weight: 500;
}

.spec-tag i {
    color: #00a8ff;
    font-size: 11px;
}

/* ============================================
   DISPLAY BRANDS CAROUSEL
   Enterprise SaaS-style brand showcase
   ============================================ */
.display-brands-section {
    margin-top: 70px;
    padding: 50px 0;
    background: #fafbfc;
    border-radius: 20px;
    overflow: hidden;
}

.display-brands-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.display-brands-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.display-brands-header p {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 400;
}

.display-brands-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
    padding: 10px 0;
}

.display-brands-carousel:active {
    cursor: grabbing;
}

.display-brands-track {
    display: flex;
    gap: 50px;
    animation: scrollDisplayBrands 30s linear infinite;
    width: max-content;
    padding: 0 25px;
}

.display-brands-carousel:hover .display-brands-track {
    animation-play-state: paused;
}

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

.display-brand-item {
    flex-shrink: 0;
    width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.display-brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.display-brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.display-brand-item:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

/* Dragging state */
.display-brands-carousel.dragging .display-brands-track {
    animation: none !important;
}

/* Responsive */
@media (max-width: 992px) {
    .display-brands-section {
        margin-top: 50px;
        padding: 40px 0;
    }

    .display-brands-header h3 {
        font-size: 1.3rem;
    }

    .display-brand-item {
        width: 120px;
        height: 50px;
        padding: 12px 16px;
    }

    .display-brands-track {
        gap: 35px;
    }
}

@media (max-width: 576px) {
    .display-brands-section {
        margin-top: 40px;
        padding: 30px 0;
        border-radius: 0;
    }

    .display-brands-header h3 {
        font-size: 1.15rem;
    }

    .display-brands-header p {
        font-size: 0.85rem;
    }

    .display-brand-item {
        width: 100px;
        height: 45px;
        padding: 10px 14px;
    }

    .display-brands-track {
        gap: 25px;
    }
}

/* Category Row */
.category-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-pill {
    padding: 12px 24px;
    background: var(--mh-bg-white);
    border: 2px solid var(--mh-border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--mh-text-body);
    cursor: pointer;
    transition: var(--mh-transition);
    text-decoration: none;
}

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

.category-pill i {
    margin-right: 8px;
}

/* View All Link */
.view-all-link {
    text-align: center;
    margin-top: 50px;
}

.view-all-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid var(--mh-primary);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--mh-primary);
    text-decoration: none;
    transition: var(--mh-transition);
}

.view-all-link a:hover {
    background: var(--mh-primary);
    color: white;
}

/* ============================================
   APPLICATIONS SECTION
   ============================================ */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.application-card {
    background: var(--mh-bg-white);
    border-radius: var(--mh-radius-sm);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--mh-shadow);
    transition: var(--mh-transition);
    text-decoration: none;
}

.application-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--mh-shadow-hover);
}

.application-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--mh-transition);
}

.application-card:hover .application-card-icon {
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
}

.application-card-icon i {
    font-size: 24px;
    color: #00a8ff;
    transition: var(--mh-transition);
}

.application-card:hover .application-card-icon i {
    color: white;
}

.application-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--mh-text-dark);
}

/* ============================================
   BRANDS CAROUSEL SECTION
   ============================================ */
.brands-carousel-section {
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.brands-carousel-container {
    max-width: 100%;
    margin: 0 auto;
}

.brands-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

.brands-header .section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #00a8ff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brands-header .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #1a1a2e;
}

.brands-header .section-title .highlight {
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brands-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 15px;
}

/* Brands Carousel Wrapper */
.brands-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 40px;
}

.brands-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    gap: 40px;
    animation: scrollBrands 40s linear infinite;
    width: max-content;
}

.brands-carousel:hover .brands-track {
    animation-play-state: paused;
}

.brands-carousel.dragging .brands-track {
    animation-play-state: paused;
}

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

/* Brand Card Styles */
.brand-card {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.brand-card:active {
    cursor: grabbing;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 168, 255, 0.2);
}

.brand-card img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    transition: all 0.4s ease;
}

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

/* Projects Carousel Wrapper */
.projects-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.projects-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.projects-track {
    display: flex;
    gap: 25px;
    animation: scrollProjects 35s linear infinite;
    width: max-content;
}

.projects-carousel:hover .projects-track {
    animation-play-state: paused;
}

.projects-carousel.dragging .projects-track {
    animation-play-state: paused;
}

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

/* Project Card Styles */
.project-card {
    flex-shrink: 0;
    width: 320px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.project-card:active {
    cursor: grabbing;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-overlay span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Responsive Styles for Brands Carousel */
@media (max-width: 992px) {
    .brands-carousel-section {
        padding: 80px 0;
    }

    .brand-card {
        width: 150px;
        height: 85px;
        padding: 15px 20px;
    }

    .brand-card img {
        max-height: 40px;
    }

    .project-card {
        width: 280px;
        height: 175px;
    }
}

@media (max-width: 576px) {
    .brands-carousel-section {
        padding: 60px 0;
    }

    .brands-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .brands-track {
        gap: 25px;
    }

    .projects-track {
        gap: 15px;
    }

    .brand-card {
        width: 130px;
        height: 75px;
        padding: 12px 15px;
        border-radius: 12px;
    }

    .brand-card img {
        max-height: 35px;
    }

    .project-card {
        width: 240px;
        height: 150px;
        border-radius: 14px;
    }

    .project-overlay {
        padding: 15px;
    }

    .project-overlay span {
        font-size: 0.85rem;
    }
}

/* ============================================
   CTA / GET IN TOUCH SECTION
   ============================================ */
.cta-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--mh-transition);
    border: none;
    cursor: pointer;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 168, 255, 0.35);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--mh-transition);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.cta-contact-item i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #00a8ff;
}

.cta-contact-item span {
    font-size: 15px;
    font-weight: 500;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .product-card-specs {
        gap: 6px;
    }

    .product-card-specs .spec-tag {
        font-size: 9px;
        padding: 3px 6px;
    }
}

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

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

    .hero-stats-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .solutions-hero {
        min-height: 60vh;
        padding: 100px 5% 60px;
    }

    .hero-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stat-item {
        flex: 1 1 40%;
    }

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

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

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

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

    .category-row {
        gap: 10px;
    }

    .category-pill {
        padding: 10px 18px;
        font-size: 13px;
    }

    .cta-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .more-products-header {
        margin: 40px 0 24px;
        padding-top: 30px;
    }

    .more-products-header h4 {
        font-size: 12px;
    }

    .product-card-content {
        padding: 16px;
    }

    .product-card-content h3 {
        font-size: 14px;
    }

    .product-card-content p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .product-card-specs {
        gap: 4px;
        margin-bottom: 10px;
    }

    .product-card-specs .spec-tag {
        font-size: 9px;
        padding: 3px 5px;
    }

    .product-card-badge {
        font-size: 8px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .solutions-hero-content h1 {
        font-size: 28px;
    }

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

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

    .solution-section-header h2 {
        font-size: 28px;
    }

    .product-card-image {
        aspect-ratio: 16/9;
        padding: 16px;
    }

    .product-card-content {
        padding: 20px;
    }

    .product-card-content h3 {
        font-size: 16px;
    }

    .product-card-content p {
        font-size: 13px;
    }

    .product-card-specs .spec-tag {
        font-size: 10px;
        padding: 4px 8px;
    }

    .more-products-header h4 {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

/* ============================================
   HEADER - Global Transparent Glass Style
   ============================================ */
/* Removed page-specific overrides - using global transparent header */
