/* ============================================
   Starsoft - Software Development Company
   Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Starsoft huisstijl palette */
    --ss-red: #F25022;
    --ss-green: #7FBA00;
    --ss-yellow: #FFB900;
    --ss-blue: #00A4EF;
    --ss-dark: #7F7F7F;
    --ss-silver: #C4C4C4;

    --ss-primary: #2b2b2b;
    --ss-primary-light: #3d3d3d;
    --ss-accent: #0078D4;
    --ss-accent-hover: #005a9e;
    --ss-accent-light: #2b88d8;
    --ss-text: #333333;
    --ss-text-light: #7F7F7F;
    --ss-bg: #ffffff;
    --ss-bg-alt: #f7f7f7;
    --ss-bg-dark: #2b2b2b;
    --ss-border: #e0e0e0;
    --ss-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --ss-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --ss-radius: 12px;
    --ss-transition: 0.3s ease;
}

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

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

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

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

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    color: var(--ss-primary);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

/* ---------- Layout ---------- */
.ss-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ss-section {
    padding: 5rem 0;
}

.ss-section-alt {
    background: var(--ss-bg-alt);
}

.ss-section-title {
    text-align: center;
    margin-bottom: 1rem;
}

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

.ss-label {
    display: inline-block;
    color: var(--ss-accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

/* ---------- Navbar ---------- */
.ss-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ss-border);
    transition: box-shadow var(--ss-transition);
}

.ss-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.ss-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ss-primary);
    text-decoration: none;
    transform: translateX(-50%);
}

.ss-logo-star {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.ss-logo-star img {
    width: 100%;
    height: 100%;
}

.ss-logo-name {
    font-family: 'Viga', sans-serif;
    font-size: 2.6rem;
    text-transform: uppercase;
    color: var(--ss-text);
    letter-spacing: 0.04em;
    line-height: 1;
}

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

.ss-nav-links a {
    color: var(--ss-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--ss-transition);
    position: relative;
}

.ss-nav-links a:hover {
    color: var(--ss-accent);
}

.ss-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ss-accent);
    transition: width var(--ss-transition);
}

.ss-nav-links a:hover::after {
    width: 100%;
}

.ss-nav-cta {
    padding: 0.5rem 1.2rem !important;
    background: var(--ss-accent) !important;
    color: white !important;
    border-radius: 4px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: background var(--ss-transition) !important;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.ss-nav-cta::after {
    display: none !important;
}

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

/* Dropdown menu */
.ss-nav-dropdown {
    position: relative;
}

.ss-nav-dropdown > a::after {
    display: none !important;
}

.ss-nav-dropdown > a {
    cursor: pointer;
}

.ss-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 180px;
    border-radius: 6px;
    box-shadow: var(--ss-shadow-lg);
    border: 1px solid var(--ss-border);
    padding: 0.5rem 0;
    margin-top: 12px;
    list-style: none;
    z-index: 100;
}

.ss-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.ss-nav-dropdown:hover .ss-dropdown-menu,
.ss-dropdown-menu.open {
    display: block;
}

.ss-dropdown-menu li {
    padding: 0;
}

.ss-dropdown-menu a {
    display: block;
    padding: 0.55rem 1.2rem;
    color: var(--ss-text) !important;
    font-size: 0.9rem !important;
    font-weight: 500;
    transition: background var(--ss-transition), color var(--ss-transition);
    white-space: nowrap;
}

.ss-dropdown-menu a::after {
    display: none !important;
}

.ss-dropdown-menu a:hover {
    background: var(--ss-bg-alt);
    color: var(--ss-accent) !important;
}

/* Mobile menu toggle */
.ss-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.ss-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ss-primary);
    margin: 5px 0;
    transition: var(--ss-transition);
    border-radius: 2px;
}

/* ---------- Hero Carousel ---------- */
.ss-hero {
    position: relative;
    overflow: hidden;
    padding-top: 72px;
    background: #f2f2f2;
}

.ss-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 480px;
    max-width: 1600px;
    margin: 0 auto;
}

.ss-hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.ss-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-hero-slide.active {
    opacity: 1;
}

.ss-hero-slide img,
.ss-hero-slide svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ss-hero-overlay {
    display: none;
}

.ss-hero-content {
    padding: 3rem 2rem 3rem 3rem;
    max-width: 600px;
}

.ss-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 164, 239, 0.08);
    border: 1px solid rgba(0, 164, 239, 0.15);
    color: var(--ss-accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.ss-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--ss-accent-light);
    border-radius: 50%;
    animation: ss-pulse 2s infinite;
}

@keyframes ss-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.ss-hero h1 {
    color: var(--ss-primary);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    font-weight: 700;
}

.ss-hero h1 .ss-highlight-text {
    color: var(--ss-accent);
}

