:root {
    /* --bg-dark: #0b111e; */
    --bg-dark: #050C1A;
    --bg-header: #050C1A;
    --bg-hero: #040E19;
    --bg-darker: #050910;
    --bg-card: #111a2b;
    --primary-blue: #3b82f6;
    --accent-gold: #f59e0b;
    --text-white: #ffffff;
    --text-grey: #d7dee7;
    --border-color: #2a3b53;
    --success: #10b981;
    --danger: #ef4444;

    /* ── Aethron Extended Palette ── */
    --color-frost:    #f0f6f7;  /* Off-white frost — for hero subtext */
    --color-slate:    #89aec8;  /* Muted steel blue — section subtitles */
    --color-brass:    #b8962e;  /* Warm brass gold — premium accents */
    --color-timber:   #7a6c3e;  /* Earthy bronze — card borders/accents */
    --color-marine:   #1a4a6e;  /* Deep ocean blue — section backgrounds */
    --color-midnight: #0b0e29;  /* Near-black blue — darkest surfaces */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    font-weight: 700; font-size: 1.5rem;
    color: var(--text-white); border: 2px solid var(--text-white);
    padding: 5px 10px; border-radius: 4px;
    letter-spacing: -1px;
}
.logo-text { font-size: 0.75rem; letter-spacing: 2px; line-height: 1.2; font-weight: 500; }
.logo-text small { font-size: 0.65rem; opacity: 0.8; }

.nav-links { display: flex; gap: 35px; }
.nav-links a { 
    font-size: 0.9rem; 
    letter-spacing: 1.5px; 
    color: var(--text-grey);
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-white); }

.nav-actions { display: flex; gap: 25px; align-items: center; font-size: 0.8rem; }
.lang-select { 
    color: var(--text-grey); 
    cursor: pointer; 
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.menu-btn {
    background: none; 
    border: none; 
    color: var(--text-white);
    cursor: pointer; 
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s;
}
.menu-btn:hover {
    background: var(--bg-card);
    border-color: var(--primary-blue);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 998;
    backdrop-filter: blur(5px);
}

/* Layout */
.container {
    display: flex;
    min-height: 100vh;
}



/* Main Content */
.content-wrapper { 
    flex: 1; 
    padding: 30px 40px;
    max-width: 100%;
}


/* Section 01: Hero */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.neon-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #A3BFD7 0%, #9FBCD4 100%);
    background: linear-gradient(90deg,  0%, #60a5fa 100%);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8),
                0 0 20px rgba(59, 130, 246, 0.4);
    margin-bottom: 32px;
    border-radius: 2px;
}

.hero-content { padding-top: 20px; }
.hero-content h1 { 
    font-size: 3.2rem; 
    line-height: 1.1; 
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1px;
}
.highlight { 
    color: var(--accent-gold); 
    font-weight: 600; 
    display: block; 
    margin-bottom: 15px;
    font-size: 0.85rem;
    letter-spacing: 2px;
}
.hero-content p { 
    color: var(--text-grey); 
    font-size: 0.95rem; 
    line-height: 1.6; 
    max-width: 95%;
    font-weight: 300;
}

.cta-group { margin-top: 35px; display: flex; gap: 15px; }
.btn-primary {
    padding: 14px 28px; 
    background: linear-gradient(135deg, #B1C6E3 0%, #92AACF 100%);
    color: black; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer; 
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}
.btn-secondary {
    padding: 14px 28px; 
    background: transparent; 
    border: 1px solid var(--border-color);
    color: var(--text-white); 
    border-radius: 4px; 
    cursor: pointer;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.btn-secondary:hover {
    border-color: var(--text-white);
    background: rgba(255,255,255,0.05);
}

.hero-video-container {
    position: relative;
    border-radius: 16px;
    width: 100%;
    height: 550px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    background: #0b111e;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: opacity 0.5s ease;
    border: 1px solid var(--border-color);
}

.hero-video.fade-out {
    opacity: 0;
}

.video-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #94a3b8;
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 1;
    pointer-events: none;
}

.overlay-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
    border-radius: 16px;
}

/* Floating Badges */
.hero-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(17, 26, 43, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.hero-floating-badge.top-right {
    top: 40px;
    right: -25px;
}

.hero-floating-badge.bottom-left {
    bottom: 50px;
    left: -25px;
    animation-delay: 1.5s;
}

.badge-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 0.95rem;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--text-grey);
    letter-spacing: 1px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Loading animation */
@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.video-loader::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -60px;
    border: 2px solid #3b82f6;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .hero-video-container {
        width: 100%;
        height: 100%;
    }
}

.hero-image { 
    position: relative; 
    border-radius: 8px; 
    overflow: hidden; 
    height: 420px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.hero-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}
.overlay-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}



/* Section 02: Services */
.services-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.service-card {
    position: relative;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}
