/* =========================================================
   WorthyTech Solutions
   Video Downloader Page
   =========================================================

   Main Website Colors:

   Primary       #2D466D
   Primary Dark  #243D5A
   Secondary     #7893B1
   Silver        #B0B8C1
   Dark          #333333
   White         #FFFFFF

   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {

    --video-primary: #2D466D;

    --video-primary-dark: #243D5A;

    --video-secondary: #7893B1;

    --video-silver: #B0B8C1;

    --video-dark: #333333;

    --video-white: #FFFFFF;

    --video-light: #F8FAFC;

    --video-gray-100: #F1F5F9;

    --video-gray-200: #E2E8F0;

    --video-gray-300: #CBD5E1;

    --video-gray-400: #94A3B8;

    --video-gray-500: #64748B;

    --video-gray-600: #475569;

    --video-gray-700: #334155;


    --video-gradient:
        linear-gradient(
            135deg,
            #2D466D 0%,
            #7893B1 100%
        );


    --video-gradient-dark:
        linear-gradient(
            135deg,
            #333333 0%,
            #2D466D 100%
        );


    --video-shadow:
        0 10px 30px rgba(45, 70, 109, 0.08);


    --video-shadow-lg:
        0 20px 55px rgba(45, 70, 109, 0.14);

}


/* =========================================================
   HERO SECTION
   ========================================================= */

.video-hero {

    position: relative;

    overflow: hidden;

    padding: 105px 0 85px;

    color: var(--video-white);

    background:

        radial-gradient(
            circle at 15% 25%,
            rgba(45, 70, 109, 0.38),
            transparent 45%
        ),

        radial-gradient(
            circle at 85% 75%,
            rgba(176, 184, 193, 0.14),
            transparent 45%
        ),

        linear-gradient(
            135deg,
            #333333 0%,
            #2D466D 100%
        );

}


/* Decorative background circle */

.video-hero::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -200px;
    top: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.08),
            transparent 70%
        );

    pointer-events: none;

}


.video-hero::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -180px;
    bottom: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(176,184,193,0.12),
            transparent 70%
        );

    pointer-events: none;

}


.video-hero .container {

    position: relative;

    z-index: 2;

}


.video-hero-content {

    max-width: 800px;

    margin: 0 auto;

}


/* =========================================================
   HERO EYEBROW
   ========================================================= */

.video-eyebrow {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 7px 15px;

    margin-bottom: 18px;

    border: 1px solid rgba(255,255,255,0.20);

    border-radius: 50px;

    background:
        rgba(255,255,255,0.07);

    color:
        rgba(255,255,255,0.88);

    font-size: 0.82rem;

    font-weight: 600;

    letter-spacing: 0.5px;

    backdrop-filter: blur(8px);

}


.video-eyebrow i {

    color: var(--video-silver);

}


/* =========================================================
   HERO TITLE
   ========================================================= */

.video-hero .page-title {

    margin: 0 0 20px;

    color: var(--video-white);

    font-size: clamp(
        2.3rem,
        5vw,
        3.5rem
    );

    font-weight: 800;

    line-height: 1.1;

}


/* Gradient title */

.video-hero .text-gradient {

    background:

        linear-gradient(
            135deg,
            #B0B8C1 0%,
            #FFFFFF 50%,
            #B0B8C1 100%
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    background-size: 200% auto;

    animation:
        videoGradient 5s linear infinite;

}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.video-hero .page-description {

    max-width: 700px;

    margin: 0 auto;

    color:
        rgba(255,255,255,0.86);

    font-size: 1.08rem;

    line-height: 1.8;

}


/* =========================================================
   HERO LINE
   ========================================================= */

.video-hero-line {

    width: 75px;

    height: 3px;

    margin: 28px auto 0;

    border-radius: 10px;

    background:

        linear-gradient(
            90deg,
            #2D466D,
            #B0B8C1
        );

}


/* =========================================================
   MAIN TOOL SECTION
   ========================================================= */

.video-tool-section {

    position: relative;

    padding: 80px 0 90px;

    background:
        #FFFFFF;

    overflow: hidden;

}


/* Subtle background */

.video-tool-section::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 260px;

    background:

        linear-gradient(
            180deg,
            rgba(45,70,109,0.035),
            transparent
        );

    pointer-events: none;

}


