/* Global Styles & Variables */
:root {
    --primary-color: #0f172a;
    /* Deep Navy */
    --secondary-color: #334155;
    /* Slate */
    --accent-color: #f59e0b;
    /* Amber/Gold */
    --text-light: #f8fafc;
    --text-dark: #1e293b;
    --bg-light: #f1f5f9;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
/* Navbar - Industrial Premium */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 17, 32, 0.85);
    /* Darker, more transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo-text {
    font-family: 'Outfit', sans-serif;
    /* More technical than Playfair */
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
    text-transform: uppercase;
}

.logo-text .accent {
    color: var(--accent-color);
    font-weight: 300;
    /* Contrast weight */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Lang Selector - Minimalist */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
    color: white;
}

.divider {
    font-size: 0.7rem;
}

/* Buttons */
.cta-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 2px;
    /* Sharper corners */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 1px solid transparent;
}

.cta-btn.primary {
    background-color: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.cta-btn.primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
    }

    .nav-links {
        display: none;
        /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 4px solid var(--accent-color);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    }

    .navbar.mobile-open .nav-links {
        display: flex;
        align-items: center;
        text-align: center;
    }

    .nav-actions {
        display: none;
        /* Hide actions like Get Quote on tiny screens unless refined */
    }
}

/* Hero Section Refined */
/* Hero Section - Industrial Premium */
.hero {
    height: 100vh;
    width: 100%;
    /* Deeper, more sophisticated overlay with radial focus */
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4) 0%, rgba(11, 17, 32, 0.95) 100%),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    padding-bottom: 120px;
    /* Safe space for scroll indicator */
}

/* Hero Content Styling */
.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    /* Massive responsive font */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    /* Tight tracking for impact */
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #94a3b8 100%);
    /* Metallic text gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #cbd5e1;
    /* Light grey text */
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

