.video-section {
    padding: 32px 20px 80px 20px;
    text-align: center;
    background-color: #f9f9fb;
    position: relative;
    overflow: hidden;
}

.video-section .section-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #111;
}

.testimonials-subtitle {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 40px;
    max-width: 800px;
    text-align: center;
}

.video-section h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.video-section p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(98, 85, 246, 0.2);
    background: linear-gradient(135deg, #814BF6, #6255F6);
    padding: 3px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; 
    background-color: #000;
    border-radius: 18px;
    overflow: hidden;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #814BF6, #6255F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.play-button i {
    margin-left: 5px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(98, 85, 246, 0.4);
}

.video-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.video-feature {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.video-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(98, 85, 246, 0.1);
    border-color: rgba(98, 85, 246, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(129, 75, 246, 0.1), rgba(98, 85, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6255F6;
    font-size: 24px;
}

.video-feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #111;
}

.video-feature p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; 
    border: none;
    border-radius: 18px;
}

.video-placeholder.active .youtube-video {
    display: block;
}

.video-placeholder.active .video-thumbnail,
.video-placeholder.active .play-button {
    display: none;
}