.video-tool-section .container {

    position: relative;

    z-index: 2;

}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.video-section-heading {

    max-width: 720px;

    margin: 0 auto 45px;

}


.section-kicker {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 12px;

    color: var(--video-primary);

    font-size: 0.82rem;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.section-kicker i {

    color: var(--video-secondary);

}


.video-section-heading h2 {

    margin: 0 0 14px;

    color: var(--video-dark);

    font-size: clamp(
        1.9rem,
        4vw,
        2.5rem
    );

    font-weight: 800;

    line-height: 1.2;

}


.video-section-heading h2 span {

    background:

        linear-gradient(
            90deg,
            #2D466D,
            #7893B1,
            #2D466D
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}


.video-section-heading p {

    max-width: 650px;

    margin: 0 auto;

    color: var(--video-gray-600);

    font-size: 1rem;

    line-height: 1.75;

}


/* =========================================================
   VIDEO TOOL CARD
   ========================================================= */

.video-tool-card {

    max-width: 1100px;

    margin: 0 auto;

    overflow: hidden;

    border:
        1px solid var(--video-gray-200);

    border-radius: 18px;

    background:
        var(--video-white);

    box-shadow:
        var(--video-shadow-lg);

}


/* =========================================================
   TOOL HEADER
   ========================================================= */

.video-tool-header {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px 25px;

    border-bottom:
        1px solid var(--video-gray-200);

    background:

        linear-gradient(
            180deg,
            #FFFFFF,
            #F8FAFC
        );

}


/* =========================================================
   TOOL ICON
   ========================================================= */

.video-tool-icon {

    width: 50px;

    height: 50px;

    flex: 0 0 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:

        linear-gradient(
            135deg,
            #2D466D,
            #7893B1
        );

    color: #FFFFFF;

    font-size: 20px;

    box-shadow:
        0 7px 18px
        rgba(45,70,109,0.18);

}


/* =========================================================
   TOOL INFO
   ========================================================= */

.video-tool-info {

    flex: 1;

    min-width: 0;

}


.video-tool-info h3 {

    margin: 0 0 3px;

    color: var(--video-dark);

    font-size: 1.05rem;

    font-weight: 700;

}


.video-tool-info p {

    margin: 0;

    color: var(--video-gray-500);

    font-size: 0.82rem;

}


/* =========================================================
   STATUS
   ========================================================= */

.video-tool-status {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 6px 10px;

    border-radius: 50px;

    background:
        rgba(45,70,109,0.07);

    color: var(--video-primary);

    font-size: 0.75rem;

    font-weight: 600;

}


.status-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background:
        #10B981;

    box-shadow:
        0 0 0 4px
        rgba(16,185,129,0.10);

}


/* =========================================================
   VIDEO WRAPPER
   ========================================================= */

.video-wrapper {
    position: relative;

    width: 100%;

    height: 680px;

    overflow: hidden;

    background: #FFFFFF;
}



/* =========================================================
   IFRAME
   ========================================================= */


.video-frame {
    display: block;

    position: relative;

    width: 100%;
    height: 100%;

    border: 0;

    background: #FFFFFF;

    z-index: 1;
}

/* =========================================================
   TOOL FOOTER
   ========================================================= */

.video-tool-footer {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    padding: 15px 20px;

    border-top:
        1px solid var(--video-gray-200);

    background:
        #FFFFFF;

}


/* =========================================================
   SECURITY ITEMS
   ========================================================= */

.video-security {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--video-gray-600);

    font-size: 0.78rem;

    font-weight: 500;

}


.video-security i {

    color:
        var(--video-primary);

    font-size: 12px;

}


/* =========================================================
   DIVIDERS
   ========================================================= */

.video-divider {

    width: 1px;

    height: 18px;

    background:
        var(--video-gray-200);

}


/* =========================================================
   CTA SECTION
   ========================================================= */

