/* ==========================================================================
   EAGLE SECURITY - MAIN STYLESHEET
   ========================================================================== */
/* ---- CSS Variables ---- */
:root {
    --gold: #D4AF37;
    --gold-light: #F0D878;
    --gold-dark: #B8960C;
    --gold-glow: rgba(212,175,55,0.12);
    --navy: #0A0F1A;
    --navy-light: #0F1629;
    --navy-lighter: #151D35;
    --navy-card: #0D1321;
    --accent-red: #eddee1;
    --white: #F8F9FC;
    --gray: #8B95A8;
    --gray-light: #A8B2C4;
    --gray-dark: #5A6270;
    --glass: rgba(10, 15, 26, 0.72);
    --border-subtle: rgba(212,175,55,0.08);
    --border-hover: rgba(212,175,55,0.25);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-gold: 0 0 40px rgba(212,175,55,0.15);
}

/* ---- Base Reset ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--gold); color: var(--navy); }

/* ---- Particle Canvas ---- */
#particle-canvas {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}

/* ---- Custom Cursor ---- */
.cursor-dot {
    position: fixed; width: 6px; height: 6px;
    background: var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transition: transform 0.08s ease;
    mix-blend-mode: difference;
}
.cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1.5px solid var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: difference;
}
@media (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none !important; }
}

/* ---- Navbar ---- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 1.25rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}
.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    padding: 0.75rem 5%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
    border-bottom: 1px solid var(--border-subtle);
}
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-icon { width: 40px; height: 40px; position: relative; flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; filter: drop-shadow(0 0 8px var(--gold-glow)); }
.logo-text {
    font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem;
    font-weight: 700; color: var(--white); letter-spacing: 1px;
}
.logo-text span { color: var(--gold); font-weight: 600; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
    font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
    color: var(--gray); text-decoration: none;
    letter-spacing: 0.5px; position: relative; padding: 0.25rem 0;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1.5px; background: var(--gold);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 600;
    padding: 0.65rem 1.6rem; background: transparent; border: 1.5px solid var(--gold);
    color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px;
    cursor: pointer; position: relative; overflow: hidden; transition: all 0.4s ease;
    border-radius: var(--radius-sm);
}
.nav-cta::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%; background: var(--gold);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: -1;
}
.nav-cta:hover { color: var(--navy); box-shadow: 0 0 25px rgba(212,175,55,0.35); }
.nav-cta:hover::before { left: 0; }
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; z-index: 1001; background: none; border: none; padding: 0.5rem;
}
.mobile-menu-btn span { width: 26px; height: 2px; background: var(--gold); transition: all 0.3s ease; display: block; border-radius: 1px; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; padding: 8rem 5% 4rem; overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}
.hero-eagle-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-eagle-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(30%) brightness(0.35) contrast(1.1);
    transform: scale(1.1);
    animation: eagleFloat 20s ease-in-out infinite;
}
@keyframes eagleFloat {
    0%, 100% { transform: scale(1.1) translateY(0); }
    50% { transform: scale(1.12) translateY(-8px); }
}
.hero-eagle-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(196,30,58,0.05) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10,15,26,0.7) 0%, rgba(10,15,26,0.5) 40%, rgba(15,22,41,0.85) 100%);
    z-index: 2;
}
.hero-grid {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(212,175,55,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.025) 1px, transparent 1px);
    background-size: 80px 80px; z-index: 1;
    animation: gridMove 25s linear infinite;
}
@keyframes gridMove { 0% { transform: translate(0, 0); } 100% { transform: translate(80px, 80px); } }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 860px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.2rem; background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2); border-radius: 50px;
    font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 500;
    color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 2rem; animation: fadeInDown 1s ease;
}
.hero-badge .pulse { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.4); } }
.hero-title { 
    font-family: 'Space Grotesk', sans-serif; 
    font-size: clamp(2.8rem, 7vw, 5.5rem); 
    font-weight: 700; 
    line-height: 1.05; 
    margin-bottom: 1.5rem; 
    letter-spacing: -1.5px; 
}
.hero-title .line1 { 
    display: block; 
    color: var(--white); 
    animation: fadeInUp 1s ease 0.2s both; 
}
.hero-title .line2 { 
    display: block; 
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: fadeInUp 1s ease 0.4s both; 
}
.hero-subtitle { 
    font-family: 'DM Sans', sans-serif; 
    font-size: clamp(1rem, 1.8vw, 1.2rem); 
    color: var(--gray); 
    max-width: 580px; 
    margin: 0 auto 2.5rem; 
    line-height: 1.75; 
    font-weight: 400;
    animation: fadeInUp 1s ease 0.6s both; 
}
.hero-cta-group { 
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; 
    animation: fadeInUp 1s ease 0.8s both; 
}
.btn-primary { 
    font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 600; 
    padding: 1rem 2.2rem; background: var(--gold); color: var(--navy); 
    border: none; text-transform: uppercase; letter-spacing: 1.5px; 
    cursor: pointer; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    border-radius: var(--radius-sm); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 0 35px rgba(212,175,55,0.4); transform: translateY(-2px); }
.btn-secondary { 
    font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 600; 
    padding: 1rem 2.2rem; background: transparent; color: var(--white); 
    border: 1.5px solid rgba(255,255,255,0.12); text-transform: uppercase; letter-spacing: 1.5px; 
    cursor: pointer; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    border-radius: var(--radius-sm); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); background: rgba(212,175,55,0.05); }
.hero-stats { display: flex; justify-content: center; gap: 3.5rem; margin-top: 4rem; animation: fadeInUp 1s ease 1s both; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { 
    font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; 
    color: var(--gold); display: block; letter-spacing: -1px;
}
.stat-label { 
    font-family: 'DM Sans', sans-serif; font-size: 0.75rem; color: var(--gray-dark); 
    text-transform: uppercase; letter-spacing: 2px; font-weight: 500;
}
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; animation: bounce 2.5s infinite; }
.scroll-indicator span { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--gray-dark); letter-spacing: 3px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 35px; background: linear-gradient(to bottom, var(--gold), transparent); border-radius: 1px; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ---- Section Common Styles ---- */
section { position: relative; z-index: 2; padding: 6rem 5%; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { 
    font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 500; 
    color: var(--gold); text-transform: uppercase; letter-spacing: 3px; 
    margin-bottom: 1rem; display: inline-block; position: relative; 
}
.section-label::before, .section-label::after { content: ''; position: absolute; top: 50%; width: 30px; height: 1px; background: var(--gold); opacity: 0.4; }
.section-label::before { right: calc(100% + 12px); }
.section-label::after { left: calc(100% + 12px); }
.section-title { 
    font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4.5vw, 3.2rem); 
    font-weight: 700; color: var(--white); margin-bottom: 1rem; line-height: 1.15; 
    letter-spacing: -1px;
}
.section-desc { 
    font-family: 'DM Sans', sans-serif; font-size: 1.05rem; color: var(--gray); 
    max-width: 560px; margin: 0 auto; font-weight: 400; line-height: 1.7;
}

