/* ==========================================================================
   Gintronics Theme — Main Stylesheet
   ========================================================================== */

/* ---------- Design Tokens — YUV Style ---------- */
:root {
    --color-bg: #050510;
    --color-surface: #0a0a1f;
    --color-surface-light: #0f0f2a;
    --color-surface-hover: #161635;
    --color-accent: #06b6d4;
    --color-accent-hover: #22d3ee;
    --color-accent-glow: rgba(6, 182, 212, 0.15);
    --color-accent-secondary: #a855f7;
    --color-accent-tertiary: #ec4899;
    --color-text: #e2e8f0;
    --color-text-muted: #94a3b8;
    --color-text-subtle: #64748b;
    --color-white: #ffffff;
    --color-border: rgba(255, 255, 255, 0.06);

    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --max-width: 1200px;
    --section-padding: clamp(48px, 6vw, 80px);
    --radius: 12px;
    --radius-sm: 6px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Utility ---------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 16px;
    max-width: 700px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 48px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--color-white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c8ff5 0%, #8b5fb5 100%);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

/* ---------- Scroll Animations ---------- */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: transparent;
}

.site-header.is-scrolled {
    background: rgba(5, 5, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-default {
    height: 36px;
    width: auto;
    transition: opacity var(--transition);
}

.site-logo:hover .logo-default {
    opacity: 0.85;
}

.site-title {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-list a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
    transition: color var(--transition);
    padding: 4px 0;
}

.nav-list a:hover {
    color: var(--color-white);
}

.nav-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--color-white) !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--color-accent-hover);
    color: var(--color-bg) !important;
}

/* WordPress menu item states */
.nav-list .current-menu-item > a,
.nav-list .current_page_item > a {
    color: var(--color-white);
}

/* Dropdown / sub-menu */
.nav-list > li {
    position: relative;
}

.nav-list .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    min-width: 200px;
    margin-top: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    z-index: 100;
}

.nav-list > li:hover > .sub-menu {
    display: block;
}

.nav-list .sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 8px;
}

.nav-list .sub-menu li {
    padding: 0;
}

.nav-list .sub-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    transition: all var(--transition);
}

.nav-list .sub-menu a:hover {
    color: var(--color-white);
    background: var(--color-surface-light);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.menu-toggle.is-active .hamburger {
    background: transparent;
}

.menu-toggle.is-active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.is-active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.section-hero {
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 40px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 60%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(236, 72, 153, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, #050510, #0a0a1f, #0f0f2a);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-muted);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.hero-visual {
    position: absolute;
    z-index: 0;
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.hero-visual-left {
    left: 5%;
    top: 20%;
    width: 200px;
    height: 200px;
}

.hero-visual-right {
    right: 5%;
    bottom: 20%;
    width: 180px;
    height: 180px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(15px) rotate(-2deg); }
}

/* ==========================================================================
   KERNCOMPETENTIES
   ========================================================================== */
.section-competenties {
    background: var(--color-surface);
}

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

.competentie-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.competentie-card:hover {
    border-color: rgba(102, 126, 234, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.card-number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-subtle);
    margin-left: 4px;
}

.competentie-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 16px 0 12px;
}

.competentie-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-tags li {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-accent);
    background: var(--color-accent-glow);
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

.card-illustration {
    width: 100%;
    height: 180px;
    margin: -36px -28px 20px -28px;
    width: calc(100% + 56px);
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    background: rgba(0, 212, 255, 0.02);
    border-bottom: 1px solid var(--color-border);
}

.card-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity var(--transition), transform 0.6s ease;
}

.competentie-card:hover .card-illustration img {
    opacity: 1;
    transform: scale(1.03);
}

.card-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    color: var(--color-text-subtle);
    opacity: 0.4;
    transition: opacity var(--transition);
}

.competentie-card:hover .card-icon {
    opacity: 0.7;
    color: var(--color-accent);
}

/* ==========================================================================
   3D PRODUCTIE
   ========================================================================== */
.section-productie {
    background: var(--color-surface);
}

.slider-container {
    position: relative;
    margin-top: 32px;
}

.slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 calc(50% - 12px);
    scroll-snap-align: start;
    min-width: 300px;
}

.slide-figure {
    margin: 0;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.slide-figure img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide-figure:hover img {
    transform: scale(1.03);
}

.slide-figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
}

.slider-controls {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition);
}

.slider-btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--color-white);
    border-color: #667eea;
}

/* ==========================================================================
   WERKWIJZE / TIMELINE
   ========================================================================== */
.section-werkwijze {
    background: var(--color-bg);
}

.werkwijze-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
}

.werkwijze-illustration {
    position: sticky;
    top: 100px;
}