/* New Hero Elements */
.hero-badge {
    display: inline-block;
    color: var(--accent-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 0;
}

.scroll-indicator-modern {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

@media (max-height: 700px) {
    .scroll-indicator-modern {
        display: none;
    }

    .hero {
        padding-bottom: 40px;
    }
}

.scroll-indicator-modern:hover {
    color: var(--accent-color);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Stats Section - Floating Data Block */
.stats-section {
    margin-top: -5rem;
    /* Significant overlap with Hero */
    position: relative;
    z-index: 10;
    margin-bottom: 6rem;
    padding: 0 1rem;
}

.stats-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 4px;
    /* Sharper corners */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    position: relative;
    padding: 1rem;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    /* Darker number for contrast */
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-item p {
    color: #64748b;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* Partners Section - Calm & Professional */
.partners-section {
    padding: 4rem 0 6rem;
    background-color: white;
    position: relative;
    /* Removed borders for cleaner look */
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Removed old gradient pseudo-elements in favor of mask-image for better performance and look */
.partners-slider::before,
.partners-slider::after {
    display: none;
}

.partners-track {
    display: flex;
    gap: 5rem;
    /* More space between logos */
    width: max-content;
    animation: partnerScroll 50s linear infinite;
    /* Slower, more majestic scroll */
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes partnerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partners-track img {
    height: 50px;
    /* Slightly larger */
    width: auto;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.partners-track img:hover {
    transform: scale(1.15);
}

/* About Industrial Section */
.about-industrial-section {
    padding: 8rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.industrial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.ind-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
}

.ind-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.ind-lead {
    font-size: 1.25rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.ind-text {
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.ind-features {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ind-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ind-features i {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-top: 4px;
    background: rgba(245, 158, 11, 0.1);
    padding: 10px;
    border-radius: 4px;
}

.ind-features strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-family: 'Outfit', sans-serif;
}

.ind-features span {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.ind-image-wrapper {
    position: relative;
}

.ind-img-main {
    width: 100%;
    height: auto;
    border-radius: 2px;
    /* Industrial sharp */
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    filter: saturate(0.9) contrast(1.1);
    /* Slightly moody */
}

.ind-badge-float {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--accent-color);
}

.ind-badge-float .year {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    color: white;
}

.ind-badge-float .desc {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .industrial-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .ind-title {
        font-size: 2.5rem;
    }

    .ind-badge-float {
        left: 0;
        bottom: 0;
        position: relative;
        margin-top: -30px;
        margin-left: 20px;
        padding: 1.5rem;
        width: fit-content;
    }

    .ind-img-main {
        max-height: 400px;
        object-fit: cover;
    }
}

/* Products Section - Industrial Catalog */
.products-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.products-header {
    margin-bottom: 4rem;
    text-align: left;
    /* Corporate alignment */
}

.products-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.products-grid-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* Responsive catalog grid */
    gap: 2rem;
}

.catalog-card {
    background: white;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.catalog-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #f1f5f9;
    /* Placeholder bg */
}

.catalog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-img-wrapper img {
    transform: scale(1.05);
    /* Subtle zoom */
}

.catalog-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.catalog-code {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.catalog-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.catalog-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.5rem;
}

.catalog-specs li {
    font-size: 0.9rem;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.25rem;
}

.catalog-specs li strong {
    font-weight: 600;
    color: #475569;
}

.catalog-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafbfc;
}

.catalog-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.catalog-link:hover {
    color: var(--accent-color);
}

/* Why Us Section - Premium Industrial */
.why-us-section {
    padding: 8rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc;
    /* Lighter background */
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    /* Industrial Sharpness */
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    background: white;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.why-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-text p {
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.why-image {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
    /* Industrial moody look */
}

/* Testimonials Section - Executive/B2B Style */
.testimonials-section {
    padding: 8rem 0;
    background-color: #0f172a !important;
    /* Force Dark Background */
    background-image: radial-gradient(#1e293b 1px, transparent 1px);
    background-size: 20px 20px;
    color: white;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-section .section-header h2 {
    color: white;
}

.testimonials-section .section-header p {
    color: #94a3b8;
}

.testimonials-slider {
    margin-top: 4rem;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: testimonialScroll 40s linear infinite;
    /* Slow continuous scroll */
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 4px;
    min-width: 400px;
    max-width: 400px;
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
}

.testi-info h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-family: 'Outfit', sans-serif;
}

.testi-role {
    color: #94a3b8;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testi-body p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.testi-rating {
    margin-left: auto;
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* Process Section - Industrial Timeline */
.process-timeline-section {
    padding: 8rem 0;
    background-color: #ffffff;
    position: relative;
    border-top: 1px solid #f1f5f9;
}

.timeline-container {
    padding: 4rem 2rem;
    position: relative;
}

/* The connecting line */
.timeline-line {
    position: absolute;
    top: 50px;
    /* Adjust based on circle size */
    left: 0;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    /* Animated via JS or defaulted full for static */
    width: 75%;
    /* Static visual for now */
    background: var(--accent-color);
    transition: width 1.5s ease-out;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
}

.step-circle.active {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: white;
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.1);
}

.step-circle i {
    font-size: 1.2rem;
}

.step-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .timeline-steps {
        flex-direction: column;
        gap: 3rem;
    }

    .timeline-line {
        top: 0;
        left: 25px;
        width: 2px;
        height: 100%;
    }

    .timeline-progress {
        width: 100%;
        height: 75%;
    }

    .step-circle {
        margin: 0 0 1rem 0;
        float: left;
        margin-right: 1.5rem;
    }

    .step-content {
        text-align: left;
        overflow: hidden;
    }
}

/* Technical FAQ Section */
.technical-faq-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.faq-tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.faq-header-side h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-header-side p {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.top-faq-box {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.top-faq-box h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.top-faq-box p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.accordion-tech-item {
    background: white;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-tech-header {
    background: transparent;
    padding: 1.25rem;
    width: 100%;
    text-align: left;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #334155;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}

.accordion-tech-header:hover {
    background: #f8fafc;
}

.accordion-tech-header.active {
    color: var(--accent-color);
    background: #fff;
}

.accordion-tech-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: #fafbfc;
}

.accordion-tech-inner {
    padding: 1.25rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
}

.why-icon {
    width: 60px;
    height: 60px;
    background-color: #fffbeb;
    /* amber-50 */
    border-radius: 12px;
    /* Soft square */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.why-item:hover .why-icon {
    background-color: var(--accent-color);
}

.why-item:hover .why-icon i {
    color: white;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.why-text h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-text p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Banner */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials */
.testimonials-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
    position: relative;
    /* decorative background shape */
    background-image: radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 20%);
    overflow: hidden;
}

.testimonials-slider {
    margin-top: 4rem;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

/* Gradient Edges */
/* Removed white gradient edges that conflicted with dark theme */
.testimonials-slider::before,
.testimonials-slider::after {
    display: none;
}

.testimonials-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    width: 450px;
    flex-shrink: 0;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--accent-orange-light);
    /* subtly highlight border if defined or just transparent */
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.testi-avatar {
    width: 56px;
    height: 56px;
    background: #f0fdf4;
    /* default soft green */
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testi-info {
    flex: 1;
}

.testi-info h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.testi-role {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
}

.testi-rating {
    color: #fbbf24;
    /* amber-400 */
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: normal;
    /* Override italic */
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
}

/* Newsletter */
.newsletter-section {
    background-color: white;
    padding: 4rem 0;
    border-top: 1px solid #e2e8f0;
}

.newsletter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    min-width: 300px;
}

/* Footer & Contact Page Styles (Keep existing) */
/* ... (Ensure previous footer styles are maintained or merged implicitly by being consistent with generic tags) ... */
/* Footer - Premium Industrial */
footer {
    background-color: #0f172a;
    /* Slate 900 */
    color: #94a3b8;
    /* Slate 400 */
    padding: 6rem 0 2rem;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-col h3 {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--accent-color);
    opacity: 0.5;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-links a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-payment-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-logo {
    height: 24px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.payment-logo:hover {
    opacity: 1;
    filter: none;
}

/* Contact Styles from previous turn to not break dedicated page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0;
}

.contact-details-box {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

/* Animations & Micro-interactions */

/* Button Hover - Slide Arrow */
.cta-btn.primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn.primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #d97706;
    /* Darker amber */
    transition: width 0.3s ease;
    z-index: -1;
}

.cta-btn.primary:hover::after {
    width: 100%;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Why Icon Pulse */
.why-item:hover .why-icon {
    background-color: var(--accent-color);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.why-item:hover .why-icon i {
    color: white;
}

/* Glassmorphism Hints */
.stats-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Scroll Snap for Products/Mobile if needed, or better Card Hover */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

/* Footer Link Slide */
.footer-links a {
    position: relative;
    padding-left: 0;
    transition: padding 0.3s, color 0.3s;
}

.footer-links a:hover {
    padding-left: 10px;
    color: var(--accent-color);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s;
    color: var(--accent-color);
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {
    .stats-section {
        margin-top: 0;
        /* Remove overlap on mobile */
        margin-bottom: 4rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .stat-item:not(:last-child)::after {
        display: none;
        /* Remove vertical separators on mobile */
    }

    .ind-title {
        font-size: 2.2rem;
    }

    .ind-img-main {
        max-height: 300px;
    }
}

@media (max-width: 900px) {

    .why-grid,
    .newsletter-container {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .why-image {
        display: block;
        margin-top: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        min-width: unset;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
        /* Hidden by default, toggled via JS class */
    }

    /* Mobile Menu Active State */
    .navbar.mobile-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        animation: slideDown 0.3s ease-out forwards;
    }

    .navbar.mobile-open .nav-actions {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 180px);
        /* Adjust based on links height */
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding-bottom: 2rem;
        animation: slideDown 0.3s ease-out forwards;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        align-items: center;
    }

    .footer-col {
        width: 100%;
        text-align: center;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Truncation Utilities */
.news-excerpt,
.catalog-desc,
.variant-info p,
.support-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-excerpt {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    /* News looks better with 3 lines */
}

.variant-info p {
    -webkit-line-clamp: 4;
    line-clamp: 4;
    /* Category products can have 4 lines */
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}



/* Partner Logos Strip - Infinite Scroll */
.partners-section {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
    /* Hide overflow for infinite scroll */
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.partners-slider::before,
.partners-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.partners-track {
    display: inline-block;
    animation: scroll 35s linear infinite;
    gap: 4rem;
    /* Gap is handled by margin in inline-block or flex parent */
}

.partners-track:hover {
    animation-play-state: paused;
}

.partners-track img {
    height: 60px;
    width: auto;
    margin: 0 4.5rem;
    display: inline-block;
    filter: grayscale(1) opacity(0.7);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    vertical-align: middle;
    object-fit: contain;
}

.partners-track img:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .partners-track img {
        height: 35px;
        margin: 0 2rem;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Moves half way (duplicate set) */
    }
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background-color: white;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
}

/* Connecting Line */
.process-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    background: white;
    /* To hide line behind icon if needed, but icon has bg */
    width: 30%;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    /* Center horizontally */
    transition: all 0.3s ease;
    position: relative;
    /* Context */
}

.step-icon-wrapper i {
    font-size: 2rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

/* Active/Hover State */
.process-step:hover .step-icon-wrapper {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.1);
    transform: translateY(-5px);
}

.process-step:hover .step-icon-wrapper i {
    color: var(--accent-color);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--secondary-color);
    line-height: 1.5;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }

    .process-steps::before {
        width: 4px;
        height: 80%;
        left: 50%;
        top: 10%;
        transform: translateX(-50%);
    }

    .process-step {
        width: 100%;
    }
}

/* About Us Section (Homepage) */
.about-home-section {
    padding: 8rem 0;
    background-color: #fff;
    overflow: hidden;
    /* For image decoration containment */
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #eaf1ff;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    width: fit-content;
}

.about-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.about-content p {
    color: var(--secondary-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-stats-mini {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-stat strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.mini-stat span {
    font-size: 0.9rem;
    color: #64748b;
}

.separator-vertical {
    width: 1px;
    background: #e2e8f0;
    height: auto;
}



/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img {
        transform: rotate(0);
        margin-bottom: 2rem;
    }

    .experience-card {
        bottom: -10px;
        left: 20px;
    }
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.map-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 4rem;
    overflow: hidden;
    /* Contain pulsing */
}

.world-map-svg {
    width: 100%;
    height: auto;
    opacity: 0.6;
    /* Subtle map */
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.1));
}

.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 5;
}

.pulsating-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
}

.pulsating-circle:before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    left: -100%;
    top: -100%;
    border-radius: 50%;
    background-color: var(--accent-color);
    animation: pulse-ring 1.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    opacity: 0.6;
}

.pulsating-circle:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.8), 0 0 20px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.hotspot:hover .pulsating-circle:after {
    transform: scale(1.4);
    background-color: white;
    box-shadow: 0 0 15px white;
}

@keyframes pulse-ring {
    0% {
        transform: scale(.33);
    }

    80%,
    100% {
        opacity: 0;
    }
}

.hotspot-tooltip {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(15, 23, 42, 0.95) transparent transparent transparent;
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Hubs Directory Listing */
.hubs-directory {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hubs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: left;
}

.hubs-region h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hubs-region h4 i {
    font-size: 1.4rem;
}

.hubs-list {
    list-style: none;
    padding: 0;
}

.hubs-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.hubs-list li:hover {
    padding-left: 5px;
    color: var(--accent-color);
}

.hub-city {
    font-weight: 600;
    color: white;
}

.hub-type {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
}

.hq-badge {
    color: var(--accent-color) !important;
    background: rgba(245, 158, 11, 0.1) !important;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

@media (max-width: 991px) {
    .hubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hubs-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.map-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.map-stat-item {
    text-align: center;
}

.map-stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.map-stat-item p {
    color: #64748b;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* FAQ Section - Professional Redesign */
.faq-section {
    padding: 100px 0;
    background-color: #f8fafc;
    /* Very light slate */
}

.faq-grid {
    max-width: 850px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.accordion-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.accordion-item:hover {
    border-color: var(--accent-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.accordion-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.accordion-header span {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.3s ease;
    padding-right: 2rem;
}

.accordion-item.active .accordion-header span {
    color: var(--accent-color);
}

.accordion-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--accent-color);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Horizontal line */
.accordion-icon::before {
    width: 14px;
    height: 2px;
}

/* Vertical line */
.accordion-icon::after {
    width: 2px;
    height: 14px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
    /* Hide vertical line to make a minus */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fafafa;
}

.accordion-item.active .accordion-content {
    border-top: 1px solid #f1f5f9;
}

.accordion-inner {
    padding: 1.5rem 2rem 2rem;
    color: var(--secondary-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* News Section */
.news-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

/* Premium News Card Design */
/* Premium News Card Design */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.news-card {
    background: #ffffff;
    border-radius: 4px;
    /* Industrial sharp edges */
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
    border-color: var(--accent-color);
}

.news-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
    opacity: 1;
}

.news-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.news-category {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    background: rgba(245, 158, 11, 0.06);
    padding: 4px 10px;
    border-radius: 2px;
}

.news-date {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h3 {
    font-size: 1.45rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    line-height: 1.35;
    margin-bottom: 1.25rem;
    transition: color 0.3s ease;
}

.news-card:hover h3 {
    color: var(--accent-color);
}

.news-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.news-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
}

.read-more:hover i {
    transform: translateX(6px);
}

/* Newsletter Section - Premium Industrial */
.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    z-index: 2;
}

.newsletter-section h2 {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-section p {
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.newsletter-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #d97706;
    /* Darker amber */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        padding: 1rem;
        width: 100%;
    }
}

/* Support Section - Grid Redesign */
.support-grid-section {
    padding: 8rem 0;
    background-color: #f8fafc;
}

.support-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: #fff7ed;
    /* Light orange */
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.support-card h4 {
    font-size: 1.25rem;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.support-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.support-link:hover {
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .support-options-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Products Page Premium Redesign --- */
.products-hero {
    position: relative;
    padding: 180px 0 100px;
    background: #0b1120;
    color: white;
    text-align: center;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(at 0% 0%, rgba(245, 158, 11, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(15, 23, 42, 0.2) 0px, transparent 50%);
    pointer-events: none;
}

.products-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.2rem);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
}

.products-hero p {
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.25);
}

.solutions-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.solution-card-modern {
    position: relative;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 580px;
}

.solution-card-modern:hover {
    transform: translateY(-12px);
    border-color: var(--accent-color);
    box-shadow: 0 40px 80px -15px rgba(15, 23, 42, 0.12);
}

.card-image-wrapper {
    position: relative;
    height: 280px;
    width: 100%;
    overflow: hidden;
    background: #0b1120;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.solution-card-modern:hover .card-image-wrapper img {
    transform: scale(1.08);
    opacity: 1;
}

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(11, 17, 32, 0.4));
    pointer-events: none;
}

.card-badge-top {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(11, 17, 32, 0.8);
    backdrop-filter: blur(8px);
    color: var(--accent-color);
    padding: 6px 12px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 2px;
    z-index: 5;
}

.card-content-inner {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-id-mark {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-id-mark::before {
    content: '';
    width: 15px;
    height: 1px;
    background: var(--accent-color);
}

.solution-card-modern h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.card-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.card-technical-sheet {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

.tech-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tech-stat .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 1px;
}

.tech-stat .value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.card-action-trigger {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.solution-card-modern:hover .card-action-trigger {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    transform: rotate(45deg);
}

/* --- Industrial Process Section --- */
/* --- Partnership Process - Industrial Blueprint Evolution --- */
.industrial-process {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    /* Dotted Grid Background */
    background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
    background-size: 40px 40px;
}

.industrial-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #ffffff 0%, transparent 15%, transparent 85%, #ffffff 100%);
    pointer-events: none;
    z-index: 1;
}

.process-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    /* Slight gap for depth */
    margin-top: 8rem;
    position: relative;
    z-index: 2;
}

/* Horizontal Connector Line */
.process-grid-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 1px;
    background: dashed #e2e8f0;
    background-size: 10px 10px;
    z-index: -1;
    opacity: 0.5;
}

.process-card-step {
    padding: 4.5rem 3.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #f1f5f9;
    border-radius: 4px;
    text-align: left;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.process-card-step:hover {
    background: #ffffff;
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.12);
}

.step-number-large {
    position: absolute;
    top: -2.5rem;
    left: 3.5rem;
    font-size: 6rem;
    font-weight: 900;
    color: #f1f5f9;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    z-index: -1;
    transition: all 0.4s ease;
    -webkit-text-stroke: 1px #e2e8f0;
    color: transparent;
}

.process-card-step:hover .step-number-large {
    color: #fff7ed;
    -webkit-text-stroke: 1px var(--accent-color);
    transform: translateY(-10px);
    opacity: 0.5;
}

.step-icon-box {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 1.75rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.05);
    position: relative;
}

.step-icon-box::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.process-card-step:hover .step-icon-box {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-5px);
}

.process-card-step:hover .step-icon-box::after {
    opacity: 1;
    transform: scale(1.1);
}

.step-content-inner h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.step-content-inner p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.9;
}

/* Technical Details Sub-label */
.step-meta {
    margin-top: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.6;
}

.step-meta::after {
    content: '';
    height: 1px;
    flex-grow: 1;
    background: var(--accent-color);
}

/* Process Arrows for Desktop */
@media (min-width: 1025px) {
    .process-card-step:not(:last-child)::after {
        content: '\f178';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 50%;
        right: -12px;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.6rem;
        color: #94a3b8;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .process-card-step:hover::after {
        border-color: var(--accent-color);
        color: var(--accent-color);
        transform: translateY(-50%) translateX(5px);
    }
}

@media (max-width: 1200px) {
    .process-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .process-grid-modern::after {
        display: none;
    }

    .step-number-large {
        font-size: 4rem;
        top: -1.5rem;
    }
}

@media (max-width: 640px) {
    .process-grid-modern {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .process-card-step {
        padding: 3.5rem 2.5rem;
    }
}

/* ============================================
   UNIVERSAL RESPONSIVE PATCHES (MOBILE FIRST)
   ============================================ */

/* Small Mobile Adjustments (375px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
}

/* Tablet & Mobile Grid Fixes */
@media (max-width: 768px) {
    .stats-section {
        margin-top: -50px;
        margin-bottom: 3rem;
        padding: 0 1.5rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 2rem 1rem;
        background: #0f172a !important;
        /* Dark background for visibility */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        gap: 2rem 1rem;
    }

    .stat-item {
        padding: 0.5rem;
    }

    .stat-item h3 {
        color: white !important;
        font-size: 2rem !important;
        margin-bottom: 0.25rem !important;
    }

    .stat-item p {
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
    }

    .industrial-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-image {
        height: 300px;
    }

    .ind-badge-float {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-links a,
    .footer-social-links {
        justify-content: center;
    }

    .news-grid-industrial {
        grid-template-columns: 1fr;
    }

    .support-options-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Filter Bar on products.html */
    .filter-flex {
        flex-direction: column;
        gap: 1.5rem;
    }

    .filter-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .search-wrapper {
        width: 100%;
    }
}

/* Medium Screens (Laptops) */
@media (max-width: 1024px) {
    .solutions-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Product Cards Grid Fix (Universal) */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    }
}

@media (max-width: 580px) {
    .products-grid {
        grid-template-columns: 1fr !important;
    }

    .testimonial-card {
        width: 300px !important;
    }
}