﻿

/* Modal Styles */
.system-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.system-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.system-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 90%;
    max-height: 90vh;
    width: 1200px;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease-in-out;
}

.system-modal.active .system-modal-content {
    transform: scale(1);
}

.system-modal-header {
    background: linear-gradient(135deg, #47B5FF 0%, #1363DF 100%);
    color: white;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.system-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .system-modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

.system-modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-align: center;
}

.system-modal-subtitle {
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
    opacity: 0.9;
}

.system-modal-body {
    padding: 40px;
}
/* System Requirements Grid */

.system-requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.requirement-card-modern {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

    .requirement-card-modern:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .requirement-card-modern.minimum {
        border-color: #f59e0b;
    }

    .requirement-card-modern.recommended {
        border-color: #10b981;
    }

.requirement-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.requirement-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.requirement-card-modern.minimum .requirement-card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.requirement-card-modern.recommended .requirement-card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.requirement-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}

.requirement-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

    .requirement-item-modern:last-child {
        border-bottom: none;
    }

.requirement-label-modern {
    font-weight: 600;
    color: #475569;
}

.requirement-value-modern {
    font-weight: 700;
    color: #1e293b;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 8px;
}
/* Compatibility Grid */

.compatibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.compatibility-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .compatibility-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.compatibility-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.compatibility-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #47B5FF, #1363DF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}

.compatibility-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}