/* ---- Services Section ---- */
.services { background: var(--navy-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.service-card {
    background: var(--navy-card); border: 1px solid var(--border-subtle);
    position: relative; overflow: hidden; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer; border-radius: var(--radius-md);
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; z-index: 2;
}
.service-card:hover { 
    border-color: var(--border-hover); 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-md), var(--shadow-gold);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .service-img {
    width: 100%; height: 190px; object-fit: cover;
    filter: grayscale(50%) brightness(0.6);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-img { filter: grayscale(0%) brightness(0.85); transform: scale(1.05); }
.service-card .service-img-wrap { overflow: hidden; position: relative; }
.service-card .service-img-wrap::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 60px;
    background: linear-gradient(to top, var(--navy-card), transparent); z-index: 1;
}
.service-card-content { padding: 0 1.75rem 2rem; }
.service-icon { width: 44px; height: 44px; margin-bottom: 1rem; position: relative; }
.service-icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-card h3 { 
    font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 600; 
    color: var(--white); margin-bottom: 0.6rem; letter-spacing: -0.3px; 
}
.service-card p { 
    color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; 
    font-weight: 400;
}
.service-link { 
    font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 600; 
    color: var(--gold); text-decoration: none; text-transform: uppercase; 
    letter-spacing: 1.5px; display: inline-flex; align-items: center; gap: 0.5rem; 
    transition: gap 0.3s ease; 
}
.service-link:hover { gap: 0.85rem; }
.service-link svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2.5; }

/* ---- About Section ---- */
.about { background: var(--navy); overflow: hidden; }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto; align-items: center; }
.about-visual { position: relative; }
.about-visual .frame { position: relative; width: 100%; aspect-ratio: 4/5; border: 1.5px solid rgba(212,175,55,0.3); overflow: hidden; border-radius: var(--radius-md); }
.about-visual .frame::before { content: ''; position: absolute; top: -1px; left: -1px; width: 35px; height: 35px; border-top: 3px solid var(--gold); border-left: 3px solid var(--gold); z-index: 2; border-radius: 2px 0 0 0; }
.about-visual .frame::after { content: ''; position: absolute; bottom: -1px; right: -1px; width: 35px; height: 35px; border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold); z-index: 2; border-radius: 0 0 2px 0; }
.about-visual .frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(25%) contrast(1.05); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); display: block; }
.about-visual:hover .frame img { filter: grayscale(0%) contrast(1); transform: scale(1.03); }
.about-visual .experience-badge { 
    position: absolute; bottom: -18px; right: -18px; 
    background: var(--gold); color: var(--navy); 
    padding: 1.25rem 1.75rem; 
    font-family: 'Space Grotesk', sans-serif; font-weight: 700; text-align: center; 
    border-radius: var(--radius-sm); z-index: 3; 
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}
.about-visual .experience-badge .num { font-size: 2.2rem; display: block; line-height: 1; letter-spacing: -1px; }
.about-visual .experience-badge .text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.about-content h2 { 
    font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 700; 
    margin-bottom: 1.25rem; line-height: 1.15; letter-spacing: -1px;
}
.about-content h2 span { color: var(--gold); }
.about-content p { color: var(--gray); margin-bottom: 1.25rem; line-height: 1.75; font-weight: 400; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.75rem; }
.about-feature { display: flex; align-items: flex-start; gap: 0.875rem; }
.about-feature .check { 
    width: 22px; height: 22px; min-width: 22px; 
    background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.3); 
    display: flex; align-items: center; justify-content: center; 
    margin-top: 2px; border-radius: 4px; 
}
.about-feature .check svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 3; }
.about-feature h4 { 
    font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; 
    color: var(--white); margin-bottom: 0.2rem; letter-spacing: -0.2px;
}
.about-feature p { font-size: 0.85rem; color: var(--gray-dark); margin: 0; }

