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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #007bff;
    --accent-color: #28a745;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --hover-color: #0056b3;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

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

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 30px;
}

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

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

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

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

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    background-color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.lang-dropdown-toggle:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
}

.lang-flag {
    font-size: 18px;
}

.lang-code {
    color: var(--primary-color);
}

.lang-arrow {
    font-size: 12px;
    color: var(--text-light);
    transition: var(--transition);
}

.lang-dropdown-toggle:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    padding: 10px 0;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.lang-dropdown:hover .lang-dropdown-menu,
.lang-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    text-align: left;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.lang-dropdown-item:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

.lang-dropdown-item.active {
    color: var(--secondary-color);
    background-color: rgba(0, 123, 255, 0.08);
}

.lang-name {
    margin-left: 5px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    background-color: white;
    color: #333;
    padding: 14px 20px;
    border-radius: 16px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 8px 8px 0;
    border-style: solid;
    border-color: transparent white transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-tooltip.auto-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.whatsapp-tooltip span:first-child {
    font-size: 15px;
    font-weight: 600;
    color: #25d366;
}

.tooltip-sub {
    font-size: 12px;
    color: #666;
}

.card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.navbar-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 30px;
}

.navbar-center {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}

.navbar-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-lang-item {
    display: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 40px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 999;
}

.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    padding: 8px 0;
    z-index: 1000;
    opacity: 0;
    transform-origin: top center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: white;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

.nav-dropdown .dropdown-menu li {
    padding: 0;
}

.nav-dropdown .dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: var(--text-color);
    white-space: nowrap;
    transition: all 0.2s ease;
    gap: 12px;
}

.nav-dropdown .dropdown-menu li a:hover {
    background-color: var(--bg-color);
    color: var(--secondary-color);
}

.nav-dropdown .dropdown-menu li a::after {
    display: none;
}

