:root {
    --sbh-bg-image: url('/images/itegamax-payments-platform.jpg?q=80&w=1200');
    --sbh-min-height: 500px;
    --sbh-text-color: #374151;
    --sbh-bg-color: #f9fafb;
    --sbh-headline-color: #111827;
    --sbh-cta-bg: #1f2937;
    --sbh-cta-hover-bg: #374151;
    --sbh-cta-text-color: #ffffff;
}
.page-bgc {
    background-color: var(--sbh-cta-bg);
}
.split-bio-hero {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--sbh-bg-color);
}

    .split-bio-hero * {
        box-sizing: border-box;
    }

.split-bio-hero-image {
    min-height: 300px;
    
    background-size: cover;
    background-position: center 25%;
}

.split-bio-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.split-bio-hero-greeting {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--sbh-headline-color);
    margin: 0;
}

.split-bio-hero-title {
    color: var(--sbh-headline-color);
    margin: 0.5rem 0 1.5rem 0;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

.split-bio-hero-bio {
    color: var(--sbh-text-color);
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
    max-width: 500px;
}

.split-bio-hero-cta {
    display: inline-block;
    align-self: flex-start;
    background-color: var(--sbh-cta-bg);
    color: var(--sbh-cta-text-color);
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .split-bio-hero-cta:hover {
        background-color: var(--sbh-cta-hover-bg);
    }

@media(min-width: 768px) {
    .split-bio-hero {
        flex-direction: row;
    }

    .split-bio-hero-image,
    .split-bio-hero-content {
        flex: 1;
        min-height: var(--sbh-min-height);
    }

    .split-bio-hero-content {
        padding: 3rem 4rem;
    }
}
/* FOOTER WRAPPER */
.pf-footer {
    padding: 2.5rem 0 2rem;
    background: var(--sbh-cta-bg); /* #111;  mörk premium bakgrund */
    color: #ffffff; /* vit text */
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: Arial, Helvetica, sans-serif;
}

/* LOGO */
.pf-footer-logo img {
    width: 48px;
    height: auto;
    opacity: 0.9;
    margin-bottom: 1rem;
    transition: opacity 0.2s ease;
}

    .pf-footer-logo img:hover {
        opacity: 1;
    }

/* TEXT BLOCKS */
.pf-footer .container {
    margin-bottom: 0.4rem;
}

/* LINKS */
.pf-footer a {
    color: #ffb86c; /* varm orange/guld ton */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, opacity 0.2s ease;
}

    .pf-footer a:hover {
        color: #ffa64d; /* ljusare orange vid hover */
        opacity: 0.85;
    }

/* POWERED BY TEXT */
.pf-powerby {
    font-size: 0.85rem;
    opacity: 0.9;
}