/* ---- Sectors Section ---- */
.sectors { background: var(--navy-light); }
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; max-width: 1200px; margin: 0 auto; }
.sector-card {
    background: var(--navy); border: 1px solid var(--border-subtle);
    position: relative; overflow: hidden; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer; border-radius: var(--radius-md);
}
.sector-card .sector-img {
    width: 100%; height: 150px; object-fit: cover;
    filter: grayscale(55%) brightness(0.55);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.sector-card:hover .sector-img { filter: grayscale(0%) brightness(0.75); transform: scale(1.05); }
.sector-card .sector-img-wrap { overflow: hidden; position: relative; }
.sector-card .sector-img-wrap::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 70px;
    background: linear-gradient(to top, var(--navy), transparent); z-index: 1;
}
.sector-card-content { padding: 0 1.25rem 1.5rem; text-align: center; position: relative; z-index: 2; margin-top: -28px; }
.sector-card .sector-icon {
    width: 48px; height: 48px; margin: 0 auto 0.75rem;
    background: var(--navy); border: 1px solid rgba(212,175,55,0.25);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 3;
}
.sector-card .sector-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.sector-card h3 { 
    font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 600; 
    color: var(--white); margin-bottom: 0.4rem; letter-spacing: -0.2px; 
}
.sector-card p { font-size: 0.85rem; color: var(--gray-dark); line-height: 1.6; }
.sector-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0;
    background: linear-gradient(to top, rgba(212,175,55,0.08), transparent);
    transition: height 0.5s ease;
}
.sector-card:hover { border-color: var(--border-hover); transform: translateY(-5px); }
.sector-card:hover::after { height: 100%; }