.video-cta {

    position: relative;

    overflow: hidden;

    padding: 80px 0;

    color: #FFFFFF;

    background:

        radial-gradient(
            circle at 20% 30%,
            rgba(176,184,193,0.10),
            transparent 42%
        ),

        radial-gradient(
            circle at 80% 70%,
            rgba(45,70,109,0.35),
            transparent 45%
        ),

        linear-gradient(
            135deg,
            #333333 0%,
            #2D466D 100%
        );

}


.video-cta::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,0.03) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255,255,255,0.03) 50%,
            rgba(255,255,255,0.03) 75%,
            transparent 75%
        );

    background-size: 70px 70px;

    opacity: 0.25;

    pointer-events: none;

}


.video-cta .container {

    position: relative;

    z-index: 2;

}


.video-cta-inner {

    max-width: 820px;

    margin: 0 auto;

}


/* =========================================================
   CTA KICKER
   ========================================================= */

.cta-kicker {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 15px;

    color:
        rgba(255,255,255,0.75);

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.cta-kicker i {

    color:
        var(--video-silver);

}


/* =========================================================
   CTA TITLE
   ========================================================= */

.video-cta .cta-title-refined {

    margin: 0 0 18px;

    color: #FFFFFF;

    font-size: clamp(
        2rem,
        4vw,
        2.65rem
    );

    font-weight: 800;

    line-height: 1.2;

}


.video-cta .cta-title-refined span {

    background:

        linear-gradient(
            90deg,
            #B0B8C1,
            #FFFFFF,
            #B0B8C1
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}


/* =========================================================
   CTA DESCRIPTION
   ========================================================= */

.video-cta .cta-description {

    max-width: 720px;

    margin: 0 auto 30px;

    color:
        rgba(255,255,255,0.82);

    font-size: 1rem;

    line-height: 1.75;

}


/* =========================================================
   CTA BUTTONS
   ========================================================= */

.cta-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;

}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.btn-refined {

    min-width: 150px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 12px 25px;

    border:
        2px solid #FFFFFF;

    border-radius: 9px;

    background:
        #FFFFFF;

    color:
        var(--video-primary) !important;

    font-size: 0.94rem;

    font-weight: 650;

    text-decoration: none;

    transition:
        all 0.3s ease;

}


.btn-refined:hover {

    transform:
        translateY(-3px);

    background:
        #F8FAFC;

    color:
        var(--video-primary-dark) !important;

    box-shadow:
        0 12px 28px
        rgba(0,0,0,0.20);

}


/* =========================================================
   OUTLINE BUTTON
   ========================================================= */

.btn-outline-refined {

    min-width: 150px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 12px 25px;

    border:
        2px solid
        rgba(255,255,255,0.80);

    border-radius: 9px;

    background:
        transparent;

    color:
        #FFFFFF !important;

    font-size: 0.94rem;

    font-weight: 650;

    text-decoration: none;

    transition:
        all 0.3s ease;

}


.btn-outline-refined:hover {

    transform:
        translateY(-3px);

    border-color:
        #FFFFFF;

    background:
        #FFFFFF;

    color:
        var(--video-primary) !important;

    box-shadow:
        0 12px 28px
        rgba(0,0,0,0.16);

}


/* =========================================================
   CTA DECORATION
   ========================================================= */

.video-cta-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.video-cta-glow-one {

    width: 280px;

    height: 280px;

    left: -160px;

    top: -140px;

    background:

        radial-gradient(
            circle,
            rgba(176,184,193,0.10),
            transparent 70%
        );

}


.video-cta-glow-two {

    width: 300px;

    height: 300px;

    right: -170px;

    bottom: -180px;

    background:

        radial-gradient(
            circle,
            rgba(45,70,109,0.30),
            transparent 70%
        );

}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes videoGradient {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }

}



