/* Video Automation Section */
.video-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(55, 93, 88, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.video-container {
    max-width: 1200px;
    width: 100%;
}

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

.video-tag {
    display: inline-block;
    background: rgba(55, 93, 88, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8em;
    color: rgb(55, 93, 88);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.video-header h2 {
    font-size: 2.8em;
    color: #162938;
    margin-bottom: 20px;
    font-weight: 700;
}

.video-header h2 span {
    color: rgb(55, 93, 88);
}

.video-header p {
    font-size: 1.2em;
    color: #162938;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.85;
}

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

.feature-card {
    background: transparent;
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    border: 2px solid rgba(84, 190, 176, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgb(70, 38, 94);
    background: transparent;
}

.feature-card .feature-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.6em;
    color: rgb(55, 93, 88);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 1em;
    color: #162938;
    line-height: 1.6;
    opacity: 0.85;
}

.video-trust-badge {
    text-align: center;
}

.video-trust-badge div {
    display: inline-block;
    background: rgba(55, 93, 88, 0.1);
    padding: 12px 28px;
    border-radius: 50px;
}

.video-trust-badge p {
    font-size: 0.95em;
    color: rgb(55, 93, 88);
    font-weight: 500;
}