.service-card:hover { 
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.service-card img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.7; 
    transition: all 0.3s;
}
.service-card:hover img { 
    opacity: 0.4;
    transform: scale(1.05);
}

.service-info {
    position: absolute;
    bottom: 0; 
    left: 0; 
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(5, 9, 16, 0.95) 0%, rgba(5, 9, 16, 0.7) 60%, transparent 100%);
    z-index: 1;
}
.service-info i {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: block;
}
.service-info h3 { 
    font-size: 0.95rem; 
    margin: 10px 0;
    font-weight: 600;
    letter-spacing: 1px;
}
.service-info p { 
    font-size: 0.8rem; 
    color: var(--text-grey); 
    margin-bottom: 15px;
    line-height: 1.5;
}
.service-info a { 
    font-size: 0.75rem; 
    color: var(--primary-blue);
    font-weight: 500;
    letter-spacing: 1px;
}
.service-info a:hover {
    color: var(--text-white);
}

.highlight-card { 
    border: 1px solid var(--primary-blue);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

/* Section 03: Market Intelligence */
.market-intelligence {
    background: var(--bg-darker);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
    border: 1px solid var(--border-color);
}

.mi-header {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.mi-header span { 
    font-size: 0.7rem; 
    color: var(--text-grey); 
    letter-spacing: 2px;
    font-weight: 600;
}
.mi-header a { 
    font-size: 0.75rem; 
    color: var(--primary-blue);
    font-weight: 500;
    letter-spacing: 1px;
}
.mi-header a:hover {
    color: var(--text-white);
}

.ticker-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}
.ticker-container::-webkit-scrollbar {
    height: 4px;
}
.ticker-container::-webkit-scrollbar-track {
    background: transparent;
}
.ticker-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 2px;
}

.ticker-item {
    min-width: 200px;
    padding-right: 30px;
    border-right: 1px solid var(--border-color);
}
.ticker-item:last-child { 
    border-right: none;
    padding-right: 0;
}
.ticker-label { 
    font-size: 0.7rem; 
    color: var(--text-grey); 
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-weight: 500;
}
.ticker-label span {
    display: block;
    font-size: 0.6rem;
    opacity: 0.6;
    margin-top: 3px;
}
.ticker-price { 
    font-size: 1.4rem; 
    font-weight: 700; 
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.ticker-change { 
    font-size: 0.85rem; 
    display: flex; 
    align-items: center; 
    gap: 6px;
    font-weight: 500;
}
.ticker-change.up { color: var(--success); }
.ticker-change.down { color: var(--danger); }
.ticker-graph { 
    height: 35px; 
    width: 120px; 
    margin-top: 10px;
}

/* Section 04: Insights */
.insights-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}
.insight-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}
.insight-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.insight-card img { 
    height: 160px; 
    width: 100%; 
    object-fit: cover;
    transition: transform 0.3s;
}
.insight-card:hover img {
    transform: scale(1.05);
}
.insight-content { padding: 25px; }
.insight-content small { 
    color: var(--accent-gold); 
    font-size: 0.7rem; 
    letter-spacing: 2px;
    font-weight: 600;
}
.insight-content h3 { 
    font-size: 0.95rem; 
    margin: 12px 0; 
    line-height: 1.4;
    font-weight: 600;
}
.insight-content a { 
    font-size: 0.75rem; 
    color: var(--primary-blue);
    font-weight: 500;
    letter-spacing: 1px;
}
.insight-content a:hover {
    color: var(--text-white);
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    padding: 50px 40px 30px;
    border-top: 1px solid var(--border-color);
}
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    /* border-bottom: 1px solid var(--border-color); */
}
.footer-brand { flex: 0 0 260px; }
.footer-brand .logo { margin-bottom: 15px; }
.footer-brand p { 
    font-size: 0.85rem; 
    color: var(--text-grey); 
    margin-top: 15px;
    line-height: 1.6;
}
.footer-links { 
    flex: 1; 
    display: flex; 
    justify-content: space-between; 
    max-width: 850px;
}
.footer-links .col { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4 { 
    font-size: 0.75rem; 
    color: var(--text-grey); 
    letter-spacing: 2px; 
    margin-bottom: 10px;
    font-weight: 600;
}
.footer-links a { 
    font-size: 0.85rem; 
    color: var(--text-grey);
    transition: color 0.3s;
}
.footer-links a:hover { 
    color: var(--text-white);
}
.footer-contact { flex: 0 0 200px; }
.footer-contact h4 { 
    font-size: 0.75rem; 
    color: var(--text-grey); 
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 600;
}
.footer-contact p { 
    font-size: 0.85rem; 
    color: var(--text-grey); 
    margin-bottom: 12px;
    line-height: 1.6;
}
.footer-contact i { 
    width: 20px; 
    color: var(--primary-blue);
    margin-right: 5px;
}
.footer-social h4 { 
    font-size: 0.75rem; 
    color: var(--text-grey); 
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 600;
}
.social-icons { display: flex; gap: 12px; }
.social-icons a {
    width: 40px; 
    height: 40px; 
    background: var(--bg-card);
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 4px; 
    border: 1px solid var(--border-color);
    color: var(--text-grey);
    transition: all 0.3s;
}
.social-icons a:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex; 
    justify-content: space-between;
    font-size: 0.75rem; 
    color: var(--text-grey);
}
.legal {
    display: flex;
    gap: 30px;
}
.legal a:hover {
    color: var(--text-white);
}