.werkwijze-illustration img {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.timeline {
    position: relative;
    display: grid;
    gap: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--color-border);
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.timeline-step:first-child { padding-top: 0; }
.timeline-step:last-child { padding-bottom: 0; }

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all var(--transition);
}

.timeline-step:hover .step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--color-white);
    border-color: #667eea;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    max-width: 500px;
}

/* ==========================================================================
   IT MANAGEMENT
   ========================================================================== */
.section-it {
    background: var(--color-surface);
}

.it-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.it-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.expertise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    padding: 20px 24px;
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.expertise-list li:hover {
    border-color: rgba(102, 126, 234, 0.25);
    transform: translateX(4px);
}

.expertise-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-accent);
}

.expertise-icon svg {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.section-contact {
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.contact-item span:last-child,
.contact-item a {
    font-size: 0.95rem;
    color: var(--color-text);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 36px;
}

.contact-form-wrap h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 6px;
}

.required {
    color: var(--color-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--color-white);
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-subtle);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--color-surface);
    color: var(--color-text);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
}

.form-feedback {
    margin-top: 16px;
    font-size: 0.9rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: none;
}

.form-feedback.is-success {
    display: block;
    background: rgba(0, 212, 100, 0.1);
    color: #00d464;
    border: 1px solid rgba(0, 212, 100, 0.2);
}

.form-feedback.is-error {
    display: block;
    background: rgba(255, 60, 60, 0.1);
    color: #ff5555;
    border: 1px solid rgba(255, 60, 60, 0.2);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    border-top: 1px solid var(--color-border);
    padding: 60px 0 32px;
    background: var(--color-surface);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-heading {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 16px;
}

.footer-contact p,
.footer-links p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.footer-contact a,
.footer-links a {
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--color-accent);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.footer-menu a {
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.footer-menu a:hover {
    color: var(--color-accent);
}

.footer-vat {
    margin-top: 4px;
    font-family: var(--font-mono);
    font-size: 0.75rem !important;
    color: var(--color-text-subtle) !important;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-subtle);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   PRODUCT DJ
   ========================================================================== */
.section-productdj {
    background: var(--color-surface);
}

.productdj-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.productdj-intro {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 550px;
}

.dj-tracks {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.dj-track {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.dj-track:hover {
    border-color: rgba(102, 126, 234, 0.25);
    transform: translateX(4px);
}

.dj-track-number {
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-glow);
    border-radius: 50%;
}

.dj-track-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
}

.dj-track-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 12px;
}

.dj-illustration {
    margin-bottom: 28px;
    border-radius: var(--radius);
    overflow: hidden;
}

.dj-illustration img {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.dj-expertise-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dj-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition);
}

.dj-mini-card:hover {
    border-color: rgba(102, 126, 234, 0.15);
}

.dj-mini-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.dj-mini-icon svg {
    width: 100%;
    height: 100%;
}

.dj-mini-card strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 2px;
}

.dj-mini-card span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   IT VISUAL
   ========================================================================== */
.it-visual {
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
}

.it-visual img {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.section-legal {
    padding-top: 140px;
    min-height: 100vh;
}

.legal-title {
    max-width: none;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 750px;
    color: var(--color-text);
    line-height: 1.9;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 40px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 24px 0 12px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--color-text-muted);
}

.legal-content ul {
    margin: 12px 0 20px 24px;
    color: var(--color-text-muted);
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--color-accent);
}

.legal-content em {
    color: var(--color-text-subtle);
}

.legal-content strong {
    color: var(--color-text);
    font-weight: 600;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.85rem;
}

.legal-table th {
    text-align: left;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
}

.legal-table td {
    padding: 10px 16px;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
}

.legal-table tr:hover td {
    background: var(--color-surface);
}

.legal-back {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-outline:hover {
    color: var(--color-white);
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

/* ==========================================================================
   PAGES & BLOG
   ========================================================================== */

/* -- Page Hero (shared by pages, posts, archives) -- */
.page-hero {
    padding: 140px 0 48px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.page-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-white);
    max-width: 800px;
}

.page-hero-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-top: 12px;
    max-width: 600px;
}

/* -- Page content -- */
.section-page-content {
    padding: 60px 0 80px;
}

.page-featured-image {
    margin: 0 0 40px;
    border-radius: var(--radius);
    overflow: hidden;
}

.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: cover;
}

/* -- Entry content (shared by pages and posts) -- */
.entry-content {
    max-width: 750px;
    color: var(--color-text);
    line-height: 1.9;
    font-size: 1.02rem;
}

.entry-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 48px 0 16px;
}

.entry-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 32px 0 12px;
}

.entry-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 24px 0 8px;
}

.entry-content p {
    margin-bottom: 1.2em;
    color: var(--color-text);
}

