/* ============================================
   ESIV - Modern Website Styles
   ============================================ */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent: #06b6d4;
    --gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Navbar
   ============================================ */

#mainNav {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
    backdrop-filter: none;
}

#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    text-decoration: none !important;
    padding: 0;
}

.navbar-logo {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

#mainNav.scrolled .navbar-logo {
    height: 38px;
}

#mainNav .nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--primary);
}

#mainNav .btn-contact {
    background: var(--gradient);
    color: #fff !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    margin-left: 0.5rem;
}

#mainNav .btn-contact:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

#mainNav .nav-login-link {
    opacity: 0.7;
    font-size: 0.85rem;
}

#mainNav .nav-login-link:hover {
    opacity: 1;
}

#mainNav .nav-user-link {
    opacity: 0.7;
    font-size: 0.85rem;
}

#mainNav .nav-user-link:hover {
    opacity: 1;
    color: #ef4444 !important;
}

/* Navbar on hero (white text) */
.hero-section ~ .navbar,
body:has(.hero-section) #mainNav:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

body:has(.hero-section) #mainNav:not(.scrolled) .nav-link:hover,
body:has(.hero-section) #mainNav:not(.scrolled) .nav-link.active {
    color: #fff;
}

body:has(.hero-section) #mainNav:not(.scrolled) .navbar-logo {
    filter: brightness(0) invert(1);
}

body:has(.hero-section) #mainNav:not(.scrolled) .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

body:has(.hero-section) #mainNav:not(.scrolled) .navbar-toggler-icon {
    filter: invert(1);
}

/* Dropdown */
.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: var(--gradient);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: #fff;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ============================================
   Section Utilities
   ============================================ */

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    background: var(--gradient-dark);
    padding: 10rem 0 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: url('/images/esiv_icon.svg') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    filter: brightness(0) invert(1);
    pointer-events: none;
}


.min-vh-80 {
    min-height: 60vh;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero floating cards */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.floating-card {
    text-decoration: none !important;
    cursor: pointer;
}

.floating-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.05);
}

.floating-card i {
    font-size: 1.5rem;
}

.card-1 { top: 2%; left: 5%; animation-delay: 0s; }
.card-2 { top: 2%; right: 5%; animation-delay: 1s; }
.card-3 { top: 38%; left: 0%; animation-delay: 2s; }
.card-4 { top: 38%; right: 0%; animation-delay: 3s; }
.card-5 { bottom: 2%; left: 5%; animation-delay: 4s; }
.card-6 { bottom: 2%; right: 5%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Animate in */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: animateIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes animateIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
    padding: 7rem 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8%;
    transform: translateY(-50%);
    width: 550px;
    height: 550px;
    background: url('/images/esiv_icon.svg') no-repeat center;
    background-size: contain;
    opacity: 0.035;
    pointer-events: none;
}