.ss-hero-description {
    color: var(--ss-text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

/* Carousel controls */
.ss-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
    background: white;
}

.ss-carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--ss-border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--ss-text);
    transition: all var(--ss-transition);
    padding: 0;
}

.ss-carousel-btn:hover {
    border-color: var(--ss-text);
    background: var(--ss-bg-alt);
}

.ss-carousel-indicators {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ss-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ss-silver);
    border: none;
    cursor: pointer;
    transition: all var(--ss-transition);
    padding: 0;
}

.ss-carousel-dot.active {
    background: var(--ss-primary);
}

/* ---------- Buttons ---------- */
.ss-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--ss-transition);
    border: none;
    font-family: inherit;
}

.ss-btn-primary {
    background: var(--ss-accent);
    color: white;
}

.ss-btn-primary:hover {
    background: var(--ss-accent-hover);
    color: white;
}

.ss-btn-outline {
    background: transparent;
    color: var(--ss-text);
    border: 1px solid var(--ss-text);
}

.ss-btn-outline:hover {
    background: var(--ss-primary);
    border-color: var(--ss-primary);
    color: white;
}

/* ---------- Services ---------- */
.ss-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.ss-service-card {
    background: white;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 2rem;
    transition: all var(--ss-transition);
    position: relative;
    overflow: hidden;
}

.ss-service-card::before {
    display: none;
}

.ss-service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ss-service-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 120, 212, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.ss-service-card h3 {
    margin-bottom: 0.75rem;
}

.ss-service-card p {
    color: var(--ss-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- About / Stats ---------- */
.ss-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ss-about-image {
    background: var(--ss-accent);
    border-radius: var(--ss-radius);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ss-about-image svg {
    width: 80%;
    height: 80%;
    opacity: 0.9;
}

.ss-about-text h2 {
    margin-bottom: 1rem;
}

.ss-about-text p {
    color: var(--ss-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ss-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.ss-stat {
    text-align: center;
    padding: 1rem;
    background: var(--ss-bg-alt);
    border-radius: var(--ss-radius);
}

.ss-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ss-accent);
    line-height: 1.2;
}

.ss-stat-label {
    font-size: 0.85rem;
    color: var(--ss-text-light);
    margin-top: 0.25rem;
}

/* ---------- Technologies ---------- */
.ss-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.ss-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: white;
    border: 1px solid var(--ss-border);
    border-radius: var(--ss-radius);
    transition: all var(--ss-transition);
}

.ss-tech-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--ss-shadow-lg);
    border-color: var(--ss-accent);
}

.ss-tech-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ss-bg-alt);
    border-radius: 12px;
}

.ss-tech-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ss-primary);
}

/* ---------- CTA Banner ---------- */
.ss-cta-banner {
    background: var(--ss-bg-dark);
    position: relative;
    overflow: hidden;
}

.ss-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 120, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ss-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ss-cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.ss-cta-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2rem;
}

/* ---------- Contact ---------- */
.ss-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.ss-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ss-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ss-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0, 120, 212, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ss-contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.ss-contact-item p {
    color: var(--ss-text-light);
    font-size: 0.9rem;
}

.ss-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ss-input {
    padding: 0.85rem 1.15rem;
    border: 1.5px solid var(--ss-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--ss-transition), box-shadow var(--ss-transition);
    background: white;
    color: var(--ss-text);
}

.ss-input:focus {
    outline: none;
    border-color: var(--ss-accent);
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.12);
}

.ss-input::placeholder {
    color: var(--ss-text-light);
}

textarea.ss-input {
    min-height: 130px;
    resize: vertical;
}

/* ---------- Footer ---------- */
.ss-footer {
    background: var(--ss-bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 0;
}

.ss-footer .ss-logo-name {
    color: white;
}

.ss-footer .ss-logo {
    transform: none;
}

.ss-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ss-footer-brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.ss-footer h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.ss-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

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

.ss-footer-links a:hover {
    color: white;
}

.ss-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

.ss-social-links {
    display: flex;
    gap: 1rem;
}

.ss-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--ss-transition);
    font-size: 0.9rem;
}

.ss-social-links a:hover {
    background: var(--ss-accent);
    color: white;
}

/* ---------- Product Pages ---------- */
.ss-product-hero {
    padding: 8rem 0 4rem;
    background: #f2f2f2;
}

.ss-product-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ss-product-hero .ss-label {
    margin-bottom: 0.75rem;
}

.ss-product-hero h1 {
    font-size: 2.6rem;
    line-height: 1.15;
    color: var(--ss-primary);
    margin-bottom: 1rem;
}

.ss-product-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ss-text-light);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.ss-product-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-product-visual svg {
    width: 100%;
    max-width: 420px;
    height: auto;
}

.ss-product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ss-feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--ss-radius);
    transition: box-shadow var(--ss-transition);
}

.ss-feature-card:hover {
    box-shadow: var(--ss-shadow-lg);
}

