/* ===========================
   JN Cloud Solutions - Stylesheet
   =========================== */

:root {
    --primary: #3080ff;
    --primary-dark: #1a5fd4;
    --primary-light: rgba(48, 128, 255, 0.12);
    --secondary: #00d4ff;
    --accent: #00b4d8;
    --cyan: #00d4ff;
    --dark: #0a0e1a;
    --dark-2: #111827;
    --dark-3: #1f2937;
    --gray: rgba(232,232,240,0.55);
    --gray-light: #0e0e17;
    --gray-border: rgba(255,255,255,0.07);
    --white: #ffffff;
    --text: #e8e8f2;
    --text-muted: rgba(232,232,242,0.52);
    --success: #00df9a;
    --bg:      #08080d;
    --bg-2:    #0d0d16;
    --bg-3:    #111119;
    --bg-card: rgba(255,255,255,0.04);
    --border:  rgba(255,255,255,0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.45);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.6);
    --glow-blue:  0 0 40px rgba(48,128,255,0.18);
    --glow-cyan:  0 0 40px rgba(0,212,255,0.15);
    --glow-green: 0 0 40px rgba(0,223,154,0.15);
    --transition: 0.25s ease;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Outfit', 'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden; /* moved from body — prevents iOS Safari fixed-position bug */
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

body.nav-open { overflow: hidden; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; cursor: pointer; font-family: inherit; }

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

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(48, 128, 255, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(48, 128, 255, 0.55);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}


/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(8, 8, 13, 0.97);
    padding: 12px 0;
    box-shadow: 0 2px 32px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    box-shadow: 0 0 18px rgba(48, 128, 255, 0.3);
}

.nav-cta:hover { background: var(--primary-dark) !important; box-shadow: 0 0 26px rgba(48, 128, 255, 0.45) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(150deg, var(--bg) 0%, #070d1e 55%, #060b18 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 68% 35%, rgba(48, 128, 255, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 12% 72%, rgba(0, 212, 255, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 85% 88%, rgba(0, 223, 154, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(48, 128, 255, 0.1);
    border: 1px solid rgba(48, 128, 255, 0.3);
    color: var(--cyan);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 260px;
}

.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.hero-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(-4px);
}

.hero-card-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(48, 128, 255, 0.15);
    border-radius: 10px;
}

.hero-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-card-title {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-card-status {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 100px;
    width: fit-content;
}

.hero-card-status.active {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-header h2,
.about-content h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===========================
   Services Section
   =========================== */
.services {
    padding: 120px 0;
    background: var(--bg-2);
}

/* ===========================
   Audience Toggle
   =========================== */
.audience-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 760px;
    margin: 0 auto 52px;
}

.audience-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    cursor: pointer;
    text-align: left;
    transition: all var(--transition);
    font-family: var(--font);
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.audience-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition);
}

.audience-btn:hover {
    border-color: rgba(48, 128, 255, 0.4);
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
    background: rgba(255,255,255,0.05);
}

.audience-btn.active {
    border-color: var(--primary);
    background: rgba(48, 128, 255, 0.08);
    box-shadow: var(--glow-blue);
}

.audience-btn[data-target="particulier"].active {
    border-color: var(--success);
    background: rgba(0, 223, 154, 0.08);
    box-shadow: var(--glow-green);
}