/* ---- Why Us Section ---- */
.why-us { background: var(--navy); position: relative; }
.why-us::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.04) 0%, transparent 60%); pointer-events: none; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.why-card {
    background: var(--navy-lighter); border: 1px solid var(--border-subtle);
    position: relative; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    overflow: hidden; border-radius: var(--radius-md);
}
.why-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-gold); }
.why-card .why-img {
    width: 100%; height: 130px; object-fit: cover;
    filter: grayscale(60%) brightness(0.45);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card:hover .why-img { filter: grayscale(0%) brightness(0.65); transform: scale(1.05); }
.why-card .why-img-wrap { overflow: hidden; position: relative; }
.why-card .why-img-wrap::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 45px;
    background: linear-gradient(to top, var(--navy-lighter), transparent); z-index: 1;
}
.why-card-content { padding: 1.25rem; text-align: center; position: relative; z-index: 2; margin-top: -22px; }
.why-card .why-number { 
    font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; 
    color: rgba(212,175,55,0.12); position: absolute; top: 0.4rem; right: 0.75rem; 
    line-height: 1; z-index: 3; letter-spacing: -1px;
}
.why-card .why-icon { 
    width: 42px; height: 42px; margin: 0 auto 0.875rem; 
    background: var(--navy-lighter); border: 1px solid rgba(212,175,55,0.25); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    position: relative; z-index: 3; 
}
.why-card .why-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.why-card h3 { 
    font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 600; 
    color: var(--white); margin-bottom: 0.6rem; letter-spacing: -0.2px; 
}
.why-card p { font-size: 0.85rem; color: var(--gray-dark); line-height: 1.65; }

/* ---- Partners Section ---- */
.partners { background: var(--navy-light); overflow: hidden; }
.partners-slider-wrap { position: relative; max-width: 1200px; margin: 0 auto; }
.partners-track {
    display: flex; gap: 2rem;
    animation: partnersScroll 35s linear infinite;
    width: max-content;
}
.partners-slider-wrap:hover .partners-track { animation-play-state: paused; }
@keyframes partnersScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partner-item {
    flex-shrink: 0; width: 200px;
    background: var(--navy-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); padding: 1.25rem; text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer;
}
.partner-item:hover {
    border-color: var(--border-hover); transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}
.partner-item img {
    width: 70px; height: 70px; border-radius: 50%;
    object-fit: cover; margin-bottom: 0.875rem;
    border: 2px solid rgba(212,175,55,0.2);
    filter: grayscale(30%);
    transition: all 0.4s ease;
}
.partner-item:hover img { filter: grayscale(0%); border-color: var(--gold); }
.partner-item h4 { 
    font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; color: var(--white); 
    margin-bottom: 0.2rem; font-weight: 600; letter-spacing: -0.2px;
}
.partner-item span { 
    font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--gold); 
    text-transform: uppercase; letter-spacing: 1px; 
}
.partner-item p { font-size: 0.78rem; color: var(--gray-dark); margin-top: 0.4rem; line-height: 1.5; }
.partners-fade-left, .partners-fade-right {
    position: absolute; top: 0; width: 80px; height: 100%;
    z-index: 2; pointer-events: none;
}
.partners-fade-left { left: 0; background: linear-gradient(to right, var(--navy-light), transparent); }
.partners-fade-right { right: 0; background: linear-gradient(to left, var(--navy-light), transparent); }

/* ---- Testimonials Section ---- */
.testimonials { background: var(--navy-light); overflow: hidden; }
.testimonials-slider { max-width: 900px; margin: 0 auto; position: relative; }
.testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial-slide { min-width: 100%; padding: 0 1rem; }
.testimonial-card {
    background: var(--navy); border: 1px solid var(--border-subtle);
    position: relative; overflow: hidden; border-radius: var(--radius-md);
}
.testimonial-card .testimonial-img {
    width: 100%; height: 180px; object-fit: cover;
    filter: grayscale(35%) brightness(0.5);
}
.testimonial-card .testimonial-img-wrap { position: relative; overflow: hidden; }
.testimonial-card .testimonial-img-wrap::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 70px;
    background: linear-gradient(to top, var(--navy), transparent);
}
.testimonial-card-content { padding: 2rem 2.5rem 2.5rem; text-align: center; position: relative; }
.testimonial-card::before {
    content: '"'; font-family: 'Space Grotesk', sans-serif; font-size: 7rem;
    color: rgba(212,175,55,0.08); position: absolute; top: 160px; left: 1.5rem; line-height: 1; z-index: 1;
}
.testimonial-card p { 
    font-size: 1.1rem; color: var(--gray-light); line-height: 1.8; 
    font-style: italic; margin-bottom: 1.75rem; position: relative; z-index: 1; 
    font-weight: 400;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonial-author .avatar { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold); overflow: hidden; }
