/* TOP INTRO CSS VERSION 1 */

.top_intro_section {
    position: relative;
    z-index: 2;
}

.top_intro_container {
    background: #F8F6F2;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
	border-bottom: 1px solid #454545;
Margin-top: 100px;
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.10),
        0 2px 4px rgba(0, 0, 0, 0.06);
}

.top_intro_grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2rem;
    align-items: center;
}

.top_intro_content h1 {
    margin: 0 0 0.9rem;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.05;
    max-width: 13ch;
}

.top_intro_lead {
    max-width: 38rem;
    margin: 0 0 1.35rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--jd-grey-500);
}

.top_intro_ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.top_intro_trust_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 0.9rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top_intro_trust_list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--jd-black);
    font-size: 0.9rem;
    font-weight: var(--weight-medium);
    line-height: 1.4;
}

.top_intro_trust_list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--jd-gold);
    font-weight: var(--weight-bold);
}

.top_intro_visual {
    width: 100%;
}

.top_intro_visual_card {
    background: #111111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow:
        0 10px 20px rgba(0,0,0,0.22),
        0 3px 6px rgba(0,0,0,0.14);
}

.top_intro_visual_media {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #e8e8e8;
    overflow: hidden;
}

.top_intro_visual_media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top_intro_visual_body {
    padding: 1.25rem 1.2rem 1.2rem;
	text-align: center;
}

.top_intro_visual_body h2 {
    margin: 0 0 0.5rem;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.2;
}

.top_intro_visual_body p {
    margin: 0 0 1rem;
    color: rgba(255,255,255,0.78);
    font-size: 0.93rem;
    line-height: 1.6;
}

.top_intro_visual_body .button_dark {
    background: linear-gradient(180deg, #f0d77a 0%, #d4af37 100%);
    color: #111111;
    border: 2px solid #ffffff;
}

.top_intro_visual_body .button_dark:hover,
.top_intro_visual_body .button_dark:focus-visible {
    background: linear-gradient(180deg, #f5df8d 0%, #deb949 100%);
    color: #111111;
    border-color: #ffffff;
}

.top_intro_video_header {
    max-width: 52rem;
    margin-bottom: 2rem;
}

/* PLAYER WRAP */

.top_intro_video_player_wrap {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

/* PLAYER */

.top_intro_video_player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;

    background: #000000;
    border-radius: 1.2rem;
    overflow: hidden;
}

/* VIDEO / IFRAME */

.top_intro_video_player iframe,
.top_intro_video_player video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
}

/* OPTIONAL: SUBTLE OVERLAY (FUTURE PLAY BUTTON ETC) */

.top_intro_video_player::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

@media (max-width: 1023px) {
    .top_intro_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .top_intro_content h1 {
        max-width: none;
    }

    .top_intro_visual {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .top_intro_container {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }

    .top_intro_content {
        text-align: center;
    }

    .top_intro_lead {
        margin-left: auto;
        margin-right: auto;
    }

    .top_intro_ctas {
        flex-direction: column;
    }

    .top_intro_ctas .button {
        width: 100%;
    }

    .top_intro_trust_list {
        justify-content: center;
        text-align: left;
    }

    .top_intro_visual_body {
        text-align: center;
    }

    .top_intro_visual_body .button_dark {
        width: 100%;
    }
	
	.top_intro_video_headervideo_container_wrap {
        padding-top: 3rem;
        padding-bottom: 3rem;
		margin-top: -75px;
        box-shadow:
            0 6px 14px rgba(0, 0, 0, 0.12),
            0 2px 4px rgba(0, 0, 0, 0.08);
    }

    .top_intro_video_headervideo_header {
        margin-bottom: 1.5rem;
    }

    .top_intro_video_headervideo_player {
        border-radius: 0.9rem;
    }
}

