﻿/* =========================================================
   HERO
========================================================= */

.watch-hero {
    padding: 90px 20px 70px;
    background: linear-gradient( 135deg, #07152b 0%, #16395f 100% );
    text-align: center;
}

.watch-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.72);
}

.watch-hero h1 {
    max-width: 900px;
    margin: 0 auto 24px;
    font-size: 64px;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -3px;
}

.watch-hero p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
}

/* =========================================================
   AUDIO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

    .hero-buttons .btn-secondary {
        min-width: 150px;
        min-height: 52px;
        border-radius: 999px;
        border: none;
        background: #fff;
        color: #111827;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.25s ease;
        padding: 12px 24px;
    }

        .hero-buttons .btn-secondary:hover {
            background: #eef2ff;
            transform: translateY(-2px);
        }

/* =========================================================
   VIDEO SECTION
========================================================= */

.watch-video-section {
    padding: 90px 20px;
    background: linear-gradient(90deg,#f9fbff,#eef3ff);
}

.watch-video-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    padding: 70px;
    box-shadow: 0 25px 60px rgba(15,23,42,0.10);
    border: 1px solid #dbe4f0;
}

.watch-mini-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #2563eb;
}

.watch-video-card h2 {
    font-size: 56px;
    line-height: 1.08;
    margin-bottom: 24px;
    color: #163c8f;
    letter-spacing: -2px;
}

.watch-intro {
    max-width: 900px;
    font-size: 20px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 50px;
}

/* =========================================================
   VIDEO
========================================================= */

.watch-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    margin-bottom: 60px;
}

    .watch-video-wrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

/* =========================================================
   FEATURES
========================================================= */

.watch-feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.watch-feature-card {
    background: #f8fbff;
    border: 1px solid #dbe4f0;
    border-radius: 22px;
    padding: 30px;
    transition: all 0.25s ease;
}

    .watch-feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 35px rgba(37,99,235,0.10);
    }

    .watch-feature-card h3 {
        font-size: 24px;
        margin-bottom: 16px;
        color: #163c8f;
    }

    .watch-feature-card p {
        font-size: 16px;
        line-height: 1.9;
        color: #475569;
    }

/* =========================================================
   CTA
========================================================= */

.watch-cta {
    text-align: center;
}

.watch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 60px;
    padding: 16px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg,#0056d6,#2563eb);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
}

    .watch-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(37,99,235,0.22);
    }

/* =========================================================
   BOTTOM STRIP
========================================================= */

.watch-bottom-strip {
    padding: 34px 20px;
    background: linear-gradient(90deg,#f5f8ff,#eef3ff);
    border-top: 1px solid #dbe3ff;
    text-align: center;
}

    .watch-bottom-strip p {
        margin: 0;
        font-size: 18px;
        color: #163c8f;
        font-weight: 600;
        line-height: 1.8;
    }

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px) {

    .watch-feature-grid {
        grid-template-columns: 1fr;
    }

    .watch-video-card {
        padding: 40px;
    }

        .watch-video-card h2 {
            font-size: 42px;
        }

    .watch-hero h1 {
        font-size: 44px;
        letter-spacing: -1px;
    }
}

@media(max-width:768px) {

    .watch-hero {
        padding: 70px 16px 60px;
    }

        .watch-hero h1 {
            font-size: 34px;
        }

        .watch-hero p,
        .watch-intro {
            font-size: 16px;
            line-height: 1.9;
        }

    .watch-video-section {
        padding: 60px 14px;
    }

    .watch-video-card {
        padding: 24px;
        border-radius: 24px;
    }

        .watch-video-card h2 {
            font-size: 32px;
            line-height: 1.15;
        }

    .watch-video-wrapper {
        border-radius: 18px;
    }

    .hero-buttons {
        gap: 10px;
    }

        .hero-buttons .btn-secondary {
            min-width: 130px;
            min-height: 48px;
            font-size: 14px;
        }

    .watch-btn {
        width: 100%;
    }
}