@keyframes videoFadeUp {

    from {

        opacity: 0;

        transform:
            translateY(25px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


.fade-in-up {

    animation:
        videoFadeUp
        0.8s
        ease
        forwards;

}


.delay-1 {

    animation-delay:
        0.18s;

}


.delay-2 {

    animation-delay:
        0.35s;

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .video-hero {

        padding:
            90px 0 75px;

    }


    .video-tool-section {

        padding:
            70px 0 75px;

    }


    .video-wrapper {

        height:
            600px;

    }


    .video-cta {

        padding:
            70px 0;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    /* HERO */

    .video-hero {

        padding:
            75px 0 60px;

    }


    .video-hero .page-title {

        font-size:
            2.05rem;

        margin-bottom:
            15px;

    }


    .video-hero .page-description {

        padding:
            0 10px;

        font-size:
            0.94rem;

        line-height:
            1.7;

    }


    .video-eyebrow {

        padding:
            6px 12px;

        font-size:
            0.74rem;

    }


    /* TOOL SECTION */

    .video-tool-section {

        padding:
            55px 0 65px;

    }


    .video-section-heading {

        margin-bottom:
            32px;

    }


    .video-section-heading h2 {

        font-size:
            1.8rem;

    }


    .video-section-heading p {

        padding:
            0 8px;

        font-size:
            0.9rem;

    }


    /* TOOL CARD */

    .video-tool-card {

        border-radius:
            14px;

    }


    /* TOOL HEADER */

    .video-tool-header {

        padding:
            15px;

        gap:
            11px;

    }


    .video-tool-icon {

        width:
            43px;

        height:
            43px;

        flex-basis:
            43px;

        border-radius:
            10px;

        font-size:
            17px;

    }


    .video-tool-info h3 {

        font-size:
            0.94rem;

    }


    .video-tool-info p {

        font-size:
            0.73rem;

    }


    .video-tool-status {

        padding:
            5px 8px;

        font-size:
            0.68rem;

    }


    /* IFRAME */

    .video-wrapper {

        height:
            620px;

    }


    /* FOOTER */

    .video-tool-footer {

        gap:
            10px;

        padding:
            12px 10px;

    }


    .video-security {

        gap:
            5px;

        font-size:
            0.68rem;

        text-align:
            center;

    }


    .video-security i {

        font-size:
            10px;

    }


    .video-divider {

        height:
            15px;

    }


    /* CTA */

    .video-cta {

        padding:
            60px 0;

    }


    .video-cta .cta-title-refined {

        padding:
            0 8px;

        font-size:
            1.85rem;

    }


    .video-cta .cta-description {

        padding:
            0 10px;

        font-size:
            0.9rem;

    }


    .cta-buttons {

        width:
            100%;

        padding:
            0 12px;

        gap:
            10px;

    }


    .btn-refined,
    .btn-outline-refined {

        width:
            100%;

        min-width:
            0;

        min-height:
            48px;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .video-hero {

        padding:
            65px 0 52px;

    }


    .video-hero .page-title {

        font-size:
            1.85rem;

    }


    .video-hero .page-description {

        font-size:
            0.88rem;

    }


    .video-tool-section {

        padding:
            48px 0 55px;

    }


    .video-section-heading h2 {

        font-size:
            1.65rem;

    }


    .video-section-heading p {

        font-size:
            0.86rem;

    }


    .video-tool-header {

        flex-wrap:
            wrap;

    }


    .video-tool-status {

        margin-left:
            auto;

    }


    .video-wrapper {

        height:
            650px;

    }


    .video-tool-footer {

        display:
            grid;

        grid-template-columns:
            1fr 1fr 1fr;

        gap:
            5px;

    }


    .video-divider {

        display:
            none;

    }


    .video-security {

        flex-direction:
            column;

        justify-content:
            center;

        gap:
            4px;

        font-size:
            0.64rem;

    }


    .video-cta {

        padding:
            52px 0;

    }


    .video-cta .cta-title-refined {

        font-size:
            1.65rem;

    }


    .video-cta .cta-description {

        font-size:
            0.86rem;

    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .video-hero .text-gradient {

        animation:
            none;

    }


    .video-spinner {

        animation:
            none;

    }


    .fade-in-up {

        animation:
            none;

    }


    .btn-refined,
    .btn-outline-refined {

        transition:
            none;

    }

}