.audience-btn-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(48, 128, 255, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.audience-btn-icon.particulier {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.audience-btn.active .audience-btn-icon {
    background: var(--primary);
    color: var(--white);
}

.audience-btn[data-target="particulier"].active .audience-btn-icon {
    background: var(--success);
    color: var(--white);
}

.audience-btn-text {
    flex: 1;
}

.audience-btn-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.audience-btn-text span {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 400;
}

.audience-btn-arrow {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: all var(--transition);
    opacity: 0;
}

.audience-btn.active .audience-btn-arrow,
.audience-btn:hover .audience-btn-arrow {
    opacity: 1;
    color: var(--primary);
}

.audience-btn[data-target="particulier"].active .audience-btn-arrow {
    color: var(--success);
}

/* ===========================
   Services Panels
   =========================== */
.services-panel {
    display: none;
    animation: fadeInPanel 0.35s ease;
}

.services-panel.active {
    display: block;
}

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

.panel-intro {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    padding: 10px 16px;
    border-radius: var(--radius);
    width: fit-content;
}

.zakelijk-intro {
    background: rgba(48, 128, 255, 0.08);
    color: var(--cyan);
    border: 1px solid rgba(48, 128, 255, 0.2);
}

.particulier-intro {
    background: rgba(0, 223, 154, 0.07);
    color: var(--success);
    border: 1px solid rgba(0, 223, 154, 0.2);
}

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

.services-grid-particulier {
    grid-template-columns: repeat(3, 1fr);
}


.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: rgba(48, 128, 255, 0.4);
    box-shadow: var(--glow-blue), var(--shadow-lg);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.05);
}

.service-card.featured {
    border-color: rgba(48, 128, 255, 0.35);
    background: linear-gradient(135deg, rgba(48, 128, 255, 0.07) 0%, var(--bg-card) 100%);
    box-shadow: var(--glow-blue);
}


.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg { width: 26px; height: 26px; }

