.company-modern-wrapper {
    --primary-color: rgb(211, 37, 52);
    --primary-light: rgba(211, 37, 52, 0.1);
    --bg-light: rgb(255, 255, 255);
    --text-dark: rgb(27, 27, 27);
    --text-gray: #6b7280;
    --white: #ffffff;
    --border-radius: 16px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(211, 37, 52, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.company-modern-header {
    background: var(--white);
    padding: 40px 40px 32px;
    color: var(--text-dark);
    position: relative;
    border-bottom: 1px solid #e5e7eb;
}
.company-modern-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
    color: var(--text-dark);
}
.company-modern-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    color: var(--text-gray);
    line-height: 1.5;
}
.company-modern-content {
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}
.company-modern-text {
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.company-modern-text p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    color: var(--text-gray);
}
.company-modern-text p:last-of-type,
.company-modern-text p:last-child {
    margin-bottom: 0;
}
.company-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
}
.stat-card {
    background: var(--bg-light);
    padding: 20px 16px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}
.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 6px;
    line-height: 1;
}
.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}
.company-modern-btn-wrapper {
    margin-top: auto;
    padding-top: 20px;
}
.company-modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(211, 37, 52, 0.3);
}
.company-modern-btn:hover {
    background: #b91d2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 37, 52, 0.4);
    color: var(--white);
}
.company-modern-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.company-modern-btn:hover svg {
    transform: translateX(4px);
}
.company-modern-slider-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
}
.company-slider {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
}
.company-slider .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 20px;
    box-sizing: border-box;
}
.company-slider .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}
.company-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    opacity: 1;
}
.company-slider-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}
.company-slider-nav:hover svg {
    stroke: white;
}
.company-slider-nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    stroke-width: 2.5;
    fill: none;
    transition: stroke 0.3s ease;
}
.company-slider-prev {
    left: 16px;
}
.company-slider-next {
    right: 16px;
}
.company-slider-nav.company-slider-nav-disabled {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-50%) scale(0.8);
}
.company-slider-pagination {
    position: absolute;
    bottom: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10;
    display: flex;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: auto !important;
    margin: 0 !important;
}
.company-slider-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #d1d5db !important;
    border-radius: 50% !important;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none !important;
    opacity: 1 !important;
    margin: 0 !important;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}
.company-slider-pagination .swiper-pagination-bullet::before,
.company-slider-pagination .swiper-pagination-bullet::after {
    display: none !important;
    content: none !important;
}
.company-slider-pagination .swiper-pagination-bullet:hover {
    background: #9ca3af !important;
    transform: scale(1.3);
}
.company-slider-pagination .swiper-pagination-bullet-active {
    width: 28px !important;
    height: 10px !important;
    background: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    border-radius: 5px !important;
    box-shadow: 0 2px 8px rgba(211, 37, 52, 0.4);
    opacity: 1 !important;
    transform: none !important;
}
.company-slider-pagination .swiper-pagination-bullet-active::before,
.company-slider-pagination .swiper-pagination-bullet-active::after {
    display: none !important;
    content: none !important;
}
.company-slider-pagination .swiper-pagination-bullet-active:hover {
    transform: none !important;
    background: var(--primary-color) !important;
}
.company-slider-caption {
    position: absolute;
    bottom: 50px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    z-index: 15;
    backdrop-filter: blur(10px);
    text-align: center;
    line-height: 1.4;
    max-width: calc(100% - 40px);
    box-sizing: border-box;
}
@media (max-width: 1024px) {
    .company-modern-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .company-slider-caption {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
        width: auto;
        text-align: center;
    }
    .company-modern-slider-wrapper {
        order: 1;
    }
    .company-modern-text {
        order: 2;
        padding-top: 0;
    }
    .company-modern-title {
        font-size: 32px;
    }
    .company-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .company-slider {
        height: 400px;
    }
}
@media (max-width: 768px) {
    .company-modern-header {
        padding: 32px 24px 24px;
    }
    .company-modern-title {
        font-size: 28px;
    }
    .company-modern-subtitle {
        font-size: 16px;
    }
    .company-modern-content {
        padding: 0px 20px;
    }
    .company-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-number {
        font-size: 28px;
    }
    .company-slider {
        height: 340px;
    }
    .company-slider .swiper-slide {
        padding: 15px;
    }
    .company-slider-nav {
        width: 36px;
        height: 36px;
    }
    .company-slider-nav svg {
        width: 16px;
        height: 16px;
    }
    .company-slider-caption {
        font-size: 12px;
        padding: 8px 12px;
        bottom: 45px;
        left: 15px;
        right: 15px;
        max-width: calc(100% - 30px);
    }
    .company-slider-pagination {
        bottom: 10px !important;
        gap: 8px;
        padding: 6px 12px;
    }
    .company-slider-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    .company-slider-pagination .swiper-pagination-bullet-active {
        width: 24px;
    }
}
@media (max-width: 480px) {
    .company-modern-title {
        font-size: 24px;
    }
    .company-modern-btn {
        width: 100%;
        justify-content: center;
    }
    .company-slider {
        height: 280px;
    }
    .company-slider .swiper-slide {
        padding: 10px;
    }
    .company-slider-nav {
        width: 32px;
        height: 32px;
    }
    .company-slider-prev {
        left: 8px;
    }
    .company-slider-next {
        right: 8px;
    }
    .company-slider-caption {
        font-size: 11px;
        padding: 6px 10px;
        bottom: 40px;
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
    .company-slider-pagination {
        bottom: 8px !important;
        gap: 6px;
        padding: 5px 10px;
    }
    .company-slider-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }
    .company-slider-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }
}