/**
 * Header
 * Peas Digital Pro
 */

.pd-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229,231,235,.8);
}

.pd-header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    gap: 2rem;
}

.pd-logo img {
    max-height: 60px;
    width: auto;
}

.pd-site-title {
    color: var(--pd-heading);
    font-size: 1.4rem;
    font-weight: 900;
    text-decoration: none;
}

.pd-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.pd-menu {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pd-menu a {
    color: var(--pd-heading);
    font-size: .95rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--pd-transition);
}

.pd-menu a:hover {
    color: var(--pd-primary-dark);
}

.pd-header-actions {
    display: flex;
    gap: .9rem;
    align-items: center;
}

.pd-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--pd-border);
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
}

.pd-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--pd-heading);
}

.pd-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    background: rgba(17,24,39,.45);
}

.pd-mobile-menu.is-open {
    display: block;
}

.pd-mobile-menu__inner {
    width: min(420px, 90%);
    height: 100%;
    margin-left: auto;
    padding: 2rem;
    background: #ffffff;
    box-shadow: var(--pd-shadow-hover);
}

.pd-mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    color: var(--pd-heading);
    font-size: 1.2rem;
}

.pd-mobile-close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--pd-border);
    border-radius: 12px;
    background: var(--pd-background);
    color: var(--pd-heading);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.pd-mobile-menu__list {
    display: grid;
    gap: .8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pd-mobile-menu__list a {
    display: block;
    padding: 1rem;
    border-radius: 14px;
    background: var(--pd-background);
    color: var(--pd-heading);
    font-weight: 800;
    text-decoration: none;
}

.pd-mobile-menu__actions {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}