.testimonial-author .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author .info h4 { 
    font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; color: var(--white); 
    margin-bottom: 0.15rem; font-weight: 600; 
}
.testimonial-author .info span { 
    font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--gold); 
    text-transform: uppercase; letter-spacing: 1.5px; 
}
.testimonial-nav { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.testimonial-nav button { 
    width: 44px; height: 44px; background: transparent; 
    border: 1px solid rgba(212,175,55,0.2); color: var(--gold); 
    cursor: pointer; display: flex; align-items: center; justify-content: center; 
    transition: all 0.3s ease; border-radius: var(--radius-sm);
}
.testimonial-nav button:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.testimonial-nav button svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.25rem; }
.testimonial-dots .dot { 
    width: 8px; height: 8px; border-radius: 50%; background: rgba(212,175,55,0.15); 
    cursor: pointer; transition: all 0.3s ease; 
}
.testimonial-dots .dot.active { background: var(--gold); transform: scale(1.2); }

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--navy-lighter) 0%, var(--navy) 100%);
    text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(196,30,58,0.04) 0%, transparent 50%);
}
.cta-section .section-header { position: relative; z-index: 1; }
.cta-section .section-title { font-size: clamp(2rem, 5vw, 3.2rem); }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; margin-top: 2rem; }

/* ---- Contact Section ---- */
.contact { background: var(--navy-light); }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto; }
.contact-info h3 { 
    font-family: 'Space Grotesk', sans-serif; font-size: 1.7rem; font-weight: 700; 
    margin-bottom: 1.25rem; letter-spacing: -0.5px;
}
.contact-info h3 span { color: var(--gold); }
.contact-info p { color: var(--gray); margin-bottom: 1.75rem; line-height: 1.75; font-weight: 400; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item .icon { 
    width: 44px; height: 44px; min-width: 44px; 
    background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.15); 
    display: flex; align-items: center; justify-content: center; 
    border-radius: var(--radius-sm);
}
.contact-item .icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-item .detail h4 { 
    font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 600; 
    color: var(--white); margin-bottom: 0.2rem; text-transform: uppercase; 
    letter-spacing: 1px; 
}
.contact-item .detail p, .contact-item .detail a { 
    color: var(--gray-dark); font-size: 0.9rem; text-decoration: none; 
    transition: color 0.3s ease; font-weight: 400;
}
.contact-item .detail a:hover { color: var(--gold); }
.contact-form { 
    background: var(--navy); border: 1px solid var(--border-subtle); 
    padding: 2.25rem; border-radius: var(--radius-md); 
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { 
    font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; font-weight: 500; 
    color: var(--gray-dark); text-transform: uppercase; letter-spacing: 1.5px; 
    display: block; margin-bottom: 0.4rem; 
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.875rem 1rem; background: var(--navy-lighter);
    border: 1px solid var(--border-subtle); color: var(--white);
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem; 
    transition: all 0.3s ease; border-radius: var(--radius-sm);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
    outline: none; border-color: var(--gold); 
    box-shadow: 0 0 0 3px rgba(212,175,55,0.08); 
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.submit-btn {
    width: 100%; padding: 1.1rem; background: var(--gold); color: var(--navy);
    font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px; border: none; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border-radius: var(--radius-sm);
}
.submit-btn:hover { background: var(--gold-light); box-shadow: 0 0 30px rgba(212,175,55,0.35); transform: translateY(-2px); }

/* ---- Footer ---- */
.footer { background: var(--navy); border-top: 1px solid var(--border-subtle); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand p { color: var(--gray-dark); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.25rem; font-weight: 400; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { 
    width: 38px; height: 38px; border: 1px solid var(--border-subtle); 
    display: flex; align-items: center; justify-content: center; 
    color: var(--gray-dark); text-decoration: none; transition: all 0.3s ease; 
    border-radius: var(--radius-sm);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.social-links a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h4 { 
    font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 600; 
    color: var(--white); margin-bottom: 1.25rem; letter-spacing: 0.5px; 
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { 
    color: var(--gray-dark); text-decoration: none; font-size: 0.88rem; 
    transition: color 0.3s ease; display: inline-flex; align-items: center; gap: 0.4rem; 
    font-weight: 400;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a::before { content: '->'; font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem; color: var(--gold); opacity: 0; transition: opacity 0.3s ease; }
.footer-col ul li a:hover::before { opacity: 1; }
.footer-bottom { border-top: 1px solid var(--border-subtle); padding-top: 1.75rem; text-align: center; }
.footer-bottom p { color: var(--gray-dark); font-size: 0.82rem; font-weight: 400; }
.footer-bottom span { color: var(--gold); }

/* ---- Animations ---- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(35px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ---- Mobile Navigation ---- */
.mobile-nav {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 320px; height: 100vh;
    background: var(--navy); border-left: 1px solid var(--border-subtle);
    z-index: 999; padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto;
}
.mobile-nav.active { right: 0; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li { margin-bottom: 1.25rem; }
.mobile-nav ul li a { 
    font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; color: var(--white); 
    text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px; 
    transition: color 0.3s ease; font-weight: 600;
}
.mobile-nav ul li a:hover { color: var(--gold); }
.mobile-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.65); z-index: 998; opacity: 0; visibility: hidden; 
    transition: all 0.3s ease; backdrop-filter: blur(4px);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .about-container, .contact-container { grid-template-columns: 1fr; gap: 3rem; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-visual { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
    html { font-size: 15px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero { padding: 7rem 5% 3rem; }
    .hero-stats { gap: 1.75rem; margin-top: 3rem; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.7rem; }
    .why-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .cursor-dot, .cursor-ring { display: none; }
    .about-visual .experience-badge { bottom: 10px; right: 10px; padding: 1rem 1.25rem; }
    .about-visual .experience-badge .num { font-size: 1.6rem; }
    .partner-item { width: 170px; padding: 1rem; }
    .partner-item img { width: 60px; height: 60px; }
    section { padding: 4rem 5%; }
    .section-header { margin-bottom: 2.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: 1fr; }
    .testimonial-card-content { padding: 1.5rem 1.25rem 2rem; }
    .contact-form { padding: 1.5rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; }
    .hero-badge { font-size: 0.7rem; padding: 0.4rem 1rem; }
    .btn-primary, .btn-secondary { padding: 0.875rem 1.75rem; font-size: 0.78rem; }
    .section-title { font-size: 1.8rem; }
    .about-content h2 { font-size: 1.9rem; }
    .contact-info h3 { font-size: 1.5rem; }
    .testimonial-card p { font-size: 1rem; }
}
/* === VIDEOS — HORIZONTAL GRID === */
.videos { background: #0F1629; }
.videos-container { max-width: 1200px; margin: 0 auto; }

.video-featured {
    background: #0D1321;
    border: 1px solid rgba(212,175,55,0.08);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
}
.video-featured .video-wrapper {
    width: 100%;
    aspect-ratio: 21 / 9;
    background: #0A0F1A;
}
.video-featured .video-wrapper video,
.video-featured .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: cover;
}
.video-featured .video-info {
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}
.video-featured .video-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #F8F9FC;
    margin-bottom: 0.25rem;
}
.video-featured .video-info p {
    color: #8B95A8;
    font-size: 0.95rem;
}
.video-featured .video-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.35rem 1rem;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 50px;
    white-space: nowrap;
}

/* HORIZONTAL GRID */
.videos-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
}
.video-card {
    background: #0D1321;
    border: 1px solid rgba(212,175,55,0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
}
.video-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212,175,55,0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(212,175,55,0.15);
}
.video-card .video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0A0F1A;
    position: relative;
    overflow: hidden;
}
.video-card .video-wrapper video,
.video-card .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: cover;
}
.video-card .video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,19,33,0.9), transparent 50%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.video-card:hover .video-wrapper::after {
    opacity: 0.3;
}
.video-card .play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(212,175,55,0.15);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(212,175,55,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}
.video-card:hover .play-overlay {
    opacity: 1;
}
.video-card .play-overlay svg {
    width: 20px; height: 20px;
    fill: #D4AF37;
    margin-left: 3px;
}
.video-card .video-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.video-card .video-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F8F9FC;
    margin-bottom: 0.5rem;
}
.video-card .video-info p {
    font-size: 0.875rem;
    color: #5A6270;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-card .video-meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212,175,55,0.08);
}
.video-card .video-meta span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.25rem 0.6rem;
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 4px;
}

/* NO SOURCE FALLBACK */
.video-wrapper .no-source {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #151D35;
    color: #5A6270;
    gap: 0.5rem;
}
.video-wrapper .no-source::before {
    content: '▶';
    font-size: 2rem;
    color: rgba(212,175,55,0.15);
}
.video-wrapper .no-source::after {
    content: 'No Video Source';
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
/* ===== RADAR TRACKING SECTION ===== */
.radar-section {
    background: linear-gradient(180deg, #0B0F1A 0%, #0D1321 50%, #0B0F1A 100%);
    padding: 0 5% 6rem;
    position: relative;
    overflow: hidden;
}

.radar-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(212,175,55,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.radar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: center;
}

/* Radar Display */
.radar-display {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-frame {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #0A1F15 0%, #050D08 60%, #020503 100%);
    box-shadow:
        0 0 0 1px rgba(212,175,55,0.1),
        0 0 0 3px rgba(212,175,55,0.03),
        0 0 80px rgba(0,0,0,0.6),
        inset 0 0 60px rgba(0,0,0,0.8);
}

.radar-frame::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.06);
    pointer-events: none;
}

.radar-frame::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.04);
    pointer-events: none;
}