.ss-feature-card .ss-feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ss-feature-card h3 {
    font-size: 1.1rem;
    color: var(--ss-primary);
    margin-bottom: 0.5rem;
}

.ss-feature-card p {
    font-size: 0.9rem;
    color: var(--ss-text-light);
    line-height: 1.6;
}

.ss-product-cta {
    text-align: center;
    padding: 4rem 0;
    background: var(--ss-accent);
    color: white;
}

.ss-product-cta h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.ss-product-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.ss-btn-white {
    background: white;
    color: var(--ss-accent);
    padding: 0.7rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background var(--ss-transition), transform var(--ss-transition);
}

.ss-btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.ss-product-free {
    display: inline-block;
    background: var(--ss-green);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.ss-download-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.ss-download-form .ss-input-light {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    min-width: 200px;
    transition: border-color var(--ss-transition), background var(--ss-transition);
}

.ss-download-form .ss-input-light::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.ss-download-form .ss-input-light:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.ss-download-form .ss-btn-white {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .ss-product-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ss-product-hero h1 {
        font-size: 2rem;
    }

    .ss-product-hero p {
        max-width: 100%;
    }

    .ss-product-features {
        grid-template-columns: 1fr;
    }
}

/* ---------- Animations ---------- */
.ss-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ss-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .ss-about-grid,
    .ss-contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ss-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .ss-logo {
        transform: none;
    }

    .ss-logo-name {
        font-size: 1.4rem;
    }

    .ss-menu-toggle {
        display: block;
    }

    .ss-nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--ss-border);
        box-shadow: var(--ss-shadow-lg);
    }

    .ss-nav-links.open {
        display: flex;
    }

    .ss-nav-dropdown {
        position: static;
    }

    .ss-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 0;
        padding: 0 0 0 1rem;
        background: transparent;
    }

    .ss-dropdown-menu::before {
        display: none;
    }

    .ss-nav-dropdown:hover .ss-dropdown-menu {
        display: none;
    }

    .ss-dropdown-menu.open {
        display: block;
    }

    .ss-dropdown-menu a {
        padding: 0.4rem 0 !important;
    }

    .ss-dropdown-menu a:hover {
        background: transparent;
    }

    .ss-hero-inner {
        grid-template-columns: 1fr;
    }

    .ss-hero-content {
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .ss-hero-carousel {
        min-height: 260px;
    }

    .ss-hero-actions {
        justify-content: center;
    }

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

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

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

    .ss-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ss-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ss-section {
        padding: 3.5rem 0;
    }

    .ss-stats {
        grid-template-columns: 1fr;
    }

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

/* Login / Authentication */
.ss-user-name {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 0.5rem;
    white-space: nowrap;
}

.ss-nav-logout {
    font-family: inherit;
}

/* Dashboard Cards */
.ss-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.ss-dashboard-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow var(--ss-transition);
}

.ss-dashboard-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
}

.ss-dashboard-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1.5rem;
    color: white;
    height: 64px;
    box-sizing: border-box;
}

.ss-dashboard-card-header h2 {
    margin: 0;
    font-size: 1.3rem;
    font-family: 'Viga', sans-serif;
    letter-spacing: 0.03em;
    color: white;
}

.ss-dashboard-card-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.ss-dashboard-card-logo-large {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.ss-card-text-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.ss-card-header-centered {
    justify-content: flex-start;
}

.ss-card-title-dark {
    color: #222 !important;
}

.ss-card-logo-name {
    font-family: 'Viga', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: #222;
    letter-spacing: 0.04em;
    line-height: 1;
}

.ss-card-green .ss-logo-star {
    width: 28px;
    height: 28px;
}

.ss-card-green .ss-logo-star img {
    width: 100%;
    height: 100%;
}

.ss-card-blue {
    background: var(--ss-blue);
}

.ss-card-green {
    background: var(--ss-green);
}

.ss-card-orange {
    background: #FFB900;
}

.ss-card-red {
    background: var(--ss-red);
}

.ss-card-silver {
    background: #337AB7;
}

.ss-card-text-meerlanden {
    height: 16px;
    width: auto;
    object-fit: contain;
    flex-shrink: 1;
    min-width: 0;
    color: white;
}

.ss-dashboard-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.ss-dashboard-card-body h4 {
    margin: 1.25rem 0 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ss-text-light);
    border-bottom: 1px solid #eee;
    padding-bottom: 0.35rem;
}

.ss-dashboard-card-body h4:first-child {
    margin-top: 0;
}

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

.ss-dashboard-links li {
    margin: 0;
}

.ss-dashboard-links a {
    display: block;
    padding: 0.4rem 0;
    color: var(--ss-accent);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--ss-transition);
}

.ss-dashboard-links a:hover {
    color: var(--ss-accent-hover);
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .ss-dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .ss-dashboard-grid {
        grid-template-columns: 1fr;
    }
}