.compatibility-table-modern {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    .compatibility-table-modern th {
        background: linear-gradient(135deg, #f8fafc, #e2e8f0);
        color: #1e293b;
        font-weight: 700;
        padding: 15px;
        text-align: left;
        border-bottom: 2px solid #cbd5e1;
    }

    .compatibility-table-modern td {
        padding: 12px 15px;
        border-bottom: 1px solid #e2e8f0;
        color: #475569;
    }

    .compatibility-table-modern tr:hover {
        background-color: #f8fafc;
    }

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .status-badge.compatible {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
    }

    .status-badge.not-compatible {
        background: linear-gradient(135deg, #ef4444, #dc2626);
        color: white;
    }
/* Info Sections */

.info-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #47B5FF;
}

    .info-section h4 {
        color: #1e293b;
        font-size: 1.2rem;
        font-weight: 700;
        margin: 0 0 15px 0;
        display: flex;
        align-items: center;
    }

        .info-section h4 i {
            margin-right: 10px;
            color: #47B5FF;
        }

    .info-section ul {
        margin: 0;
        padding-left: 20px;
    }

    .info-section li {
        margin-bottom: 8px;
        color: #475569;
        line-height: 1.6;
    }

    .info-section p {
        margin: 0;
        color: #475569;
        line-height: 1.6;
    }
/* Responsive Design */

@media (max-width: 768px) {
    .system-modal-content {
        width: 95%;
        margin: 20px;
    }

    .system-modal-header {
        padding: 20px;
    }

    .system-modal-title {
        font-size: 1.8rem;
    }

    .system-modal-body {
        padding: 20px;
    }

    .system-requirements-grid,
    .compatibility-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .compatibility-table-modern {
        font-size: 0.9rem;
    }

        .compatibility-table-modern th,
        .compatibility-table-modern td {
            padding: 8px 10px;
        }
}
/* References Slider Styles */

.references-slider {
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
    padding: 5px;
}

.reference-logo-container {
    width: 180px;
    height: 100px;
    border-radius: 12px;
    padding: 12px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

    .reference-logo-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swiper-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #333;
}

.swiper-pagination-bullet {
    background: #333;
}

.swiper-pagination-bullet-active {
    background: #007aff;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #47B5FF 0%, #2563eb 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 180px 0 100px 0;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 80%;
        height: 200%;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        transform: rotate(15deg);
        pointer-events: none;
    }

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInLeft 1s ease-out 0.2s both;
}

    .hero-eyebrow span {
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .hero-eyebrow i {
        color: white;
        margin-right: 10px;
        font-size: 1.2rem;
    }

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
    animation: fadeInUp 1s ease-out 0.4s both;
}

    .hero-title span {
        color: white;
        display: block;
    }

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s ease;
    animation: fadeInRight 1s ease-out 0.8s both;
}

    .hero-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-image:hover {
        transform: perspective(1000px) rotateY(0deg) scale(1.02);
    }

    .hero-image iframe {
        width: 100%;
        height: 600px;
        object-fit: contain;
        border: none;
        position: relative;
        z-index: 2;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px) perspective(1000px) rotateY(-5deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) perspective(1000px) rotateY(-5deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Features Section Styles */

.features {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

    .features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 70%, rgba(71, 181, 255, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #47B5FF;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

    .section-subtitle::before,
    .section-subtitle::after {
        content: '';
        width: 30px;
        height: 2px;
        background: #47B5FF;
        display: inline-block;
    }

.section-title h2 {
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    position: relative;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

    .feature-card:hover {
        transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
    }

    .feature-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 30px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
        pointer-events: none;
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #47B5FF 0%, #3490dc 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) translateZ(20px);
}

.feature-icon i {
    font-size: 30px;
    color: white;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    border: 2px solid #47B5FF;
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-title {
    transform: translateZ(10px);
}

.feature-description {
    color: #4a5568;
    line-height: 1.6;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-description {
    transform: translateZ(10px);
}

.feature-list {
    margin-top: 20px;
    position: relative;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #2d3748;
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-item {
    transform: translateZ(10px);
}

.feature-item i {
    color: #47B5FF;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 30px;
    }
}
/* Performance Metrics Section */

.performance-metrics {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

    .performance-metrics::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(71, 181, 255, 0.05) 0%, rgba(71, 181, 255, 0.02) 100%);
        pointer-events: none;
    }

.metrics-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.metrics-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.metrics-subtitle {
    color: #47B5FF;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

    .metrics-subtitle::before,
    .metrics-subtitle::after {
        content: '';
        width: 30px;
        height: 2px;
        background: #47B5FF;
        display: inline-block;
    }

.metrics-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a202c;
    line-height: 1.2;
}

.metrics-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.metric-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(71, 181, 255, 0.1);
}

    .metric-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(71, 181, 255, 0.1) 0%, rgba(71, 181, 255, 0) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .metric-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(71, 181, 255, 0.1);
        border-color: rgba(71, 181, 255, 0.3);
    }

        .metric-card:hover::before {
            opacity: 1;
        }

.metric-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.metric-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #47B5FF 0%, #3490dc 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

    .metric-icon::before {
        content: '';
        position: absolute;
        inset: -8px;
        background: linear-gradient(135deg, rgba(71, 181, 255, 0.2) 0%, rgba(71, 181, 255, 0.1) 100%);
        border-radius: 34px;
        z-index: -1;
        transition: all 0.3s ease;
    }

.metric-card:hover .metric-icon {
    transform: scale(1.1) rotate(5deg);
}

    .metric-card:hover .metric-icon::before {
        transform: scale(1.15);
    }

.metric-icon i {
    font-size: 40px;
    color: white;
}

.metric-number {
    font-size: 5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.metric-card.animate .metric-number {
    opacity: 1;
    transform: translateY(0);
}

.metric-number::after {
    content: attr(data-symbol);
    font-size: 2rem;
    color: #47B5FF;
    margin-left: 5px;
}

.metric-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.metric-sublabel {
    font-size: 1.1rem;
    color: #47B5FF;
    margin-bottom: 20px;
    font-weight: 500;
}

.metric-description {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
}

.metric-features {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(71, 181, 255, 0.1);
}

.metric-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2d3748;
    font-size: 0.95rem;
    padding: 8px 15px;
    border-radius: 12px;
    background: rgba(71, 181, 255, 0.05);
    transition: all 0.3s ease;
}

    .metric-feature:hover {
        background: rgba(71, 181, 255, 0.1);
        transform: translateX(5px);
    }

    .metric-feature i {
        color: #47B5FF;
        font-size: 16px;
    }

@media (max-width: 1200px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .performance-metrics {
        padding: 80px 0;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .metrics-title {
        font-size: 2.2rem;
    }

    .metric-card {
        padding: 30px;
    }
}
/* Technical Specs Section */

.technical-specs {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

    .technical-specs::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 70%, rgba(71, 181, 255, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

.specs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.specs-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.specs-image {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

    .specs-image:hover {
        transform: rotateY(0deg) rotateX(0deg);
    }

    .specs-image img {
        width: 100%;
        height: auto;
        border-radius: 30px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    }

    .specs-image::before {
        content: '';
        position: absolute;
        inset: -20px;
        border: 2px solid #47B5FF;
        border-radius: 40px;
        transform: translateZ(-50px);
        opacity: 0.3;
        transition: all 0.5s ease;
    }

    .specs-image:hover::before {
        transform: translateZ(-30px);
        opacity: 0.6;
    }

.specs-content {
    position: relative;
}

.specs-header {
    margin-bottom: 40px;
}

.specs-subtitle {
    color: #47B5FF;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .specs-subtitle::before {
        content: '';
        width: 30px;
        height: 2px;
        background: #47B5FF;
        display: inline-block;
    }

.specs-title {
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 600;
}

.specs-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 40px;
}

.specs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-item {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 181, 255, 0.1);
    position: relative;
    overflow: hidden;
}

    .spec-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(71, 181, 255, 0.1) 0%, rgba(71, 181, 255, 0) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .spec-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(71, 181, 255, 0.1);
        border-color: rgba(71, 181, 255, 0.3);
    }

        .spec-item:hover::before {
            opacity: 1;
        }

.spec-label {
    color: #4a5568;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.spec-value {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a202c;
    font-weight: 600;
    font-size: 1.8rem;
}

    .spec-value .circle {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #47B5FF 0%, #3490dc 100%);
        color: white;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

        .spec-value .circle::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, rgba(71, 181, 255, 0.2) 0%, rgba(71, 181, 255, 0.1) 100%);
            border-radius: 14px;
            z-index: -1;
            opacity: 0;
            transition: all 0.3s ease;
        }

.spec-item:hover .circle {
    transform: scale(1.1) rotate(5deg);
}

    .spec-item:hover .circle::before {
        opacity: 1;
        transform: scale(1.15);
    }

.spec-unit {
    color: #47B5FF;
    font-size: 1.2rem;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .specs-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specs-image-wrapper {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .technical-specs {
        padding: 80px 0;
    }

    .specs-title {
        font-size: 2.2rem;
    }

    .specs-list {
        grid-template-columns: 1fr;
    }

    .spec-item {
        padding: 20px;
    }
}
/* Updated Masonry Grid Styles */

.industry-applications {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 250px);
    gap: 25px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .grid-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }
/* Merkezdeki büyük alan */

.grid-item-center {
    grid-column: 2;
    grid-row: 1 / 3;
    background: #47B5FF;
}

.content-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.media-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

    .media-placeholder img,
    .media-placeholder video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(70%);
    transition: transform 0.4s ease;
}

.grid-item:hover .content-overlay {
    transform: translateY(0);
}

.content-overlay h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.content-overlay p {
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.grid-item:hover .content-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.sector-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #47B5FF;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .grid-item-center {
        grid-column: 1 / 3;
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-item-center {
        grid-column: 1;
        grid-row: 1;
        height: 300px;
    }

    .grid-item {
        height: 250px;
    }
}

.industry-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.showcase-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .showcase-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.showcase-media {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* 4:3 aspect ratio */
    background: #f8fafc;
    overflow: hidden;
}

    .showcase-media::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #f8fafc;
        z-index: 2;
        transition: opacity 0.3s ease;
    }

    .showcase-media::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 50px;
        height: 50px;
        margin: -25px 0 0 -25px;
        border: 3px solid #f3f3f3;
        border-top: 3px solid #47B5FF;
        border-radius: 50%;
        z-index: 3;
        animation: spin 1s linear infinite;
        transition: opacity 0.3s ease;
    }

    .showcase-media.loaded::before,
    .showcase-media.loaded::after {
        opacity: 0;
        pointer-events: none;
    }

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.showcase-media iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-media.loaded iframe {
    opacity: 1;
}

