.hero-video {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #8e2f27 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                            radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-video .container {
    position: relative;
    z-index: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-video h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-video .tagline {
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

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

.hero-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.content-wrapper{
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.content-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.section-header {
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 2px;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.benefit-item:hover {
    background: #fff;
    border-left-color: #e74c3c;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.1);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.benefit-text {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
}

.video-demo-section {
    margin: 40px 0;
}

.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    margin: 25px 0;
    background: #000;
}

.video-container video {
    width: 100%;
    display: block;
}

.video-wrapper-outer
{ display : block;
    margin : 0 auto;
    max-width : 100%;
}

.video-wrapper-inner
{ cursor : pointer;
    height : 0;
    height : 100% !important;
    margin-bottom : 0;
    overflow : hidden;
    padding-bottom : 56.25%;
    position : relative;
    width : 100% !important;
}

video
{ border-radius : 5px !important;
    cursor : pointer;
}

#yt1
{ border-radius : 5px !important;
    height : 100% !important;
    left : 0;
    position : absolute;
    top : 0;
    width : 100% !important;
}

.specs-list {
    margin-top: 25px;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

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

.spec-icon {
    color: #e74c3c;
    font-weight: bold;
    min-width: 20px;
}

.image-showcase {
    text-align: center;
    margin: 35px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.image-showcase img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

.category-icon {
    font-size: 1.5rem;
}

.note-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #e74c3c;
}

.note-section h2 {
    color: #c0392b;
    margin-bottom: 25px;
}

.note-section h2::after {
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: #495057;
}

.note-item strong {
    color: #c0392b;
}

.note-disclaimer {
    margin-top: 20px;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    color: #c0392b;
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-card {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    color: white;
    margin-top: 40px;
}

.cta-card h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta-card h2::after {
    background: white;
    left: 50%;
    transform: translateX(-50%);
}

.cta-card p {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #2980b9;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .hero-video {
        padding: 80px 20px 60px;
    }

    .content-card {
        padding: 35px 25px;
    }

    .benefits-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .note-section,
    .cta-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .content-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .hero-badges {
        gap: 10px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}