/* Mobile Menu Styles */
@media (max-width: 1024px) {
    .hero-section { 
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        width: 100%;
    }
    .live-overview { 
        display: none; 
    }
    .services-section, 
    .insights-section { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .footer-links { 
        gap: 40px; 
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .menu-btn.active {
        background: var(--bg-card);
        border-color: var(--primary-blue);
    }
    
    .mobile-overlay.active {
        display: block;
    }
    
    .sidebar { 
        display: none; 
    }
    
    .content-wrapper { 
        padding: 20px; 
    }
    
    .hero-content h1 { 
        font-size: 2.2rem; 
    }
    
    .hero-section { 
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    
    .hero-image { 
        height: 300px;
        order: -1;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .services-section, 
    .insights-section { 
        grid-template-columns: 1fr; 
    }
    
    .service-card {
        height: 250px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        height: 280px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .ticker-container {
        gap: 20px;
    }
    
    .ticker-item {
        min-width: 160px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .logo-text {
        display: none;
    }
    
    .nav-actions .lang-select {
        display: none;
    }
    
    .mi-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .ticker-item {
        min-width: 140px;
    }
    
    .ticker-price {
        font-size: 1.2rem;
    }
}


/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading-text {
    color: var(--text-grey);
    font-size: 0.9rem;
    animation: pulse 1.5s infinite;
}

/* ===== Mission & Vision Cards (service-card style) ===== */
.mission-vision-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.mv-card {
    position: relative;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    cursor: default;
}
.mv-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    transform: translateY(-4px);
}
.mv-card img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.3s;
    z-index: 0;
}
.mv-card:hover img {
    opacity: 0.4;
    transform: scale(1.05);
}

.mv-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 85%;
    overflow-y: auto;
    padding: 30px;
    background: linear-gradient(to top, rgba(5,9,16,0.98) 0%, rgba(5,9,16,0.88) 55%, rgba(5,9,16,0.4) 80%, transparent 100%);
    z-index: 1;
}
.mv-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(59,130,246,0.15);
    border: 1px solid rgba(59,130,246,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 15px;
    flex-shrink: 0;
}
.mv-icon-wrap.mv-gold {
    background: rgba(245,158,11,0.15);
    border-color: rgba(245,158,11,0.3);
    color: var(--accent-gold);
}
.mv-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.mv-info p {
    font-size: 0.88rem;
    color: var(--text-grey);
    line-height: 1.65;
    margin: 0;
}

/* ===== Core Values Cards (service-card style) ===== */
.core-values-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.cv-header {
    text-align: center;
    margin-bottom: 40px;
}
.cv-label {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.cv-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
}
.cv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cv-card {
    position: relative;
    height: 260px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    cursor: default;
}
.cv-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
}
.cv-card img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.3s;
    z-index: 0;
}
.cv-card:hover img {
    opacity: 0.4;
    transform: scale(1.05);
}

.cv-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 22px;
    background: linear-gradient(to top, rgba(5,9,16,0.97) 0%, rgba(5,9,16,0.7) 60%, transparent 100%);
    z-index: 1;
    text-align: center;
}
.cv-info i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    display: block;
}
.cv-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--text-white);
}
.cv-info p {
    font-size: 0.8rem;
    color: var(--text-grey);
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .cv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .mv-grid { grid-template-columns: 1fr; }
    .mv-card { height: 480px; }
    .mv-card img { height: 100%; min-height: 0; }
    .mv-info { padding: 25px; background: linear-gradient(to top, rgba(5,9,16,0.98) 0%, rgba(5,9,16,0.9) 65%, rgba(5,9,16,0.4) 85%, transparent 100%); }
    .mv-info h3 { font-size: 1.25rem; margin-bottom: 10px; }
    .mv-info p { font-size: 0.85rem; line-height: 1.5; margin-bottom: 8px; }
    .cv-grid { grid-template-columns: repeat(2, 1fr); }
    .cv-card { height: 260px; }
}
@media (max-width: 480px) {
    .cv-grid { grid-template-columns: 1fr; }
    .mv-card { height: 520px; }
    .mv-info { padding: 20px; }
    .cv-card { height: 260px; }
}