.service-card {
    display: block;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-decoration: none !important;
    color: var(--text) !important;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.icon-mobile { background: rgba(37, 99, 235, 0.1); color: var(--primary); }
.icon-phone { background: rgba(6, 182, 212, 0.1); color: var(--accent); }
.icon-hosting { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.icon-web { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.icon-managed { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.icon-support { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.service-card:hover .icon-mobile { background: var(--primary); color: #fff; }
.service-card:hover .icon-phone { background: var(--accent); color: #fff; }
.service-card:hover .icon-hosting { background: #8b5cf6; color: #fff; }
.service-card:hover .icon-web { background: #10b981; color: #fff; }
.service-card:hover .icon-managed { background: #f59e0b; color: #fff; }
.service-card:hover .icon-support { background: #ef4444; color: #fff; }

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* ============================================
   Why Section
   ============================================ */

.why-section {
    padding: 7rem 0;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.why-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: url('/images/esiv_icon.svg') no-repeat center;
    background-size: contain;
    opacity: 0.04;
    pointer-events: none;
}

.why-section .section-title {
    margin-bottom: 1.5rem;
}

.usp-list {
    margin-top: 2rem;
}

.usp-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.usp-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.usp-item h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.usp-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: 6rem 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    background: url('/images/esiv_icon.svg') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    filter: brightness(0) invert(1);
    pointer-events: none;
}


.cta-section .container {
    position: relative;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* ============================================
   Page Hero (Subpages)
   ============================================ */

.page-hero {
    padding: 10rem 0 5rem;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8%;
    transform: translateY(-50%);
    width: 550px;
    height: 550px;
    background: url('/images/esiv_icon.svg') no-repeat center;
    background-size: contain;
    opacity: 0.04;
    pointer-events: none;
}


.page-hero-sm {
    padding: 9rem 0 4rem;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 550px;
    line-height: 1.8;
}

.page-hero-icon {
    width: 180px;
    height: 180px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto;
    position: relative;
}

.page-hero-icon.icon-mobile {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    color: var(--primary);
}

.page-hero-icon.icon-phone {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    color: var(--accent);
}

.page-hero-icon.icon-hosting {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    color: #8b5cf6;
}

.page-hero-icon.icon-web {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: #10b981;
}

.page-hero-icon.icon-managed {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    color: #f59e0b;
}

.page-hero-icon.icon-support {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #ef4444;
}

/* ============================================
   Feature Cards
   ============================================ */

.features-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.features-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -8%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: url('/images/esiv_icon.svg') no-repeat center;
    background-size: contain;
    opacity: 0.03;
    pointer-events: none;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   Process Cards (Webontwikkeling)
   ============================================ */

.process-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.process-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   Pricing Cards (Managed Services)
   ============================================ */

.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.pricing-card-featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured:hover {
    border-color: var(--primary);
}

.pricing-card-premium {
    background: var(--bg-dark);
    border-color: transparent;
    color: #fff;
}

.pricing-card-premium:hover {
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.4);
}

.pricing-card-premium h3,
.pricing-card-premium h4 {
    color: #fff;
}

.pricing-card-premium .pricing-features li span {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card-premium .pricing-features li i {
    color: #34d399;
}

.pricing-card-premium .pricing-note {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card-premium .pricing-tier {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-tier {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.pricing-price {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pricing-card-premium .pricing-price {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-card-premium .price-amount {
    background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.price-period {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.92rem;
    align-items: flex-start;
}

.pricing-features li i {
    color: #10b981;
    margin-top: 0.25rem;
    min-width: 16px;
}

.pricing-features li span {
    color: var(--text-light);
}

.pricing-note {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.85rem;
}

.btn-pricing {
    width: 100%;
    padding: 0.85rem;
    font-size: 0.95rem;
    margin-top: auto;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.pricing-card-premium .btn-outline-primary {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.pricing-card-premium .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Alt Section
   ============================================ */

.alt-section {
    padding: 6rem 0;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.alt-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: url('/images/esiv_icon.svg') no-repeat center;
    background-size: contain;
    opacity: 0.04;
    pointer-events: none;
}

/* ============================================
   Hosting Blocks
   ============================================ */

.hosting-block {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem;
}

.hosting-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    margin: 0 auto;
}

.hosting-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hosting-block p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.check-list li {
    padding: 0.4rem 0;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-list li i {
    color: #10b981;
    font-size: 0.85rem;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    padding: 5rem 0 7rem;
    position: relative;
    overflow: hidden;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: url('/images/esiv_icon.svg') no-repeat center;
    background-size: contain;
    opacity: 0.03;
    pointer-events: none;
}

.contact-form-wrap {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.contact-form-wrap h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-form-wrap .form-control {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-wrap .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form-wrap label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.contact-success-msg,
.contact-error-msg {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
}

.contact-success-msg {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.contact-success-msg i {
    font-size: 1.5rem;
    color: #10b981;
}

.contact-error-msg {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

.contact-error-msg i {
    font-size: 1.5rem;
    color: #ef4444;
}

.contact-success-msg p,
.contact-error-msg p {
    margin: 0;
    font-weight: 500;
}

.contact-info-wrap {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 2.5rem;
    height: 100%;
}

.contact-info-wrap h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-info-item h6 {
    font-weight: 700;
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
}

.contact-info-item a,
.contact-info-item p {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-quick-links {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-quick-links h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.quick-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.quick-link i {
    width: 20px;
    text-align: center;
    color: var(--primary);
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 0;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3rem;
    padding: 1.5rem 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ============================================
   Scroll Reveal
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .page-hero-title {
        font-size: 2.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 8rem 0 4rem;
    }

    .page-hero {
        padding: 8rem 0 3rem;
    }

    #mainNav .navbar-collapse {
        background: var(--bg);
        padding: 1rem;
        border-radius: var(--radius);
        margin-top: 0.5rem;
        box-shadow: var(--shadow-lg);
    }

    #mainNav .navbar-collapse .nav-link {
        color: var(--text) !important;
    }

    #mainNav .btn-contact {
        margin-left: 0;
        display: inline-block;
        margin-top: 0.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .page-hero-title {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hosting-block {
        padding: 2rem;
    }
}

/* ============================================
   Flash messages
   ============================================ */

.alert {
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 500;
}

/* ============================================
   Guide Content (Handleidingen)
   ============================================ */

.guide-content {
    max-width: 700px;
}

.guide-step {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.guide-step:last-of-type {
    border-bottom: none;
}

.guide-step-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.guide-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guide-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.guide-step p:last-child {
    margin-bottom: 0;
}

.guide-step code {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    color: var(--primary);
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.guide-callout {
    background: var(--bg-alt);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.5rem;
    margin: 2rem 0;
}

.guide-callout h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.guide-callout p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.guide-nav {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* ============================================
   Error page
   ============================================ */

.site-error {
    padding: 8rem 0;
    text-align: center;
}

/* ============================================
   Breadcrumbs
   ============================================ */

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}
