:root {
    --bg-dark: #121212;
    --card-bg: #1e1e1e;
    --accent-green: #01a982; /* HPE Green */
    --accent-blue: #0055ff;  /* Sophos Blue */
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
.main-header {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.nav-logo {
    height: 40px;
    display: block;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h1 span {
    color: var(--accent-green);
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Grid & Cards */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    text-align: left;

    /* Verbeterde overgang voor een zware 'lift' */
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s ease, 
                border-color 0.3s ease;

    /* Standaard status: al duidelijk zwevend door gelaagde schaduw */
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.4), 
        0 6px 6px rgba(0,0,0,0.5);
}

.card:hover {
    border-color: var(--accent-green);
    
    /* Extreme lift */
    transform: translateY(-10px); 

    /* Extreme schaduw: 
       Laag 1: De diepe verre schaduw (heel zacht en groot)
       Laag 2: De middenschaduw
       Laag 3: De schaduw dichtbij voor definitie 
    */
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.6), 
        0 20px 25px rgba(0,0,0,0.5),
        0 10px 10px rgba(0,0,0,0.4);
}

.card-img {
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.card-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.card h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 5px 12px;
    background: #333;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    align-self: flex-start;
}

.badge.secondary { background: var(--accent-green); color: white; }
.badge.blue { background: var(--accent-blue); color: white; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
}