﻿/* 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-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 180px 0 100px 0;
    box-sizing: border-box;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.hero-section::after {
    display: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-sizing: border-box;
    min-height: 100vh;
}

.hero-container.left {
    justify-content: flex-start;
    padding-left: 0;
    grid-template-columns: 1fr 1fr;
}

.hero-container.right {
    justify-content: flex-end;
}

.hero-container.center {
    justify-content: center;
}

.hero-content {
    color: white;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
}

.hero-content.left {
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
    grid-column: 1;
}

.hero-content.right {
    align-items: flex-end;
    text-align: right;
}

.hero-content.center {
    align-items: center;
    text-align: center;
}

.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;
    color: #6bbbf4 !important;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title span {
    color: white;
    display: block;
}

.hero-subtitlee {
    position: absolute !important;
    color: #6bbbf4 !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 3.2rem !important;
    /*color: #fff !important;*/
    font-weight: 900 !important;
    text-align: center !important;
    text-shadow: 0 8px 32px rgba(0, 0, 0), 0 2px 8px rgba(0, 0, 0) !important;
    z-index: 2 !important;
    width: 60% !important;
    /*max-width: 900px !important;*/
    line-height: 1.15 !important;
    letter-spacing: 1px !important;
    padding: 0 32px !important;
    /* opacity:0.8;*/
}

@media (max-width: 768px) {
    .hero-subtitlee {
        font-size: 2rem !important;
        width: 90% !important;
        padding: 0 16px !important;
        line-height: 1.3 !important;
        letter-spacing: 0.5px !important;
    }
}

@media (max-width: 480px) {
    .hero-subtitlee {
        font-size: 1.6rem !important;
        width: 95% !important;
        padding: 0 12px !important;
        line-height: 1.4 !important;
    }
}


.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-text {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.benefit-arrow {
    color: #47B5FF;
    font-size: 1.2rem;
    font-weight: bold;
}

.benefit-result {
    font-weight: 600;
    color: white;
}


/* Desktop Only Elements */

.desktop-only {
    display: block;
}


/* Mobile Content Section */

.mobile-content-section {
    display: none;
    background: white;
    padding: 60px 0;
    color: #333;
}

.mobile-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-content {
    max-width: 800px;
    margin: 0 auto;
}

.mobile-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #666;
}

.mobile-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.mobile-benefit-text {
    font-weight: 500;
    color: #555;
}

.mobile-benefit-arrow {
    color: #47B5FF;
    font-size: 1.3rem;
    font-weight: bold;
}

.mobile-benefit-result {
    font-weight: 600;
    color: #333;
}

.hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s ease;
    animation: fadeInRight 1s ease-out 0.8s both;
    display: flex;
    justify-content: center;
    align-items: center;
}

.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;
}

.hero-image img {
    width: 500px;
    height: 400px;
    object-fit: contain;
    border: none;
    position: relative;
    z-index: 2;
    border-radius: 30px;
    max-width: 100%;
    height: auto;
}

@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);
    }
}


/* Hero Section Responsive Styles */