.service-icon.azure { background: rgba(48, 128, 255, 0.12); color: var(--primary); }
.service-icon.m365 { background: rgba(80, 230, 255, 0.1); color: var(--accent); }
.service-icon.security { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.service-icon.monitoring { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.service-icon.migration { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.service-icon.automation { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 120px 0;
    background: var(--bg-3);
}

.about-panel {
    display: none;
    animation: fadeInPanel 0.35s ease;
}

.about-panel.active {
    display: block;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.about-card-main {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    width: 100%;
    box-shadow: var(--shadow-lg);
}


.about-logo-wrap {
    margin: 0 auto 16px;
    display: flex;
    justify-content: center;
}

.about-logo-img {
    height: 72px;
    width: auto;
    display: block;
}

.about-name {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-role {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.about-location {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.about-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tech-badge {
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.azure-badge { background: rgba(0, 120, 212, 0.12); color: var(--primary); border: 1px solid rgba(0, 120, 212, 0.25); }
.m365-badge { background: rgba(80, 230, 255, 0.12); color: var(--accent); border: 1px solid rgba(80, 230, 255, 0.25); }
.entra-badge { background: rgba(16, 185, 129, 0.12); color: var(--success); border: 1px solid rgba(16, 185, 129, 0.25); }
.ps-badge { background: rgba(59, 130, 246, 0.12); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.25); }
.bicep-badge { background: rgba(245, 158, 11, 0.12); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.25); }
.devops-badge { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; border: 1px solid rgba(139, 92, 246, 0.25); }
.tf-badge { background: rgba(99, 72, 214, 0.12); color: #6344d6; border: 1px solid rgba(99, 72, 214, 0.25); }
.intune-badge { background: rgba(0, 164, 239, 0.12); color: #00a4ef; border: 1px solid rgba(0, 164, 239, 0.25); }

.about-content .section-tag { display: block; margin-bottom: 12px; }

.about-content > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0 36px;
}

.highlight {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.highlight-icon {
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 0 14px rgba(48, 128, 255, 0.35);
}

.highlight-icon.particulier-icon {
    background: var(--success);
    box-shadow: 0 0 14px rgba(0, 223, 154, 0.35);
}

.highlight strong {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.highlight p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0;
}

.btn-particulier {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--success);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 223, 154, 0.3);
}

.btn-particulier:hover {
    background: #00c285;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 223, 154, 0.45);
    color: var(--white);
}

/* ===========================
   Certifications Section
   =========================== */
.certifications {
    padding: 120px 0;
    background: var(--bg-2);
}

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

.certs-grid-wide {
    grid-template-columns: repeat(4, 1fr);
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition);
}

.cert-card:hover {
    border-color: rgba(48, 128, 255, 0.4);
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
    background: rgba(255,255,255,0.05);
}

.cert-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ms-logo {
    background: linear-gradient(135deg, #0078d4, #2b7a9c);
    color: var(--white);
}

.itil-logo {
    background: linear-gradient(135deg, #7b2d8b, #5c1f6e);
    color: var(--white);
    font-size: 0.75rem;
}

.cert-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.cert-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.4;
}

.cert-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(48, 128, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(48, 128, 255, 0.25);
}

.cert-badge.expert {
    background: rgba(0, 223, 154, 0.1);
    color: var(--success);
    border-color: rgba(0, 223, 154, 0.25);
}

.cert-badge.fundamentals {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border-color: rgba(107, 114, 128, 0.2);
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: 120px 0;
    background: var(--bg-3);
}


/* Centered contact (no form) */
.contact-centered {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.contact-centered .section-tag { display: block; margin-bottom: 12px; }

.contact-centered h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.contact-centered > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 48px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
    cursor: pointer;
}

.contact-card-item:hover {
    border-color: rgba(48, 128, 255, 0.4);
    box-shadow: var(--glow-blue);
    transform: translateY(-3px);
    color: inherit;
    background: rgba(255,255,255,0.05);
}

.contact-card-icon {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.contact-card-item strong {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 700;
}

.contact-card-item span {
    font-size: 0.92rem;
    color: var(--white);
    font-weight: 500;
    word-break: break-word;
}


/* ===========================
   Footer
   =========================== */
.footer {
    background: #050508;
    padding: 80px 0 36px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 8px;
    max-width: 280px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: var(--white) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    margin-top: 12px !important;
    margin-bottom: 4px !important;
}

.footer-contact-sig {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}

.footer-contact-sig span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-contact-sig a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer-contact-sig a:hover { color: var(--white); }

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover { color: var(--white); }

.footer-contact p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

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

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid-particulier { grid-template-columns: repeat(3, 1fr); }
    .certs-grid { grid-template-columns: repeat(2, 1fr); }
    .certs-grid-wide { grid-template-columns: repeat(3, 1fr); }
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .hero-content { gap: 40px; }
}

@media (max-width: 768px) {
    .audience-toggle { grid-template-columns: 1fr; max-width: 100%; }
    .audience-btn { padding: 18px 20px; }
    .nav-links {
        position: fixed;
        inset: 0;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
        z-index: 1002;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 14px 32px;
    }

    .hamburger { display: flex; z-index: 1003; }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual { display: none; }

    .hero-stats { gap: 20px; }

    .services-grid { grid-template-columns: 1fr; }
    .services-grid-particulier { grid-template-columns: 1fr; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }

    .certs-grid { grid-template-columns: 1fr; }
    .certs-grid-wide { grid-template-columns: repeat(2, 1fr); }

    .contact-cards { grid-template-columns: 1fr 1fr; }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }

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

    .footer-bottom { flex-direction: column; text-align: center; }

}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }
    .certs-grid-wide { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
}

/* ===========================
   Scroll animations
   =========================== */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ===========================
   404 Page
   =========================== */
.not-found {
    min-height: 100vh;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 24px;
}

.not-found-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(48, 128, 255, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 15% 80%, rgba(0, 212, 255, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 88% 20%, rgba(0, 223, 154, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.not-found-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 560px;
}

.not-found-logo {
    margin: 0 auto 48px;
}

.not-found-logo img {
    height: 48px;
    width: auto;
    margin: 0 auto;
}

.not-found-code {
    font-family: var(--font-display);
    font-size: clamp(7rem, 22vw, 13rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -6px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 60%, var(--success) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    user-select: none;
}

.not-found-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.not-found-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 44px;
}

.not-found-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.not-found-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    border-radius: 2px;
    margin: 0 auto 28px;
}

.grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.03;
}

.grid-lines::before {
    content: '';
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}
