/* CSS Reset & Variables */
:root {
    --bg-dark: #070d19;
    --bg-darker: #040810;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.1);
    
    --primary: #00d2d3;
    --primary-dark: #00a8a8;
    --secondary: #4ade80;
    --accent: #6366f1;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

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

.text-white { color: #fff; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.hover-primary:hover { color: var(--primary); }
.hover-underline:hover { text-decoration: underline; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilities */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.text-sm { font-size: 0.9rem; }
.text-left { text-align: left; }
.bg-darker { background-color: var(--bg-darker); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.align-top { align-items: flex-start !important; }
.align-start { align-items: flex-start !important; }

/* Typography */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 13, 25, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-accent {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary-sm) {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover:not(.btn-primary-sm) {
    color: var(--primary);
}

/* Buttons */
.btn-primary, .btn-primary-sm {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 210, 211, 0.3);
}

.btn-primary-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.btn-primary:hover, .btn-primary-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 210, 211, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.btn-large {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-image: url('assets/hero-bg.png');
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(4, 8, 16, 0.5), var(--bg-dark) 95%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.badge {
    background: rgba(0, 210, 211, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 210, 211, 0.2);
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 6rem 0;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .grid-2-cols {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Quotes */
.quote-box {
    background: var(--bg-card);
    border-left: 4px solid var(--primary);
    padding: 2.5rem;
    border-radius: 0 16px 16px 0;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(0, 210, 211, 0.2);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.quote-text {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.quote-author {
    color: var(--accent);
    font-weight: 600;
}

/* Service Detail Steps */
.service-steps {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.step-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 210, 211, 0.3);
}

.step-number {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.step-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-card .author {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Feature List (Checkmarks) */
.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.feature-list li i {
    font-size: 1.25rem;
}

/* Info Panel (HR) */
.info-panel {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.1), rgba(0, 210, 211, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
}

.info-panel h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.info-panel p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.panel-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

/* Stats / Kieswijs Section */
.stats-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .stats-grid { grid-template-columns: 1fr; }
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--bg-card);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.pillar span {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary);
    flex-shrink: 0;
}

.rounded-image {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
}

.profile-frame {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.profile-icon {
    font-size: 8rem;
    opacity: 0.5;
}

.about p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.linkedin-btn {
    background: #0a66c2;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.linkedin-btn:hover {
    background: #004182;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, rgba(0, 210, 211, 0.03), rgba(99, 102, 241, 0.03));
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.cta-container {
    max-width: 800px;
}

.cta-container h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.cta-container p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

.contact-card-wrapper {
    display: flex;
    justify-content: center;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* LinkedIn Placeholders */
.linkedin-feed-section {
    border-top: 1px solid var(--border-color);
}
.linkedin-post-wrapper {
    height: 100%;
}
.linkedin-placeholder {
    background: var(--bg-card);
    border: 1px solid rgba(10, 102, 194, 0.3); /* LinkedIn Blue touch */
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
}
.linkedin-placeholder:hover {
    box-shadow: 0 10px 30px rgba(10, 102, 194, 0.15);
    background: var(--bg-card-hover);
}
.li-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: var(--bg-darker);
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-links {
    text-align: right;
}

.footer-links p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 2.5rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { text-align: center; }
}