@media (max-width: 1200px) {
    .hero-container {
        max-width: 1000px;
        gap: 40px;
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-image img {
        width: 400px;
        height: 320px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        height: 30vh !important;
        padding: 120px 0 80px 0;
    }

    .hero-container {
        padding: 0 30px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-container.left,
    .hero-container.right,
    .hero-container.center {
        justify-content: center;
    }

    .hero-content.left,
    .hero-content.right,
    .hero-content.center {
        align-items: center;
        text-align: center;
        grid-column: 1;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin: 0 auto 40px auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 30px 0;
        min-height: 50vh;
    }

    .hero-container {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 50vh;
        width: 100%;
        padding: 0 10px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    /* Hide desktop elements on mobile */
    .desktop-only {
        display: none;
    }

    /* Show mobile content section */
    .mobile-content-section {
        display: block;
    }

    .mobile-content-section {
        padding: 40px 0;
    }

    .mobile-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .mobile-benefits {
        gap: 15px;
    }

    .mobile-benefit {
        font-size: 0.9rem;
        padding: 12px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 0 20px 0;
        min-height: 40vh;
    }

    .hero-container {
        padding: 0 15px;
        min-height: 40vh;
        justify-content: center;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        grid-column: 1;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .mobile-content-section {
        padding: 30px 0;
    }

    .mobile-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .mobile-benefits {
        gap: 12px;
    }

    .mobile-benefit {
        font-size: 0.85rem;
        padding: 10px;
        gap: 10px;
    }
}

@media (max-width: 360px) {
    .hero-section {
        padding: 20px 0 15px 0;
        min-height: 35vh;
    }

    .hero-container {
        padding: 0 10px;
        min-height: 35vh;
        justify-content: center;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        grid-column: 1;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .mobile-content-section {
        padding: 25px 0;
    }

    .mobile-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .mobile-benefits {
        gap: 10px;
    }

    .mobile-benefit {
        font-size: 0.8rem;
        padding: 8px;
        gap: 8px;
    }
}


/* 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: 22px;
    padding: 24px 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(71, 181, 255, 0.08);
    min-width: 220px;
    max-width: 320px;
}

.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: 18px;
}

.metric-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #47B5FF 0%, #3490dc 100%);
    border-radius: 18px;
    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: 1.6rem;
    color: white;
}

.metric-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
    margin-bottom: 6px;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.metric-card.animate .metric-number {
    opacity: 1;
    transform: translateY(0);
}

.metric-number::after {
    font-size: 1.1rem;
    margin-left: 3px;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2px;
}

.metric-sublabel {
    font-size: 0.95rem;
    color: #47B5FF;
    margin-bottom: 10px;
    font-weight: 500;
}

.metric-description {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.metric-features {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-top: 10px;
    border-top: 1px solid rgba(71, 181, 255, 0.07);
}

.metric-feature {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #2d3748;
    font-size: 0.92rem;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(71, 181, 255, 0.03);
    transition: all 0.3s ease;
}

.metric-feature:hover {
    background: rgba(71, 181, 255, 0.1);
    transform: translateX(5px);
}

.metric-feature i {
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metric-card {
        min-width: 180px;
        max-width: 260px;
        padding: 16px 8px;
    }
}

@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: 14px 6px;
        min-width: 140px;
        max-width: 98vw;
    }

    .metric-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .metric-icon i {
        font-size: 1.1rem;
    }

    .metric-number {
        font-size: 1.3rem;
    }

    .metric-label {
        font-size: 0.98rem;
    }

    .metric-sublabel {
        font-size: 0.85rem;
    }

    .metric-description {
        font-size: 0.85rem;
    }

    .metric-feature {
        font-size: 0.85rem;
        padding: 4px 6px;
    }
}


/* 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;
    }
}


/* HERO SECTION CUSTOM STYLES */

.hero-section {
    position: relative !important;
}

.hero-title {
    position: absolute !important;
    top: 30px !important;
    left: 40px !important;
    margin: 0 !important;
    font-size: 2.8rem !important;
    font-weight: bold !important;
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
    z-index: 2 !important;
}

.hero-subtitle {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 3.2rem !important;
    color: #fff !important;
    font-weight: 900 !important;
    text-align: center !important;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.65), 0 2px 8px rgba(0, 0, 0, 0.35) !important;
    z-index: 2 !important;
    width: 80% !important;
    max-width: 900px !important;
    line-height: 1.15 !important;
    letter-spacing: 1px !important;
    padding: 0 32px !important;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem !important;
        top: 16px !important;
        left: 16px !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
        width: 95% !important;
    }
}

.hero-subtitle {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

.hero-title,
.hero-subtitle {
    font-family: inherit !important;
}

/* Ürün Katalogları Alanı - Responsive */
.catalog-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px 24px;
    margin: 40px auto 0 auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
}

.catalog-section h3 {
    margin-bottom: 12px;
    color: #222;
    font-weight: 700;
    font-size: 1.3rem;
}

.catalog-section p {
    margin-bottom: 18px;
    color: #555;
    font-size: 1rem;
}

.catalog-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.catalog-buttons .hero-button {
    min-width: 160px;
    text-align: center;
    font-size: 1rem;
    padding: 10px 18px;
}

/* Tablet */
@media (max-width: 768px) {
    .catalog-section {
        max-width: 100%;
        padding: 24px 10px;
    }

    .catalog-buttons {
        gap: 8px;
    }

    .catalog-buttons .hero-button {
        min-width: 120px;
        font-size: 0.95rem;
        padding: 9px 10px;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .catalog-section {
        padding: 16px 4px;
        border-radius: 8px;
    }

    .catalog-section h3 {
        font-size: 1.05rem;
    }

    .catalog-section p {
        font-size: 0.95rem;
    }

    .catalog-buttons {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }

    .catalog-buttons .hero-button {
        width: 100%;
        min-width: unset;
        font-size: 0.95rem;
        padding: 9px 0;
    }
}

.catalog-section-modern {
    display: flex;
    align-items: center;
    gap: 48px;
    background: linear-gradient(135deg, #f8fafc 60%, #e3f0ff 100%);
    border-radius: 28px;
    box-shadow: 0 12px 48px rgba(71, 181, 255, 0.13);
    padding: 56px 64px;
    margin: 64px auto 0 auto;
    max-width: 1100px;
    border: 2px solid #e0e7ef;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.catalog-icon {
    background: linear-gradient(135deg, #47B5FF 0%, #1363DF 100%);
    color: #fff;
    border-radius: 20px;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    box-shadow: 0 6px 24px rgba(71, 181, 255, 0.18);
    flex-shrink: 0;
}

.catalog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.catalog-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1363DF;
    margin-bottom: 18px;
    text-align: center;
}

.catalog-content p {
    color: #4a5568;
    margin-bottom: 32px;
    font-size: 1.25rem;
    text-align: center;
}

.catalog-buttons-modern {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.catalog-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #47B5FF 0%, #3490dc 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    padding: 22px 44px;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(71, 181, 255, 0.13);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.catalog-btn i {
    font-size: 1.5rem;
}

.catalog-btn:hover,
.catalog-btn:focus {
    background: linear-gradient(135deg, #1363DF 0%, #47B5FF 100%);
    color: #fff;
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 10px 28px rgba(71, 181, 255, 0.22);
    text-decoration: none;
}

@media (max-width: 1100px) {
    .catalog-section-modern {
        max-width: 98vw;
        padding: 36px 10px;
        gap: 24px;
    }

    .catalog-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .catalog-content h3 {
        font-size: 1.5rem;
    }

    .catalog-content p {
        font-size: 1.05rem;
    }

    .catalog-btn {
        font-size: 1.05rem;
        padding: 14px 20px;
    }
}

@media (max-width: 700px) {
    .catalog-section-modern {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 6px;
        gap: 18px;
        max-width: 99vw;
    }

    .catalog-content {
        align-items: flex-start;
    }

    .catalog-buttons-modern {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .catalog-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.98rem;
        padding: 11px 0;
    }

    .catalog-icon {
        width: 56px;
        height: 56px;
        font-size: 2rem;
    }

    .catalog-content h3 {
        font-size: 1.1rem;
    }

    .catalog-content p {
        font-size: 0.95rem;
    }
}

.custom-banner-section {
    position: relative;
    width: 100%;
    max-width: 1600px;
    aspect-ratio: 1600 / 609;
    min-height: 220px;
    height: auto;
    margin: 48px auto 32px auto;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(71, 181, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* filter: brightness(0.7) saturate(1.1); */
    transition: background 0.3s;
}

.custom-banner-section::after {
    display: none;
}

.custom-banner-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1700px) {
    .custom-banner-section {
        max-width: 100vw;
    }
}

@media (max-width: 900px) {
    .custom-banner-section {
        aspect-ratio: 16 / 6;
        min-height: 120px;
        border-radius: 14px;
        margin: 28px 0 18px 0;
    }

    .custom-banner-content {
        padding: 0 8px;
    }
}

@media (max-width: 600px) {
    .custom-banner-section {
        aspect-ratio: 16 / 7;
        min-height: 70px;
        border-radius: 8px;
    }

    .custom-banner-content {
        padding: 0 2vw;
    }
}

.showcase-qr-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 18px;
    margin-bottom: 12px;
}

.qr-code-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    width: 100%;
}

.qr-code-image {
    display: block;
    margin: 0 auto;
}

.showcase-description {
    text-align: center;
    margin: 0;
    margin-top: 2px;
    font-size: 1rem;
    color: #475569;
}

.wide-video-section {
    width: 100%;
    max-width: 1200px;
    margin: 64px auto 48px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 60%, #e3f0ff 100%);
    box-shadow: 0 12px 48px rgba(71, 181, 255, 0.13);
    padding: 0;
}

.wide-video-container {
    width: 100%;
    padding: 48px 48px 36px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
}

.wide-video-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1363DF;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 0.5px;
}

.wide-video-desc {
    color: #4a5568;
    margin-bottom: 32px;
    font-size: 1.15rem;
    text-align: center;
    max-width: 700px;
}

.wide-responsive-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 600px;
    background: #000;
    display: block;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(71, 181, 255, 0.10);
}

@media (max-width: 1300px) {
    .wide-video-section {
        max-width: 98vw;
    }

    .wide-video-container {
        padding: 32px 10px 24px 10px;
    }
}

@media (max-width: 900px) {
    .wide-video-section {
        max-width: 100vw;
        border-radius: 14px;
        margin: 32px 0 18px 0;
    }

    .wide-video-container {
        padding: 18px 4vw 12px 4vw;
    }

    .wide-video-title {
        font-size: 1.3rem;
    }

    .wide-video-desc {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .wide-responsive-video {
        aspect-ratio: 16 / 10;
        max-height: 340px;
        border-radius: 8px;
    }
}

@media (max-width: 600px) {
    .wide-video-section {
        border-radius: 6px;
        margin: 12px 0 8px 0;
    }

    .wide-video-container {
        padding: 8px 2vw 6px 2vw;
    }

    .wide-video-title {
        font-size: 1.05rem;
    }

    .wide-video-desc {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .wide-responsive-video {
        aspect-ratio: 16 / 12;
        max-height: 140px;
        border-radius: 4px;
    }
}