@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');

#ksys-media-art-wrapper {
    font-family: var(--font-main);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-white);
}

:where(#ksys-media-art-wrapper) a { text-decoration: none; color: inherit; }
:where(#ksys-media-art-wrapper) ul, :where(#ksys-media-art-wrapper) ol { list-style: none; padding: 0; margin: 0; }
:where(#ksys-media-art-wrapper) button { border: none; background: none; cursor: pointer; font-family: inherit; }
:where(#ksys-media-art-wrapper) img { max-width: 100%; height: auto; }
:where(#ksys-media-art-wrapper) p, :where(#ksys-media-art-wrapper) h2, :where(#ksys-media-art-wrapper) h3, :where(#ksys-media-art-wrapper) h4 { margin: 0; padding: 0; }

/* Variables */
:root {
    --color-primary: #005BAC; /* KSYS Blue */
    --color-point: #24C8F2; /* Cyan Point */
    --color-accent: #6C4CFF; /* Purple Accent */
    --color-dark: #06111F; /* Deep Navy */
    --color-text-dark: #111827;
    --color-text-gray: #4B5563;
    --color-bg-light: #F8FAFC;
    --color-bg-gray: #F3F4F6;
    --color-white: #FFFFFF;
    
    --font-main: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    
    --header-height: 80px;
}

/* Typography */
.ma-text-center { text-align: center; }
.ma-text-white { color: var(--color-white); }
.ma-text-gray { color: var(--color-text-gray); }
.ma-text-nowrap { white-space: nowrap; }
.highlight-text { color: var(--color-primary); font-weight: 700; }
.ma-mt-4 { margin-top: 16px; }

.ma-title-line {
    width: 40px;
    height: 4px;
    background-color: var(--color-point);
    margin: 0 auto 24px;
    border-radius: 2px;
}
.ma-title-line.ma-text-left {
    margin-left: 0;
}

/* Layout */
.ma-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 100px 0;
}

.ma-section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--color-text-dark);
}

.ma-section-desc {
    font-size: 18px;
    color: var(--color-text-gray);
    margin-bottom: 48px;
    line-height: 1.8;
}

/* Buttons */
.ma-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12.8px 28.8px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ma-btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.ma-btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 91, 172, 0.3);
}

.ma-btn-primary:hover {
    background-color: #004585;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 91, 172, 0.4);
}

.ma-btn-outline-dark {
    border: 1px solid #D1D5DB;
    color: var(--color-text-dark);
    background-color: var(--color-white);
}

.ma-btn-outline-dark:hover {
    background-color: var(--color-bg-gray);
    border-color: #9CA3AF;
}

