/* Extracted from employer-branding-kmu.php. */

/* ===== EMPLOYER BRANDING KMU (ebk-) ===== */
.ebk-hero {
    background: #1e3a5f;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.ebk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 55% at 75% 45%, rgba(13,148,136,0.15) 0%, transparent 65%);
    pointer-events: none;
}
.ebk-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}
.ebk-breadcrumb { margin-bottom: 1.25rem; }
.ebk-breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
}
.ebk-breadcrumb-inner a { color: #64748b; }
.ebk-breadcrumb-inner a:hover { color: #5eead4; }
.ebk-eyebrow {
    display: inline-block;
    background: rgba(13,148,136,0.2);
    border: 1px solid rgba(13,148,136,0.4);
    color: #5eead4;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}
.ebk-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.ebk-hero h1 span {
    background: linear-gradient(135deg, #5eead4, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ebk-hero-sub {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.ebk-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.ebk-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.ebk-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
}
.ebk-trust-item strong { color: #e2e8f0; }

/* Hero visual – abstract employer brand */
.ebk-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 3 main cards */
.ebk-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.ebk-pillar-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ebk-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.ebk-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--bg-teal);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.ebk-pillar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}
.ebk-pillar-card p {
    font-size: 0.9rem;
    color: var(--body);
    line-height: 1.7;
}

/* 5 measures list */
.ebk-measures {
    max-width: 860px;
    margin: 0 auto;
}
.ebk-measure {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 1rem;
    transition: box-shadow 0.2s;
}
.ebk-measure:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
.ebk-measure-num {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(13,148,136,0.3);
}
.ebk-measure-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.ebk-measure-body p {
    font-size: 0.9rem;
    color: var(--body);
    line-height: 1.7;
}
.ebk-measure-tag {
    display: inline-block;
    background: #f0fdfa;
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

/* What HRklar does */
.ebk-hrklar-section {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    border-radius: 20px;
    padding: 3rem;
    color: white;
}
.ebk-hrklar-section h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}
.ebk-hrklar-section > p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 640px;
}
.ebk-hrklar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.ebk-hrklar-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}
.ebk-hrklar-dot {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(13,148,136,0.25);
    color: #5eead4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ebk-hrklar-item strong {
    display: block;
    color: #e2e8f0;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}
.ebk-hrklar-item p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* CTA Band */
.ebk-cta-band {
    background: linear-gradient(135deg, #0d9488, #0f766e);
    padding: 70px 0;
    text-align: center;
}
.ebk-cta-band h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}
.ebk-cta-band p {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.ebk-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
    .ebk-hero-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .ebk-pillars { grid-template-columns: 1fr; }
    .ebk-hrklar-grid { grid-template-columns: 1fr; }
    .ebk-hero-visual { display: none; }
}
@media (max-width: 640px) {
    .ebk-measure { flex-direction: column; gap: 1rem; }
}