#radarCanvas {
    display: block;
    border-radius: 50%;
}

.radar-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(212,175,55,0.6), 0 0 30px rgba(212,175,55,0.2);
    z-index: 10;
}

.scan-line {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.08), transparent);
    animation: scanDown 6s linear infinite;
    pointer-events: none;
    z-index: 5;
}

@keyframes scanDown {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Status Panel */
.radar-panel {
    background: linear-gradient(180deg, #111827 0%, #0D1321 100%);
    border: 1px solid rgba(212,175,55,0.08);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.radar-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    opacity: 0.4;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.panel-header .status-dot {
    width: 8px; height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(212,175,55,0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.panel-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F8F9FC;
    letter-spacing: -0.3px;
}

.panel-header .live-badge {
    margin-left: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 10px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 4px;
}

.stat-block {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212,175,55,0.06);
}

.stat-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
}

.stat-label {
    color: #5A6270;
    font-size: 0.85rem;
}

.stat-value {
    color: #E8ECF4;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.stat-value.alert {
    color: #EF4444;
    animation: alertPulse 1s infinite;
}

@keyframes alertPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Target List */
.target-list {
    max-height: 160px;
    overflow-y: auto;
    margin-top: 12px;
}

.target-list::-webkit-scrollbar { width: 4px; }
.target-list::-webkit-scrollbar-track { background: transparent; }
.target-list::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.2); border-radius: 2px; }