.ma-btn-outline-white {
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.ma-btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.ma-btn-text {
    color: var(--color-primary);
    font-weight: 600;
}

.ma-btn-text:hover {
    text-decoration: underline;
}

/* -------------------------------------
 * Section 01: Hero 
 * ------------------------------------- */
.hero-section {
    position: relative;
    height: 640px;
    background-color: var(--color-bg-light);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg-video-wrap {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    position: relative;
    z-index: 10;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 6.4px 19.2px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 14.4px;
    font-weight: 700;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 19.2px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 12.8px;
    letter-spacing: 1px;
}

.hero-main-copy {
    font-size: 51.2px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--color-white);
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    letter-spacing: -0.02em;
}

.hero-sub-copy {
    font-size: 18.4px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.ma-btn-inquiry {
    background: transparent;
    backdrop-filter: blur(4px);
}

.ma-btn-inquiry:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
    flex: none;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

/* Collab Design Elements */
.collab-design {
    position: relative;
    width: 450px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collab-card {
    width: 180px;
    height: 180px;
    background: var(--color-white);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.collab-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ksys-card {
    top: 40px;
    left: 0;
    animation: float1 6s ease-in-out infinite;
}

.vido-card {
    bottom: 40px;
    right: 0;
    animation: float2 6s ease-in-out infinite reverse;
}

.collab-divider {
    position: absolute;
    z-index: 3;
    width: 2px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hero-video-controls {
    position: relative;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.vid-btn {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: transparent;
    color: var(--color-white);
    font-size: 14.4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.vid-btn:hover, .vid-btn.active {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.collab-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0,91,172,0.2) 0%, rgba(36,200,242,0.2) 100%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

@keyframes float1 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes float2 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* -------------------------------------
 * Section 02: About 
 * ------------------------------------- */
.about-section {
    background-color: var(--color-white);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.ma-card {
    background: var(--color-bg-light);
    padding: 48px 32px;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    border: 1px solid transparent;
}

.ma-card:hover {
    transform: translateY(-10px);
    background: var(--color-white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: rgba(0,91,172,0.1);
}

.ma-card-icon-wrapper {
    margin-bottom: 24px;
}

.ma-card-num {
    font-size: 40px;
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0.2;
    font-family: Arial, sans-serif;
}

.ma-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-dark);
}

.ma-card-text {
    color: var(--color-text-gray);
}

/* -------------------------------------
 * Section 03: Samples 
 * ------------------------------------- */
.samples-section {
    background-color: var(--color-bg-gray);
}

.samples-section {
    background-color: var(--color-bg-gray);
    overflow: hidden;
    position: relative;
}

.samples-full-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
    width: 100%;
    position: relative;
}

.samples-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    width: 100%;
    position: relative;
}

.real-samples-row {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    padding: 0 5%;
    flex-shrink: 0;
    z-index: 2;
}

.real-samples-row .sample-card {
    flex: 1;
    min-width: 0;
}

.fake-marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: stretch;
    min-width: 0;
}

.left-marquee {
    justify-content: flex-end;
    mask-image: linear-gradient(to right, transparent 0%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
}

.right-marquee {
    justify-content: flex-start;
    mask-image: linear-gradient(to left, transparent 0%, black 100%);
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 100%);
}

.marquee-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: max-content;
    padding: 0 12px;
}

.fake-card {
    width: 280px;
    flex-shrink: 0;
    opacity: 0.5;
    pointer-events: none;
    border-radius: 16px;
    overflow: hidden;
}

.fake-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes slideRight {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(50px); }
}
@keyframes slideLeft {
    0% { transform: translateX(50px); }
    100% { transform: translateX(-50px); }
}

.track-left { animation: slideRight 6s ease-in-out infinite alternate; }
.track-right { animation: slideLeft 6.5s ease-in-out infinite alternate; }
.track-left-slow { animation: slideRight 7.5s ease-in-out infinite alternate-reverse; }
.track-right-slow { animation: slideLeft 6.5s ease-in-out infinite alternate-reverse; }

.samples-more-wrap {
    margin-top: 64px;
    position: relative;
    z-index: 10;
}

.ma-btn-more-artworks {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(108, 76, 255, 0.3);
    transition: all 0.3s ease;
}

.ma-btn-more-artworks:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 76, 255, 0.4);
    color: var(--color-white);
}

.btn-arrow {
    font-size: 24px;
    transition: transform 0.3s;
}

.ma-btn-more-artworks:hover .btn-arrow {
    transform: translateX(5px);
}

.sample-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.sample-card:not(.fake-card):hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.ma-video-placeholder {
    aspect-ratio: 16 / 9;
    background: #E5E7EB;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.ma-video-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,91,172,0.05) 0%, rgba(36,200,242,0.1) 100%);
}

.ma-btn-play {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 19.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    margin-bottom: 8px;
    z-index: 2;
}

.ma-video-placeholder:hover .ma-btn-play {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.status-text {
    color: var(--color-text-gray);
    font-size: 13.6px;
    z-index: 2;
    font-weight: 500;
}

.sample-info {
    padding: 19.2px;
    text-align: center;
}

.sample-title {
    color: var(--color-text-dark);
    font-size: 16px;
    font-weight: 600;
}

/* -------------------------------------
 * Section 04: How to Use 
 * ------------------------------------- */
.how-to-use-section {
    background-color: var(--color-white);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 64px;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text-gray);
    border: 2px solid #E5E7EB;
    transition: all 0.3s;
}

.step-title {
    font-size: 19.2px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-desc {
    color: var(--color-text-gray);
    font-size: 15.2px;
}

.highlight-step .step-num {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 91, 172, 0.2);
}

.highlight-step .step-title {
    color: var(--color-primary);
}

.step-connector {
    flex: 0 0 50px;
    height: 2px;
    background: #E5E7EB;
    margin-top: 40px;
    z-index: 1;
}

/* -------------------------------------
 * Section 05: Features 
 * ------------------------------------- */
.features-section {
    background-color: var(--color-bg-light);
}

.features-layout {
    display: flex;
    gap: 64px;
    align-items: center;
}

.features-text {
    flex: 1;
}

.features-text .ma-section-title {
    font-size: 40px;
}

.features-desc {
    font-size: 18.4px;
    color: var(--color-text-gray);
    margin-top: 24px;
    line-height: 1.8;
}

.features-cards {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.f-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s;
}

.f-card:hover {
    transform: translateY(-5px);
}

.f-icon {
    margin-bottom: 19.2px;
    color: var(--color-primary);
}