.entry-content a {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-color: rgba(102, 126, 234, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color var(--transition);
}

.entry-content a:hover {
    text-decoration-color: var(--color-accent);
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 1.5em 1.5em;
    color: var(--color-text);
}

.entry-content li {
    margin-bottom: 0.5em;
}

.entry-content blockquote {
    border-left: 3px solid var(--color-accent);
    margin: 1.5em 0;
    padding: 16px 24px;
    background: var(--color-surface);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--color-text-muted);
    font-style: italic;
}

.entry-content pre {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-text);
    margin: 1.5em 0;
}

.entry-content code {
    font-family: var(--font-mono);
    font-size: 0.85em;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--color-accent);
}

.entry-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1.5em 0;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 0.9rem;
}

.entry-content th,
.entry-content td {
    border: 1px solid var(--color-border);
    padding: 10px 14px;
    text-align: left;
}

.entry-content th {
    background: var(--color-surface);
    color: var(--color-white);
    font-weight: 600;
}

.entry-content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 2.5em 0;
}

/* WordPress block alignment */
.entry-content .alignwide {
    max-width: 1000px;
    margin-left: -125px;
    margin-right: -125px;
    width: calc(100% + 250px);
}

.entry-content .alignfull {
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.entry-content .wp-block-image figcaption {
    font-size: 0.8rem;
    color: var(--color-text-subtle);
    text-align: center;
    margin-top: 8px;
}

/* -- Post meta -- */
.post-meta-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.post-category {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: var(--color-accent-glow);
    padding: 4px 12px;
    border-radius: 100px;
}

.post-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.post-excerpt {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-top: 16px;
    max-width: 600px;
    line-height: 1.7;
}

.post-meta-bottom {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--color-text-subtle);
}

/* -- Post tags -- */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.post-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-muted);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 4px 14px;
    border-radius: 100px;
    text-decoration: none;
    transition: all var(--transition);
}

.post-tag:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

/* -- Post navigation -- */
.post-navigation {
    border-top: 1px solid var(--color-border);
    padding: 40px 0;
    background: var(--color-surface);
}

.post-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.post-nav-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-subtle);
    margin-bottom: 8px;
}

.post-nav-prev a,
.post-nav-next a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition);
}

.post-nav-prev a:hover,
.post-nav-next a:hover {
    color: var(--color-accent);
}

.post-nav-next {
    text-align: right;
}

/* -- Blog grid -- */
.section-blog {
    padding: 60px 0 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: rgba(102, 126, 234, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-card-meta time {
    font-size: 0.75rem;
    color: var(--color-text-subtle);
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.blog-card-title a {
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition);
}

.blog-card-title a:hover {
    color: var(--color-accent);
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
    font-size: 0.75rem;
    color: var(--color-text-subtle);
}

.blog-empty {
    text-align: center;
    padding: 80px 0;
}

.blog-empty h2 {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 12px;
}

.blog-empty p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* -- Pagination -- */
.pagination {
    margin-top: 60px;
    text-align: center;
}

.pagination ul {
    list-style: none;
    display: inline-flex;
    gap: 8px;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
}

.pagination li a:hover {
    color: var(--color-white);
    border-color: var(--color-accent);
}

.pagination .pagination-current span,
.pagination li span.current {
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
    font-weight: 600;
}

/* -- Widgets (sidebar) -- */
.widget {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.widget-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    margin-bottom: 8px;
}

.widget ul li a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.widget ul li a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
    .competenties-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .it-grid,
    .contact-grid,
    .werkwijze-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .werkwijze-illustration {
        position: static;
        order: -1;
        max-width: 300px;
    }

    .productdj-visual {
        order: -1;
    }

    .slide {
        flex: 0 0 80%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .post-nav-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .post-nav-next {
        text-align: left;
    }

    .entry-content .alignwide {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-surface);
        border-left: 1px solid var(--color-border);
        padding: 100px 32px 32px;
        transition: right var(--transition);
        z-index: 999;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .nav-list a {
        font-size: 1rem;
    }

    .nav-cta {
        margin-top: 16px;
    }

    .nav-list .sub-menu {
        display: block;
        position: static;
        transform: none;
        background: none;
        border: none;
        box-shadow: none;
        padding: 8px 0 0 16px;
        margin-top: 0;
        min-width: 0;
    }

    .nav-list .sub-menu a {
        padding: 4px 0;
        font-size: 0.9rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .slide {
        flex: 0 0 90%;
        min-width: 260px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }

    .container {
        padding: 0 16px;
    }

    .competentie-card {
        padding: 24px 20px;
    }

    .card-icon {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 110px 0 32px;
    }
}

/* ==========================================================================
   WORDPRESS DEFAULTS
   ========================================================================== */
.wp-caption,
.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