.target-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 6px;
    background: rgba(212,175,55,0.03);
    border: 1px solid rgba(212,175,55,0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.target-row:hover {
    background: rgba(212,175,55,0.06);
    border-color: rgba(212,175,55,0.12);
}

.target-row.detected {
    border-color: rgba(212,175,55,0.2);
    background: rgba(212,175,55,0.05);
}

.target-id {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #D4AF37;
    font-weight: 500;
}

.target-meta {
    font-size: 0.75rem;
    color: #5A6270;
    margin-top: 2px;
}

.target-lock {
    width: 18px; height: 18px;
    border: 2px solid #5A6270;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s;
}

.target-row.detected .target-lock {
    border-color: #D4AF37;
    box-shadow: 0 0 8px rgba(212,175,55,0.3);
    animation: lockSpin 3s linear infinite;
}

@keyframes lockSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Controls */
.panel-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.panel-btn {
    padding: 10px 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.panel-btn.primary {
    background: linear-gradient(180deg, #D4AF37 0%, #B8941F 100%);
    color: #0B0F1A;
    box-shadow: 0 4px 15px rgba(212,175,55,0.2);
}

.panel-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.3);
}

.panel-btn.secondary {
    background: transparent;
    border: 1px solid rgba(212,175,55,0.2);
    color: #D4AF37;
}

.panel-btn.secondary:hover {
    background: rgba(212,175,55,0.08);
}

/* Responsive */
@media (max-width: 1024px) {
    .radar-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .radar-frame {
        width: 380px;
        height: 380px;
    }
    #radarCanvas {
        width: 380px !important;
        height: 380px !important;
    }
}

@media (max-width: 480px) {
    .radar-frame {
        width: 300px;
        height: 300px;
    }
    #radarCanvas {
        width: 300px !important;
        height: 300px !important;
    }
}
/* RESPONSIVE */
@media (max-width: 1024px) {
    .videos-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .video-featured .video-wrapper { aspect-ratio: 16 / 9; }
}
@media (max-width: 768px) {
    .videos-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .video-featured .video-info { flex-direction: column; align-items: flex-start; }
}