.svg-icon {
    stroke: var(--color-primary);
}

.f-card:nth-child(2) .svg-icon { stroke: var(--color-point); }
.f-card:nth-child(3) .svg-icon { stroke: var(--color-accent); }

.f-title {
    font-size: 18.4px;
    font-weight: 700;
    margin-bottom: 12.8px;
    color: var(--color-text-dark);
}

.f-desc {
    font-size: 15.2px;
    color: var(--color-text-gray);
}

/* -------------------------------------
 * Section 06: CTA 
 * ------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #003b73 100%);
    color: var(--color-white);
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-white);
}

.cta-desc {
    font-size: 18.4px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-highlight {
    display: inline-block;
    padding: 16px 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 19.2px;
    font-weight: 700;
    color: var(--color-point);
    margin-bottom: 48px;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.cta-actions .ma-btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.cta-actions .ma-btn-primary:hover {
    background-color: #f1f1f1;
}

/* -------------------------------------
 * Footer 
 * ------------------------------------- */
.footer {
    background: #111827;
    color: rgba(255,255,255,0.5);
    padding: 32px 0;
    text-align: center;
}

/* -------------------------------------
 * Modals
 * ------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-white);
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    padding: 48px 32px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.modal-content.large-modal {
    max-width: 1200px;
    width: 95%;
    padding: 0;
    overflow: hidden;
    background: var(--color-dark);
    color: var(--color-white);
    text-align: left;
}

.modal-layout {
    display: flex;
    height: 70vh;
    min-height: 500px;
    max-height: calc(100vh - 120px);
}

.modal-video-side {
    flex: 2;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-placeholder-large {
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.video-placeholder-large .modal-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.modal-info-side {
    flex: 1;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #0d1b2a;
    overflow-y: auto;
}

.modal-info-side::-webkit-scrollbar {
    width: 6px;
}
.modal-info-side::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}
.modal-info-side::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}
.modal-info-side::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.info-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(36, 200, 242, 0.1);
    color: var(--color-point);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
}

.info-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-white);
}

.info-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 12px 0;
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-label {
    width: 80px;
    color: rgba(255,255,255,0.5);
    font-size: 13.5px;
}

.meta-value {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
}

.info-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    white-space: pre-wrap;
    font-size: 14px;
    margin-bottom: 20px;
}

.ma-btn-full {
    width: 100%;
    display: flex;
    justify-content: center;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: rgba(255,255,255,0.6);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    background: rgba(0,0,0,0.3);
}

.modal-close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
}

/* -------------------------------------
 * Responsive
 * ------------------------------------- */
@media (max-width: 1439px) {
    .hero-main-copy { font-size: 44.8px; }
}

@media (max-width: 1023px) {
    /* Tablet */
    .gnb { display: none; }
    .header-utils .ma-btn-simulator { display: none; }
    
    .hero-container { flex-direction: column; text-align: center; }
    .hero-visual { width: 100%; justify-content: center; }
    .hero-actions { justify-content: center; }
    .ma-text-nowrap { white-space: normal; } /* Allow wrapping on tablet/mobile if needed */
    
    .about-cards { grid-template-columns: repeat(2, 1fr); }
    .fake-marquee { display: none; }
    .real-samples-row { flex-wrap: wrap; justify-content: center; }
    .real-samples-row .sample-card { flex: 0 0 calc(50% - 12px); min-width: calc(50% - 12px); }
    
    .features-layout { flex-direction: column; text-align: center; }
    .ma-title-line.ma-text-left { margin: 0 auto 24px; }
}

@media (max-width: 767px) {
    /* Mobile */
    .section-padding { padding: 60px 0; }
    .ma-section-title { font-size: 28.8px; }
    
    .hero-section { height: auto; padding-bottom: 60px; }
    .hero-main-copy { font-size: 35.2px; }
    
    .about-cards { grid-template-columns: 1fr; }
    .real-samples-row .sample-card { flex: 0 0 100%; min-width: 100%; }
    
    .steps-container { flex-direction: column; align-items: center; gap: 32px; margin-top: 32px; }
    .step-connector { width: 2px; height: 30px; margin-top: -10px; margin-bottom: -10px; }
    
    .features-cards { grid-template-columns: 1fr; }
    
    .cta-actions { flex-direction: column; }
    .cta-title { font-size: 25.6px; }
    .cta-highlight { font-size: 16px; padding: 12.8px 16px; }

    /* Responsive Video Modal */
    .modal-layout {
        flex-direction: column;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    .modal-video-side {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    .modal-info-side {
        padding: 24px;
        overflow-y: visible;
    }
}




