@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    color: #1e2937;
    line-height: 1.6;
    padding: 40px 20px;
    min-height: 100vh;
}

.container {
    max-width: 920px;
    margin: 0 auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgb(15 23 42 / 0.1), 
                0 8px 10px -6px rgb(15 23 42 / 0.1);
    overflow: hidden;
}

/* Header / Logo */
.logo {
    text-align: center;
    padding: 40px 40px 20px;
    background: #0f172a;
    border-bottom: 1px solid #1e2937;
}

.logo img {
    height: 52px;
    width: auto;
}

/* Hero */
.hero {
    text-align: center;
    padding: 50px 40px 40px;
    background: linear-gradient(145deg, #0f172a, #1e2937);
    color: white;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 620px;
    margin: 0 auto;
}

/* Section titles */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: #0f172a;
    margin: 40px 40px 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #0ea5e9;
    display: inline-block;
}

/* Steps */
.steps {
    padding: 0 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #f8fafc;
    padding: 24px;
    border-radius: 18px;
    border-left: 5px solid #0ea5e9;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 15px -3px rgb(14 165 233 / 0.15);
}

.step-num {
    width: 52px;
    height: 52px;
    background: #0ea5e9;
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 10px 15px -3px rgb(14 165 233 / 0.4);
}

.step-body strong {
    font-size: 1.2rem;
    color: #0f172a;
}

/* Configuratie */
.config {
    margin: 0 40px 50px;
    background: #f1f5f9;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.config-row {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.05rem;
}

.config-row:last-child {
    border-bottom: none;
}

.config-label {
    width: 160px;
    font-weight: 500;
    color: #475569;
}

.config-value {
    font-family: 'Space Grotesk', monospace;
    background: white;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    font-size: 1.05rem;
}

.config-value:hover {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
}

/* Downloads */
.downloads {
    padding: 0 40px 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #0ea5e9;
    transform: translateY(-6px);
    box-shadow: 0 15px 20px -5px rgb(14 165 233 / 0.15);
}

.card strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: #0f172a;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #0ea5e9;
    color: white;
}

.btn-primary:hover {
    background: #0284c8;
    transform: scale(1.05);
}

.btn-secondary {
    background: #64748b;
    color: white;
}

.btn-secondary:hover {
    background: #475569;
}

/* Footer / extra */
/* footer {
    text-align: center;
    padding: 30px;
    margin-top: 3rem;
    color: #64748b;
    font-size: 0.95rem;
} */