.showcase-content {
    padding: 25px;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.showcase-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.showcase-icon {
    width: 50px;
    height: 50px;
    background: #47B5FF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.showcase-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

.showcase-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.showcase-features {
    margin-bottom: 20px;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

    .showcase-feature i {
        color: #47B5FF;
        font-size: 14px;
    }

.showcase-buttons {
    display: flex;
    gap: 15px;
}

.showcase-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.showcase-button-primary {
    background: #47B5FF;
    color: white;
}

.showcase-button-secondary {
    background: #e2e8f0;
    color: #1a202c;
}

.showcase-button i {
    margin-left: 8px;
    font-size: 14px;
}

.showcase-button:hover {
    transform: translateY(-2px);
}

.showcase-button-primary:hover {
    background: #3490dc;
}

.showcase-button-secondary:hover {
    background: #cbd5e0;
}

@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item {
        max-width: 500px;
        margin: 0 auto;
    }
}
/* Product Components Section */

.components {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

    .components::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 70%, rgba(71, 181, 255, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

.components-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.components-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.components-subtitle {
    color: #47B5FF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .components-subtitle::before,
    .components-subtitle::after {
        content: '';
        width: 30px;
        height: 2px;
        background: linear-gradient(to right, #47B5FF, #3490dc);
        display: inline-block;
    }

.components-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.components-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.component-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(71, 181, 255, 0.1);
    position: relative;
}

    .component-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(71, 181, 255, 0.1);
        border-color: rgba(71, 181, 255, 0.3);
    }

.component-media {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: #f8fafc;
    overflow: hidden;
    cursor: pointer;
}

    .component-media.video-preview {
        background-size: cover;
        background-position: center;
        transition: transform 0.3s ease;
    }

        .component-media.video-preview::before {
            content: '\f144';
            font-family: 'Font Awesome 5 Free';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.9);
            z-index: 2;
            opacity: 0;
            transition: all 0.3s ease;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .component-media.video-preview:hover::before {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.1);
            color: #47B5FF;
        }

        .component-media.video-preview.playing::before {
            content: '\f28b';
            /* Stop icon */
        }

        .component-media.video-preview.playing:not(:hover)::before {
            opacity: 0;
        }
    /* Update cursor style based on state */

    .component-media.video-preview {
        cursor: pointer;
    }

        .component-media.video-preview.playing {
            cursor: default;
        }

            .component-media.video-preview.playing:hover {
                cursor: pointer;
            }

    .component-media video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .component-media.loaded video {
        opacity: 1;
    }

    .component-media iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .component-media.loaded iframe {
        opacity: 1;
    }
/* Loading indicator */

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(71, 181, 255, 0.1);
    border-top: 3px solid #47B5FF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

.component-media.loading .loading-spinner {
    display: block;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.component-content {
    padding: 30px;
}

.component-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #47B5FF 0%, #3490dc 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

    .component-icon::before {
        content: '';
        position: absolute;
        inset: -5px;
        background: linear-gradient(135deg, rgba(71, 181, 255, 0.2) 0%, rgba(71, 181, 255, 0.1) 100%);
        border-radius: 24px;
        z-index: -1;
        opacity: 0;
        transition: all 0.3s ease;
    }

.component-card:hover .component-icon {
    transform: scale(1.1) rotate(5deg);
}

    .component-card:hover .component-icon::before {
        opacity: 1;
        transform: scale(1.15);
    }

.component-icon i {
    font-size: 24px;
    color: white;
}

.component-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.component-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.component-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.component-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d3748;
    font-size: 0.95rem;
    padding: 8px 15px;
    border-radius: 12px;
    background: rgba(71, 181, 255, 0.05);
    transition: all 0.3s ease;
}

    .component-feature:hover {
        background: rgba(71, 181, 255, 0.1);
        transform: translateX(5px);
    }

    .component-feature i {
        color: #47B5FF;
        font-size: 14px;
    }

@media (max-width: 1200px) {
    .components-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .components {
        padding: 80px 0;
    }

    .components-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .components-title {
        font-size: 2.2rem;
    }
}
/* Mobile Nav Menu Fixes */
/* Requirements Section Styles */

.requirements-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.requirements-container {
    max-width: 1200px;
    margin: 0 auto;
}

.requirements-header {
    text-align: center;
    margin-bottom: 50px;
}

    .requirements-header h2 {
        font-size: 2.5em;
        color: #333;
        margin-bottom: 15px;
    }

    .requirements-header p {
        font-size: 1.1em;
        color: #666;
        max-width: 800px;
        margin: 0 auto;
    }

.requirements-tables {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.requirements-table {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
}

.table-header {
    background: #007bff;
    color: white;
    padding: 20px;
    text-align: center;
}

    .table-header h3 {
        margin: 0;
        font-size: 1.5em;
    }

.table-content {
    padding: 20px;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .requirements-list li {
        display: flex;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

        .requirements-list li:last-child {
            border-bottom: none;
        }

.requirement-label {
    font-weight: bold;
    color: #333;
    flex: 1;
}

.requirement-value {
    color: #666;
    flex: 2;
    text-align: right;
}

.camera-compatibility-table,
.lens-compatibility-table {
    width: 100%;
    border-collapse: collapse;
}

    .camera-compatibility-table th,
    .lens-compatibility-table th {
        background: #f1f1f1;
        padding: 12px;
        text-align: left;
        font-weight: bold;
        color: #333;
    }

    .camera-compatibility-table td,
    .lens-compatibility-table td {
        padding: 12px;
        border-bottom: 1px solid #eee;
    }

.model-name,
.lens-name {
    font-weight: bold;
    color: #333;
}

.recommended,
.compatible {
    color: #28a745;
}

.not-recommended,
.not-compatible {
    color: #dc3545;
}

.motorized-stand-info,
.motorized-zoom-info {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.notes-list,
.compatible-lenses {
    padding-left: 20px;
    margin: 10px 0;
}

    .notes-list li,
    .compatible-lenses li {
        margin-bottom: 8px;
        color: #666;
    }

.requirement-note {
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .requirements-tables {
        grid-template-columns: 1fr;
    }

    .requirements-list li {
        flex-direction: column;
    }

    .requirement-value {
        text-align: left;
        margin-top: 5px;
    }

    .camera-compatibility-table,
    .lens-compatibility-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
/* Modern Modal Styles */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .modal.active {
        opacity: 1;
        visibility: visible;
    }

.modal-content {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 90vw;
    max-height: 90vh;
    width: 1200px;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, #47B5FF 0%, #3490dc 100%);
    color: white;
    padding: 32px 40px 24px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

.modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(90vh - 140px);
}
/* System Requirements Grid */

.system-requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.requirement-card-modern {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .requirement-card-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #47B5FF, #3490dc);
    }

    .requirement-card-modern:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .requirement-card-modern.minimum::before {
        background: linear-gradient(90deg, #ef4444, #dc2626);
    }

    .requirement-card-modern.recommended::before {
        background: linear-gradient(90deg, #10b981, #059669);
    }

.requirement-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.requirement-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.requirement-card-modern.minimum .requirement-card-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.requirement-card-modern.recommended .requirement-card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.requirement-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.requirement-item-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

    .requirement-item-modern:hover {
        background: #f1f5f9;
        transform: translateX(8px);
        border-color: #cbd5e1;
    }

.requirement-label-modern {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.requirement-value-modern {
    font-weight: 500;
    color: #6b7280;
    font-size: 0.9rem;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    min-width: 120px;
    text-align: center;
}

.requirement-card-modern.minimum .requirement-value-modern {
    color: #dc2626;
    background: #fef2f2;
    border-color: #fecaca;
}

.requirement-card-modern.recommended .requirement-value-modern {
    color: #059669;
    background: #f0fdf4;
    border-color: #bbf7d0;
}
/* Camera Compatibility Styles */

.compatibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

.compatibility-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .compatibility-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

.compatibility-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.compatibility-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #47B5FF, #3490dc);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.compatibility-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.compatibility-table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

    .compatibility-table-modern th {
        background: linear-gradient(135deg, #f8fafc, #e2e8f0);
        padding: 16px 12px;
        text-align: left;
        font-weight: 600;
        color: #374151;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .compatibility-table-modern td {
        padding: 14px 12px;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .compatibility-table-modern tr:hover td {
        background: #f8fafc;
    }

    .compatibility-table-modern tr:last-child td {
        border-bottom: none;
    }

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .status-badge.compatible {
        background: #f0fdf4;
        color: #059669;
        border: 1px solid #bbf7d0;
    }

    .status-badge.not-compatible {
        background: #fef2f2;
        color: #dc2626;
        border: 1px solid #fecaca;
    }

    .status-badge::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

    .status-badge.compatible::before {
        background: #10b981;
    }

    .status-badge.not-compatible::before {
        background: #ef4444;
    }

.info-section {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    border-left: 4px solid #47B5FF;
}

    .info-section h4 {
        color: #1e293b;
        font-weight: 700;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .info-section ul {
        margin: 0;
        padding-left: 20px;
    }

    .info-section li {
        margin-bottom: 8px;
        color: #4b5563;
        line-height: 1.6;
    }
/* Responsive Design */

@media (max-width: 1024px) {
    .modal-content {
        width: 95vw;
        margin: 20px;
    }

    .modal-body {
        padding: 24px;
    }

    .system-requirements-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .compatibility-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .modal-header {
        padding: 24px 20px 20px;
    }

    .modal-title {
        font-size: 2rem;
    }

    .modal-subtitle {
        font-size: 1rem;
    }

    .modal-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .modal-body {
        padding: 20px;
        max-height: calc(90vh - 120px);
    }

    .requirement-card-modern {
        padding: 24px;
    }

    .requirement-item-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .requirement-value-modern {
        width: 100%;
        text-align: center;
    }

    .compatibility-card {
        padding: 24px;
    }

    .compatibility-table-modern {
        font-size: 0.8rem;
    }

        .compatibility-table-modern th,
        .compatibility-table-modern td {
            padding: 10px 8px;
        }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98vw;
        margin: 10px;
        border-radius: 16px;
    }

    .modal-header {
        padding: 20px 16px 16px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 16px;
    }

    .requirement-card-modern {
        padding: 20px;
    }

    .compatibility-card {
        padding: 20px;
    }

    .compatibility-table-modern {
        font-size: 0.75rem;
    }

        .compatibility-table-modern th,
        .compatibility-table-modern td {
            padding: 8px 6px;
        }
}












.pb-dynamic {
    padding: 6rem 0;
    background: #f8faff;
    position: relative;
    overflow: hidden;
}

.dyn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.dyn-row {
    margin-bottom: 4rem;
}

    .dyn-row:last-child {
        margin-bottom: 0;
    }

.dyn-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(66, 135, 245, 0.08);
    transition: all 0.3s ease;
    display: flex;
    border: 1px solid rgba(66, 135, 245, 0.1);
}

    .dyn-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(66, 135, 245, 0.12);
    }

.dyn-media {
    position: relative;
    overflow: hidden;
    flex: 1;
    max-height: 500px;
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(66, 135, 245, 0.1) 0%, rgba(66, 135, 245, 0.2) 100%);
    z-index: 1;
}

.dyn-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dyn-card:hover .dyn-media img {
    transform: scale(1.05);
}

.dyn-content {
    flex: 1;
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(66, 135, 245, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.h4-title {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.dyn-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

    .btn-detail:hover {
        background: var(--primary-hover);
        transform: translateX(5px);
    }

    .btn-detail svg {
        transition: transform 0.3s ease;
    }

    .btn-detail:hover svg {
        transform: translateX(5px);
    }

@media (max-width: 991px) {
    .dyn-card {
        flex-direction: column;
    }

    .dyn-media {
        min-height: 300px;
    }

    .dyn-content {
        padding: 2rem;
    }

    .h4-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .pb-dynamic {
        padding: 4rem 0;
    }

    .dyn-content {
        padding: 1.5rem;
    }

    .h4-title {
        font-size: 1.35rem;
    }

    .dyn-content p {
        font-size: 1rem;
    }

    .dyn-media {
        min-height: 250px;
    }
}