.nav-dropdown .dropdown-menu li a::before {
    content: '→';
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nav-dropdown .dropdown-menu li a:hover::before {
    opacity: 1;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    vertical-align: middle;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.lang-switcher {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.lang-btn {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background-color: white;
}

.lang-btn:hover,
.lang-btn.active {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    /* Equal top/bottom padding so flex centering is visually at screen center */
    padding-top: 80px;
    padding-bottom: 80px;
    box-sizing: border-box;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

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

.features {
    background-color: white;
}

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

.feature-card {
    background-color: var(--bg-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-number {
    font-size: 36px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 8px;
    display: block;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

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

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

.quality-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quality-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.quality-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.quality-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.products-preview {
    background-color: white;
}

.products-preview .container {
    max-width: 100%;
    padding: 0 25px;
}

#homeProductGrid {
    max-width: 1075px;
    margin: 0 auto;
}

.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    justify-content: center;
}

.product-more-btn {
    text-align: center;
    margin-top: 40px;
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 250px;
}

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    width: 250px;
    height: 420px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.product-image {
    height: 250px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e8f0fe 0%, #d6e4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image .placeholder {
    width: 120px;
    height: 120px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.product-info {
    padding: 20px;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.partners {
    background-color: var(--bg-color);
    overflow: hidden;
}

.partner-scroller {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partner-scroller::before,
.partner-scroller::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 10;
    pointer-events: none;
}

.partner-scroller::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.partner-scroller::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.partner-track {
    display: flex;
    will-change: transform;
}

.partner-track .logo-item {
    flex-shrink: 0;
    width: 140px;
    height: 70px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    margin-right: 25px;
}

.partner-track .logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-track .logo-item img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .partner-track .logo-item {
        width: 100px;
        height: 55px;
        margin-right: 15px;
    }
    
    @keyframes scrollLeft {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

@media (max-width: 480px) {
    .partner-track .logo-item {
        width: 80px;
        height: 45px;
        margin-right: 12px;
    }
    
    .partner-scroller::before,
    .partner-scroller::after {
        width: 30px;
    }
}

.sustainability {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 80px 0;
    color: white;
}

.sustainability-header {
    text-align: center;
    margin-bottom: 60px;
}

.sustainability-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.sustainability-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.sustainability-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.sustainability-header p {
    font-size: 18px;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.sustainability-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.sustainability-stat {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sustainability-stat:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.sustainability .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.sustainability .stat-label {
    font-size: 14px;
    color: white;
}

.sustainability-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.sustainability-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sustainability-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 28px;
}

.sustainability-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.sustainability-card p {
    font-size: 14px;
    color: white;
    line-height: 1.6;
    margin: 0;
}

.sustainability-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sustainability-footer p {
    font-size: 18px;
    font-style: italic;
    color: white;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

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

@media (max-width: 768px) {
    .sustainability-header h2 {
        font-size: 28px;
    }
    
    .sustainability-header p {
        font-size: 16px;
    }
    
    .sustainability-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .sustainability-cards {
        grid-template-columns: 1fr;
    }
    
    .sustainability-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .sustainability-stats {
        grid-template-columns: 1fr;
    }
    
    .sustainability-footer p {
        font-size: 16px;
    }
}

.cta {
    text-align: center;
    background-color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-preview {
    background-color: white;
}

.blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.blog-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image .placeholder {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 123, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.blog-content {
    padding: 24px;
}

.blog-content .category {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-content .read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.blog-content .read-more:hover {
    text-decoration: underline;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}



.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.page-header {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

.page-header .orb-3 {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 6s ease-in-out infinite;
}

.page-header .pattern-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb span:last-child {
    color: white;
    font-weight: 500;
}

.header-content {
    max-width: 700px;
}

.header-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-content p {
    font-size: 20px;
    opacity: 0.8;
}

.header-content .hero-desc {
    font-size: 16px;
    opacity: 0.7;
    margin-top: 15px;
    line-height: 1.6;
}

.about-content {
    background-color: white;
}

.about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-image {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.vision {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 60px 0;
    color: white;
}

.vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
}

.vision-left {
    text-align: left;
}

.vision-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.vision-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.vision-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.vision-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic;
}

.vision-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.vision-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vision-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.vision-card-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.vision-card-icon svg {
    width: 28px;
    height: 28px;
}

.vision-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.vision-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.vision-statement {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.vision-statement p {
    font-size: 20px;
    font-style: italic;
    color: white;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vision-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.vision-author-name {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.vision-author-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .vision-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-left {
        text-align: center;
    }
    
    .vision-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .vision-right {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vision-left h2 {
        font-size: 28px;
    }
    
    .vision-statement p {
        font-size: 16px;
    }
    
    .vision-card {
        padding: 25px 20px;
    }
}

.journey {
    background-color: white;
}

.journey-scroller {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    margin-top: 20px;
}

.journey-scroller::before,
.journey-scroller::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.journey-scroller::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.journey-scroller::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.journey-track {
    display: flex;
    will-change: transform;
}

.journey-slide {
    flex-shrink: 0;
    width: 280px;
    margin-right: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.journey-slide:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.journey-slide-img {
    width: 100%;
    height: 373px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .journey-scroller::before,
    .journey-scroller::after {
        width: 40px;
    }
    
    .journey-slide {
        width: 200px;
        margin-right: 15px;
    }
    
    .journey-slide-img {
        height: 267px;
    }
}

.product-categories {
    background-color: white;
    width: 100%;
}

.product-categories > .container {
    max-width: 100%;
    padding: 0 25px;
}

#productGrid {
    max-width: 1350px;
    margin: 0 auto;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-tabs-vertical {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-tab {
    padding: 12px 30px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background-color: white;
}

.category-tabs-vertical .category-tab {
    padding: 14px 20px;
    border-radius: 12px;
    text-align: left;
}

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

.products-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
}

.category-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.category-sidebar h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.products-main {
    min-width: 0;
}

.products-count {
    text-align: right;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.pagination-btn {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background-color: white;
}

.pagination-btn:hover:not(:disabled) {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.product-capacity {
    display: inline-block;
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 8px;
}

@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .category-sidebar {
        position: relative;
        top: auto;
    }

    .category-sidebar h3 {
        display: none;
    }

    .category-tabs-vertical {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .category-tabs-vertical .category-tab {
        padding: 10px 20px;
        border-radius: 20px;
        text-align: center;
    }

    .products-count {
        text-align: center;
    }
}

.customization-process {
    background-color: white;
}

.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    transform: translateY(-50%);
}

.process-step {
    position: relative;
    text-align: center;
    padding: 30px 20px;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.customization-options {
    background-color: var(--bg-color);
}

.custom-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.custom-option-card {
    background-color: white;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-option-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.custom-option-icon svg {
    width: 28px;
    height: 28px;
}

.custom-option-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.custom-option-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.customization-cases {
    background-color: white;
}

.custom-cases-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.custom-case-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: var(--bg-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom-case-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.custom-case-card.reverse {
    flex-direction: row-reverse;
}

.case-image-wrapper {
    flex-shrink: 0;
    width: 45%;
}

.case-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #e8f0fe 0%, #d6e4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image .placeholder {
    font-size: 80px;
}

.case-content {
    flex: 1;
    padding: 45px;
}

.case-category {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.case-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.case-metrics {
    display: flex;
    gap: 30px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content-section {
    background-color: white;
}

.blog-full-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.career-culture {
    background-color: white;
}

.culture-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.culture-card {
    text-align: center;
    padding: 40px 20px;
}

.culture-card .culture-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0056b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.culture-card .culture-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.culture-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.culture-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.job-listings {
    background-color: var(--bg-color);
}

.job-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.job-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.job-title {
    font-size: 20px;
    font-weight: 600;
}

.job-location {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

.job-description {
    color: var(--text-light);
    margin-bottom: 20px;
}

.job-requirements {
    margin-bottom: 20px;
}

.job-requirements h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.job-requirements ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-light);
}

.job-requirements li {
    margin-bottom: 8px;
}

.apply-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.apply-btn:hover {
    background-color: var(--hover-color);
}

.contact-content {
    background-color: white;
}

.contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding: 40px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.terms-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-color);
}

.terms-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.terms-section ul {
    margin-top: 15px;
    padding-left: 25px;
}

.terms-section ul li {
    font-size: 16px;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 24px;
    text-transform: none;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-color);
}

.client-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin: 0 4px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0056b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.benefit-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.benefit-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-benefits {
    text-align: left;
    max-width: 600px;
    margin: 20px auto 0;
    padding-left: 20px;
}

.contact-benefits li {
    font-size: 16px;
    line-height: 2;
    color: var(--text-light);
    list-style: none;
}

.social-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.social-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background-color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.social-icon img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    filter: grayscale(100%) brightness(0.7);
}

.social-icon:hover img {
    filter: grayscale(0%) brightness(1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item .contact-icon {
    color: var(--secondary-color);
    margin-right: 15px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item .contact-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e8f0fe 0%, #d6e4ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.map-placeholder .placeholder {
    width: 100px;
    height: 100px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.contact-form {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: 12px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

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

.form-status {
    display: none;
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid transparent;
}

.form-status--success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.form-status--error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 900px) {
    .navbar-center {
        position: static;
        flex: none;
        margin: 0;
    }

    .navbar-center:not(.mobile-expanded) {
        display: none;
    }

    .navbar-center.mobile-expanded {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        margin-top: 0;
    }

    .navbar-center.mobile-expanded .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .navbar-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }

    .navbar-right .lang-dropdown {
        display: block;
    }

    .navbar-right .lang-dropdown .lang-dropdown-toggle {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 20px;
    }

    .navbar-right .lang-dropdown .lang-flag {
        font-size: 14px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        font-size: 24px;
        padding: 0;
        background: none;
        border: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-6 {
        grid-template-columns: 1fr;
    }

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

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

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

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

[dir="rtl"] .navbar {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
    direction: rtl;
}

[dir="rtl"] .lang-switcher {
    margin-left: 0;
    margin-right: 20px;
}

[dir="rtl"] .feature-item,
[dir="rtl"] .product-card,
[dir="rtl"] .blog-card {
    direction: rtl;
}

[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-item .contact-icon {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .job-header {
    flex-direction: row-reverse;
}

.blog-detail-section {
    padding: 60px 0;
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-header {
    margin-bottom: 30px;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.meta-item {
    display: flex;
    align-items: center;
}

.blog-detail-image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.placeholder-large {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    background: linear-gradient(135deg, var(--bg-color) 0%, #f5f5f5 100%);
}

.blog-detail-body {
    line-height: 1.8;
}

.blog-detail-body h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.blog-detail-body p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.blog-detail-list,
.blog-detail-ordered {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-detail-list li,
.blog-detail-ordered li {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.tag {
    padding: 6px 14px;
    background-color: rgba(0, 123, 255, 0.1);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 13px;
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--secondary-color);
    color: white;
}

.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition);
}

.share-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Blog card and detail images */
.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.blog-detail-inline-image {
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-detail-inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-inline-caption {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
    line-height: 1.5;
}

.blog-detail-body p.drop-cap::first-letter {
    font-size: 3.2em;
    font-weight: 700;
    float: left;
    line-height: 0.85;
    margin: 6px 10px 0 0;
    color: var(--secondary-color);
}

.blog-detail-body blockquote {
    margin: 24px 0;
    padding: 18px 24px;
    border-left: 4px solid var(--secondary-color);
    background-color: rgba(0, 123, 255, 0.05);
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    border-radius: 0 8px 8px 0;
}

.blog-detail-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-detail-tags .tag-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 6px;
}

/* Blog navigation (prev/next) */
.blog-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    gap: 20px;
    flex-wrap: wrap;
}

.blog-nav-link {
    display: flex;
    flex-direction: column;
    padding: 16px 22px;
    background-color: var(--bg-color);
    border-radius: 10px;
    transition: var(--transition);
    text-decoration: none;
    max-width: 45%;
}

.blog-nav-link:hover {
    background-color: rgba(0, 123, 255, 0.08);
    transform: translateY(-2px);
}

.blog-nav-direction {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.blog-nav-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
}

.blog-nav-link.blog-nav-back {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-nav-link.blog-nav-back .blog-nav-title {
    color: var(--secondary-color);
}

.product-detail-section {
    padding: 120px 0 60px;
}

.product-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-main-image {
    border-radius: 16px;
    overflow: hidden;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: var(--bg-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.thumbnail:hover {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.product-detail-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-detail-info p {
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.price-label {
    font-weight: 600;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-btn {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    transition: var(--transition);
}

.option-btn:hover {
    border-color: var(--secondary-color);
}

.option-btn.active {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.color-options {
    display: flex;
    gap: 12px;
}

.color-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.color-btn:hover {
    transform: scale(1.1);
}

.color-btn.active {
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.product-features-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.product-spec-tags {
    margin-bottom: 30px;
}

.spec-tag-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.spec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.spec-tag {
    padding: 8px 16px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-dark);
}

.feature-check {
    color: var(--secondary-color);
    font-weight: 700;
}

.certification-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.cert-item {
    padding: 12px 28px;
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.cert-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.worldwide-reach {
    background-color: var(--bg-color);
}

.worldwide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.worldmap-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.worldmap-bg {
    width: 100%;
    height: auto;
    display: block;
}

.map-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-marker {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #007bff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: breathe 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.6);
}

@keyframes breathe {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0.4;
        box-shadow: 0 0 16px rgba(0, 123, 255, 0.9);
    }
}

.worldwide-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

@media (max-width: 992px) {
    .worldwide-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .worldwide-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .worldwide-stats {
        grid-template-columns: 1fr;
    }
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.company-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cert-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cert-doc-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    max-width: 220px;
    margin: 0 auto;
}

.cert-doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.cert-doc-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.cert-doc-info {
    padding: 15px;
    text-align: center;
}

.cert-doc-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.cert-doc-info p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cert-badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.cert-badge:hover .cert-badge-icon {
    transform: scale(1.1);
}

.cert-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.factory-gallery {
    background-color: white;
}

.factory-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.factory-stat {
    text-align: center;
    padding: 25px 15px;
    background-color: var(--bg-color);
    border-radius: 12px;
}

.factory-stat .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.factory-stat .stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.factory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.factory-card {
    background-color: var(--bg-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.factory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.factory-card-image {
    height: 180px;
    overflow: hidden;
}

.factory-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.factory-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.factory-card-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

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

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

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.testimonial-company {
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .cert-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cert-doc-img {
        height: auto;
    }
    
    .cert-badges {
        gap: 20px;
    }
    
    .cert-badge-icon {
        width: 50px;
        height: 50px;
    }
    
    .cert-badge-icon svg {
        width: 25px;
        height: 25px;
    }
    
    }

.factory-item:hover .factory-overlay {
    opacity: 1;
}

.factory-overlay h3 {
    color: white;
    font-size: 16px;
    margin: 0 0 8px 0;
}

.factory-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin: 0;
}

.product-detail-specs {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.product-detail-specs h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}

.specs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.spec-item {
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: 12px;
}

.spec-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.spec-value {
    font-weight: 600;
    color: var(--primary-color);
}

.product-detail-related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.product-detail-images-section {
    margin-top: 40px;
}

.detail-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.detail-image-wrapper {
    overflow: hidden;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.detail-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.detail-image-wrapper:hover .detail-image {
    transform: scale(1.05);
}

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

@media (max-width: 480px) {
    .detail-images-grid {
        grid-template-columns: 1fr;
    }
}

.product-detail-related h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}

.product-detail-related .product-grid {
    grid-template-columns: repeat(auto-fill, 300px);
    justify-content: center;
}

.product-detail-related .product-card-link {
    width: 300px;
}

.product-detail-related .product-card {
    width: 300px;
}

.team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0056b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    color: white;
}

.team-avatar svg {
    width: 50px;
    height: 50px;
    fill: currentColor;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.team-title {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-divider {
    width: 40px;
    height: 2px;
    background-color: var(--border-color);
    margin: 0 auto 15px;
}

.team-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.team-skills span {
    padding: 6px 12px;
    background-color: var(--bg-color);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-light);
}

.customer-segments {
    background-color: var(--bg-color);
}

.customer-segments-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.customer-segment-item {
    background-color: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.customer-segment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.customer-segment-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0056b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.customer-segment-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.customer-segment-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.customer-segment-item p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.stats-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0056b3 100%);
    color: white;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.stat-value {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .customer-segments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

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

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

    .product-card-link,
    .product-card {
        width: 100%;
        margin: 0 auto;
    }

    .product-card {
        height: auto;
        min-height: 380px;
    }

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

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

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

    .placeholder-large {
        height: 250px;
        font-size: 50px;
    }

    .blog-detail-meta {
        flex-wrap: wrap;
    }

    .blog-navigation {
        flex-direction: column;
        gap: 12px;
    }

    .blog-nav-link {
        max-width: 100%;
        width: 100%;
    }

    .blog-detail-image img {
        max-height: 280px;
    }

    .blog-detail-body h2 {
        font-size: 20px;
    }
}

.hero-highlights {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.highlight-tag {
    padding: 10px 22px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.customization-value {
    background-color: var(--bg-color);
}

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

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

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

.customization-specs {
    background-color: white;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.spec-card {
    background-color: var(--bg-color);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.spec-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.spec-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.spec-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 14px;
    color: var(--text-light);
}

.spec-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.services-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-card.odm {
    border-color: var(--primary-color);
    background-color: rgba(0, 123, 255, 0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-meta {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 8px 15px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-color);
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.customization-faq {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-icon.rotated {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 0 0 25px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .custom-case-card,
    .custom-case-card.reverse {
        flex-direction: column;
    }
    
    .case-image-wrapper {
        width: 100%;
    }
    
    .case-image {
        height: 250px;
    }
    
    .case-content {
        padding: 30px;
    }
    
    .case-content h3 {
        font-size: 20px;
    }
    
    .case-metrics {
        gap: 20px;
    }
    
    .metric-value {
        font-size: 22px;
    }
}

.oem-value,
.odm-value {
    background-color: var(--bg-color);
}

.oem-what-is {
    background-color: white;
}

.oem-intro-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.oem-intro-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.oem-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.oem-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.oem-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background-color: var(--bg-color);
    border-radius: 12px;
}

.oem-benefit-icon {
    width: 32px;
    height: 32px;
}

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

.oem-benefit-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
}

.oem-rd-capabilities {
    background-color: var(--bg-color);
}

.oem-innovation {
    background-color: white;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.innovation-category {
    background-color: var(--bg-color);
    border-radius: 16px;
    overflow: hidden;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background-color: var(--primary-color);
}

.category-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 20px;
    height: 20px;
}

.category-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.innovation-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.innovation-item {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.innovation-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.innovation-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

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

.innovation-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.innovation-item p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.oem-custom-development {
    background-color: var(--bg-color);
}

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

.custom-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-icon {
    width: 55px;
    height: 55px;
    background-color: var(--primary-color);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.custom-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.custom-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.custom-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .oem-benefits-list {
        grid-template-columns: 1fr;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .innovation-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .innovation-items {
        grid-template-columns: 1fr;
    }
    
    .custom-grid {
        grid-template-columns: 1fr;
    }
}

.odm-what-is {
    background-color: white;
}

.odm-customization {
    background-color: var(--bg-color);
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.customization-card {
    background-color: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.customization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.customization-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customization-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
    padding: 12px;
    box-sizing: border-box;
}

.customization-card:hover .customization-image img {
    transform: scale(1.06);
}

.customization-content {
    padding: 18px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.customization-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 8px;
}

.customization-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.customization-content p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 0 12px;
}

.customization-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.customization-features li {
    font-size: 12px;
    color: var(--text-light);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.customization-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

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

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

.odm-intro-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.odm-intro-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.odm-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.odm-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.odm-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background-color: var(--bg-color);
    border-radius: 12px;
}

.odm-benefit-icon {
    font-size: 20px;
}

.odm-benefit-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
}

.odm-core {
    background-color: var(--bg-color);
}

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

.core-card {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.core-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.core-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.core-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.core-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.core-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.odm-customization {
    background-color: white;
}

.customization-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.customization-category {
    background-color: var(--bg-color);
    border-radius: 16px;
    overflow: hidden;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background-color: var(--primary-color);
}

.category-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
}

.category-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.category-items {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    gap: 12px;
}

.custom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background-color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    text-align: center;
}

.custom-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.item-preview {
    font-size: 28px;
}

.custom-item span {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-color);
}

@media (max-width: 1200px) {
    .core-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .odm-benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .core-grid {
        grid-template-columns: 1fr;
    }
    
    .customization-showcase {
        grid-template-columns: 1fr;
    }
}

.odm-comparison {
    background-color: var(--bg-color);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 3fr 3fr;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background-color: var(--primary-color);
    color: white;
}

.comparison-header .comparison-cell {
    color: white;
    font-weight: 600;
}

.comparison-cell {
    padding: 18px 20px;
    font-size: 15px;
}

.comparison-cell.feature {
    font-weight: 500;
    color: var(--text-color);
}

.comparison-cell.odm {
    background-color: rgba(255, 255, 255, 0.8);
}

.comparison-cell.oem {
    background-color: white;
}

.odm-product-platform {
    background-color: white;
}

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

.platform-card {
    background-color: var(--bg-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.platform-image {
    height: 120px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-image .placeholder {
    font-size: 48px;
}

.platform-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 20px 10px;
    color: var(--primary-color);
}

.platform-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0 20px 15px;
    line-height: 1.5;
}

.platform-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 20px;
}

.platform-tag {
    font-size: 11px;
    padding: 5px 12px;
    background-color: white;
    border-radius: 20px;
    color: var(--text-color);
    font-weight: 500;
}

.color-preview {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lid-icon svg,
.brand-icon svg,
.pkg-icon svg {
    width: 100%;
    height: 100%;
}

.odm-brand-value {
    background-color: var(--bg-color);
}

.brand-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.brand-value-card {
    background-color: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.brand-value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.brand-value-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.brand-value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.brand-value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .brand-value-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-row.comparison-header {
        display: none;
    }
    
    .comparison-cell.oem,
    .comparison-cell.odm {
        background-color: white;
    }
}

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

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

.stat-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.capability-card {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.capability-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.capability-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.capability-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.capability-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .stats-grid,
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-value {
        font-size: 36px;
    }
}

.oem-services,
.odm-services {
    background-color: white;
}

.oem-specs,
.odm-specs {
    background-color: var(--bg-color);
}

.oem-process,
.odm-process {
    background-color: white;
}

.oem-cases,
.odm-cases {
    background-color: var(--bg-color);
}

.oem-faq,
.odm-faq {
    background-color: white;
}

.oem-cta,
.odm-cta {
    text-align: center;
    background-color: white;
}

.odm-cta .cta-content,
.oem-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.odm-cta .cta-content h2,
.oem-cta .cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.odm-cta .cta-content p,
.oem-cta .cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.case-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.case-image {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-color) 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image .placeholder {
    font-size: 40px;
}

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

.case-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px;
    color: var(--primary-color);
}

.case-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0 20px 15px;
    line-height: 1.6;
}

.case-meta {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
    background-color: var(--bg-color);
}

.case-meta span {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 5px 12px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 20px;
}

.process-steps.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
    .process-steps.grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-steps.grid-5 {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
