/* ============================================================
   Polymers Bazaar — Modern 2026 Home, Header & Footer styles
   All classes prefixed with "pbm-" to avoid conflict with
   existing "pb-" theme classes.
   ============================================================ */

:root {
    --pbm-primary: #1e3a8a;
    --pbm-primary-600: #1e40af;
    --pbm-primary-700: #1d4ed8;
    --pbm-primary-50: #eff6ff;
    --pbm-primary-100: #dbeafe;
    --pbm-accent: #16a34a;
    --pbm-accent-600: #15803d;
    --pbm-accent-50: #dcfce7;
    --pbm-accent-100: #bbf7d0;
    --pbm-ink: #0f172a;
    --pbm-ink-soft: #334155;
    --pbm-muted: #64748b;
    --pbm-surface: #ffffff;
    --pbm-surface-alt: #f8fafc;
    --pbm-border: #e2e8f0;
    --pbm-radius: 14px;
    --pbm-radius-sm: 10px;
    --pbm-shadow-sm: 0 1px 2px rgba(15,23,42,.06);
    --pbm-shadow: 0 8px 24px rgba(15,23,42,.08);
    --pbm-shadow-lg: 0 20px 50px rgba(15,23,42,.12);
    --pbm-font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

body { font-family: var(--pbm-font); }

/* =========================================================
   HEADER
   ========================================================= */
.pbm-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: #fff;
    border-bottom: 1px solid var(--pbm-border);
    font-family: var(--pbm-font);
}
.pbm-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 40px;
    width: 100%;
    max-width: 100%;
    margin: 0;
}
.pbm-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.pbm-header__logo img {
    height: 40px;
    width: auto;
    display: block;
}
.pbm-header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.pbm-header__logo-text .pbm-brand {
    font-size: 17px;
    font-weight: 800;
    color: var(--pbm-ink);
    letter-spacing: .5px;
}
.pbm-header__logo-text .pbm-brand-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--pbm-muted);
    letter-spacing: 4px;
    margin-top: 2px;
}
.pbm-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}
.pbm-nav a {
    position: relative;
    display: inline-block;
    padding: 8px 2px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--pbm-ink-soft);
    text-decoration: none;
    transition: color .2s;
}
.pbm-nav a:hover {
    color: var(--pbm-primary);
}
.pbm-nav .active > a,
.pbm-nav a.active {
    color: var(--pbm-ink);
    font-weight: 600;
}
.pbm-nav .active > a::after,
.pbm-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2.5px;
    background: var(--pbm-accent);
    border-radius: 2px;
}
.pbm-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.pbm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid transparent;
    line-height: 1;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}
.pbm-btn--outline {
    background: #fff;
    color: var(--pbm-primary);
    border-color: var(--pbm-primary-100);
}
.pbm-btn--outline:hover {
    border-color: var(--pbm-primary);
    background: var(--pbm-primary-50);
    color: var(--pbm-primary);
}
.pbm-btn--primary {
    background: var(--pbm-primary);
    color: #fff;
    border-color: var(--pbm-primary);
}
.pbm-btn--primary:hover {
    background: var(--pbm-primary-600);
    color: #fff;
    box-shadow: 0 8px 18px rgba(30,58,138,.25);
}
.pbm-btn--accent {
    background: var(--pbm-accent);
    color: #fff;
    border-color: var(--pbm-accent);
}
.pbm-btn--accent:hover {
    background: var(--pbm-accent-600);
    color: #fff;
}
.pbm-header__toggle {
    display: none;
    background: none;
    border: 1px solid var(--pbm-border);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: var(--pbm-ink);
    font-size: 18px;
    cursor: pointer;
}
.pbm-user-menu .dropdown-menu {
    border-radius: 12px;
    border: 1px solid var(--pbm-border);
    box-shadow: var(--pbm-shadow);
    padding: 8px;
    min-width: 200px;
}
.pbm-user-menu .dropdown-menu a {
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--pbm-ink-soft);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pbm-user-menu .dropdown-menu a:hover {
    background: var(--pbm-primary-50);
    color: var(--pbm-primary);
}

@media (max-width: 991.98px) {
    .pbm-header__toggle { display: inline-flex; align-items: center; justify-content: center; order: 3; }
    .pbm-header__inner { padding: 12px 16px; flex-wrap: wrap; gap: 12px; }
    .pbm-nav {
        order: 5;
        flex: 1 0 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 0;
        border-top: 1px solid var(--pbm-border);
        display: none;
    }
    .pbm-nav.pbm-is-open { display: flex; }
    .pbm-nav a { width: 100%; padding: 10px 12px; border-radius: 8px; }
    .pbm-nav a:hover { background: var(--pbm-primary-50); }
    .pbm-header__actions { margin-left: auto; }
}

/* =========================================================
   HERO
   ========================================================= */
.pbm-hero {
    background-color: #eaf1fd;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    padding: 52px 0 44px;
    font-family: var(--pbm-font);
    overflow: hidden;
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
}

.pbm-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}
.pbm-hero__text { padding-right: 10px; }
.pbm-hero__title {
    font-size: clamp(30px, 3.6vw, 48px);
    line-height: 1.08;
    color: var(--pbm-ink);
    font-weight: 800;
    letter-spacing: -1.2px;
    margin: 0 0 18px;
}
.pbm-hero__subtitle {
    font-size: clamp(21px, 2.4vw, 30px);
    line-height: 1.25;
    font-weight: 700;
    color: var(--pbm-ink);
    margin: 0 0 16px;
    letter-spacing: -.5px;
}
.pbm-hero__subtitle .pbm-accent-text {
    color: var(--pbm-accent);
}
.pbm-hero__description {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--pbm-muted);
    max-width: 440px;
    margin-bottom: 24px;
}
.pbm-hero__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 500px;
}
.pbm-cta-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    border: 1px solid transparent;
    box-shadow: 0 4px 10px rgba(15,23,42,.04);
    transition: transform .25s ease, box-shadow .25s ease;
}
.pbm-cta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15,23,42,.10);
}
.pbm-cta-card--buyer {
    background: rgba(232,240,254,0.88);
    backdrop-filter: blur(6px);
}
.pbm-cta-card--seller {
    background: rgba(220,245,229,0.88);
    backdrop-filter: blur(6px);
}
.pbm-cta-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
    margin-bottom: 10px;
}
.pbm-cta-card--buyer .pbm-cta-card__icon { background: var(--pbm-primary); }
.pbm-cta-card--seller .pbm-cta-card__icon { background: var(--pbm-accent); }
.pbm-cta-card__title {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 5px;
    line-height: 1.2;
}
.pbm-cta-card--buyer .pbm-cta-card__title { color: var(--pbm-primary); }
.pbm-cta-card--seller .pbm-cta-card__title { color: var(--pbm-accent); }
.pbm-cta-card__desc {
    font-size: 12px;
    line-height: 1.5;
    color: var(--pbm-ink-soft);
    margin: 0 0 12px;
}
.pbm-cta-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: background .2s;
}
.pbm-cta-card--buyer .pbm-cta-card__btn { background: var(--pbm-primary); }
.pbm-cta-card--buyer .pbm-cta-card__btn:hover { background: var(--pbm-primary-600); color:#fff; }
.pbm-cta-card--seller .pbm-cta-card__btn { background: var(--pbm-accent); }
.pbm-cta-card--seller .pbm-cta-card__btn:hover { background: var(--pbm-accent-600); color:#fff; }

/* Hero right chips */
.pbm-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.pbm-chips {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 270px;
}
.pbm-chip {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(15,23,42,.08);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform .25s ease;
    border: 1px solid rgba(233,238,247,0.8);
}
.pbm-chip:hover { transform: translateX(-4px); }
.pbm-chip__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}
.pbm-chip--blue .pbm-chip__icon { background: var(--pbm-primary); }
.pbm-chip--green .pbm-chip__icon { background: var(--pbm-accent); }
.pbm-chip__text { line-height: 1.25; flex: 1; min-width: 0; }
.pbm-chip__title {
    font-size: 13px;
    font-weight: 800;
    color: var(--pbm-ink);
    margin: 0;
}
.pbm-chip__desc {
    font-size: 11px;
    color: var(--pbm-muted);
    margin: 2px 0 0;
    line-height: 1.35;
}

@media (max-width: 1199.98px) {
    .pbm-hero__inner, .pbm-about__inner, .pbm-newsletter__inner, .pbm-app__inner, .pbm-faq__inner, .pbm-why__grid {
        width: 92%;
    }
}
@media (max-width: 991.98px) {
    .pbm-hero {
        min-height: auto;
        padding: 40px 0;
    }
    .pbm-hero__inner { grid-template-columns: 1fr; gap: 28px; }
    .pbm-hero__text { padding-right: 0; }
    .pbm-hero__visual { justify-content: center; }
    .pbm-chips { width: 100%; flex-direction: row; flex-wrap: wrap; }
    .pbm-chip { flex: 1 1 calc(50% - 8px); min-width: 220px; }
}
@media (max-width: 575.98px) {
    .pbm-hero { padding: 28px 0 36px; }
    .pbm-hero__inner, .pbm-about__inner, .pbm-newsletter__inner, .pbm-app__inner, .pbm-faq__inner, .pbm-why__grid {
        width: calc(100% - 32px);
        padding: 0;
    }
    .pbm-hero__cards { grid-template-columns: 1fr; }
    .pbm-chip { flex: 1 1 100%; }
    .pbm-header__inner { padding: 12px 16px; }
    .pbm-footer__inner { padding: 0 16px; }
}

/* =========================================================
   ABOUT + STATS + MISSION
   ========================================================= */
.pbm-about {
    padding: 40px 0 32px;
    background: #fff;
    font-family: var(--pbm-font);
}
.pbm-about__inner {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.pbm-about__content { display: flex; flex-direction: column; }
.pbm-eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--pbm-primary);
    margin-bottom: 14px;
}
.pbm-section-title {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--pbm-ink);
    margin: 0 0 18px;
    letter-spacing: -.5px;
}
.pbm-section-title .pbm-accent-text { color: var(--pbm-accent); display: block; }
.pbm-section-description {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--pbm-muted);
    max-width: 560px;
    margin: 0 0 28px;
}
.pbm-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid var(--pbm-border);
    margin-top: auto;
}
.pbm-stat { text-align: center; }
.pbm-stat__icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pbm-primary-50);
    color: var(--pbm-primary);
    font-size: 22px;
    margin-bottom: 8px;
}
.pbm-stat__value {
    font-size: 26px;
    font-weight: 800;
    color: var(--pbm-ink);
    margin: 0;
    line-height: 1;
    letter-spacing: -.5px;
}
.pbm-stat__label {
    font-size: 12.5px;
    color: var(--pbm-muted);
    margin: 6px 0 0;
}

.pbm-mission {
    background:
        linear-gradient(180deg, rgba(239,246,255,.85) 0%, rgba(219,234,254,.85) 100%),
        linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* subtle factory silhouette */
.pbm-mission::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    opacity: .14;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 260'><g fill='%231e3a8a'><rect x='40' y='160' width='50' height='100'/><rect x='100' y='130' width='40' height='130'/><polygon points='100,130 120,95 140,130'/><rect x='155' y='150' width='80' height='110'/><rect x='170' y='110' width='20' height='45'/><rect x='200' y='110' width='20' height='45'/><rect x='250' y='140' width='50' height='120'/><polygon points='250,140 275,100 300,140'/><rect x='320' y='120' width='70' height='140'/><rect x='335' y='85' width='15' height='40'/><rect x='360' y='85' width='15' height='40'/><rect x='405' y='155' width='60' height='105'/><rect x='480' y='130' width='50' height='130'/><polygon points='480,130 505,95 530,130'/><rect x='545' y='155' width='45' height='105'/></g></svg>");
}
.pbm-mission__icon {
    position: relative;
    z-index: 1;
    width: 86px;
    height: 86px;
    margin: 0 auto 16px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--pbm-primary);
    box-shadow: 0 10px 30px rgba(30,58,138,.12);
}
.pbm-mission__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--pbm-ink);
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}
.pbm-mission__description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--pbm-ink-soft);
    margin: 0;
    max-width: 320px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .pbm-about__inner { grid-template-columns: 1fr; gap: 32px; }
    .pbm-stats { grid-template-columns: repeat(2, 1fr); }
    .pbm-mission { padding: 36px 20px; }
}
@media (max-width: 575.98px) {
    .pbm-about { padding: 48px 0; }
}

/* =========================================================
   WHY POLYMERS BAZAAR
   ========================================================= */
.pbm-why {
    padding: 32px 0 36px;
    background: #fff;
    font-family: var(--pbm-font);
}
.pbm-why__header { text-align: center; margin-bottom: 28px; }
.pbm-why__heading {
    font-size: clamp(16px, 1.9vw, 20px);
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--pbm-ink);
    margin: 0 0 14px;
}
.pbm-why__underline {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: var(--pbm-accent);
    border-radius: 2px;
}
.pbm-why__grid {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.pbm-why-card {
    text-align: center;
    padding: 16px 10px;
    border-radius: 12px;
    transition: transform .25s ease, background .25s ease;
}
.pbm-why-card:hover {
    transform: translateY(-4px);
    background: var(--pbm-surface-alt);
}
.pbm-why-card__icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.pbm-why-card__icon--blue { background: var(--pbm-primary-50); color: var(--pbm-primary); }
.pbm-why-card__icon--green { background: var(--pbm-accent-50); color: var(--pbm-accent); }
.pbm-why-card__title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--pbm-ink);
    margin: 0 0 6px;
}
.pbm-why-card__desc {
    font-size: 12px;
    line-height: 1.55;
    color: var(--pbm-muted);
    margin: 0;
}
@media (max-width: 1199.98px) { .pbm-why__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 575.98px)  { .pbm-why__grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.pbm-newsletter {
    padding: 16px 0;
    background: #fff;
    font-family: var(--pbm-font);
}
.pbm-newsletter__inner {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}
.pbm-newsletter__card {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 60%, #1e3a8a 100%);
    border-radius: 16px;
    padding: 28px 36px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 36px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.pbm-newsletter__main { display: flex; flex-direction: column; gap: 4px; }
.pbm-newsletter__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 4px;
}
.pbm-newsletter__eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #6ee7b7;
    margin-bottom: 10px;
}
.pbm-newsletter__title {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #fff;
    letter-spacing: -.3px;
}
.pbm-newsletter__desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #cbd5e1;
    margin: 0;
}
.pbm-newsletter__form {
    display: flex;
    gap: 0;
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.pbm-newsletter__form input[type=email] {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: 13.5px;
    background: transparent;
    color: var(--pbm-ink);
    min-width: 0;
}
.pbm-newsletter__form button {
    background: var(--pbm-accent);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
}
.pbm-newsletter__form button:hover { background: var(--pbm-accent-600); }
.pbm-newsletter__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}
.pbm-newsletter__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #bfdbfe;
}
.pbm-newsletter__tag i { color: #6ee7b7; font-size: 13px; }
.pbm-newsletter__visual {
    text-align: center;
    align-self: center;
}
.pbm-newsletter__visual svg { max-width: 220px; height: auto; }

@media (max-width: 991.98px) {
    .pbm-newsletter__card { grid-template-columns: 1fr; padding: 32px 24px; gap: 20px; }
    .pbm-newsletter__visual { display: none; }
    .pbm-newsletter__row { grid-template-columns: 1fr; gap: 16px; }
    .pbm-newsletter__form {
        display: block;
    }

     .pbm-newsletter__form button{
        width: 100%;
    }
}

/* =========================================================
   APP DOWNLOAD
   ========================================================= */
.pbm-app {
    padding: 16px 0 24px;
    background: #fff;
    font-family: var(--pbm-font);
}
.pbm-app__inner {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}
.pbm-app__card {
    background: linear-gradient(135deg, #e8f0fe 0%, #dbe6ff 100%);
    border-radius: 16px;
    padding: 6px 32px;
    display: grid;
    grid-template-columns: 1.1fr 1fr .9fr;
    gap: 28px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.pbm-app__title {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: var(--pbm-ink);
    margin: 0 0 10px;
    line-height: 1.25;
    letter-spacing: -.3px;
}
.pbm-app__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--pbm-muted);
    margin: 0;
    max-width: 340px;
}
.pbm-app__qrs {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.pbm-app__qr {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.pbm-app__qr-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    background: #fff;
    padding: 8px;
    border: 1px solid rgba(30,58,138,.08);
    box-shadow: 0 6px 16px rgba(15,23,42,.06);
    display: block;
    object-fit: contain;
}
.pbm-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111827;
    color: #fff;
    padding: 7px 14px;
    border-radius: 8px;
    min-width: 130px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 4px 10px rgba(15,23,42,.12);
}
.pbm-store-badge:hover,
.pbm-store-badge:focus {
    transform: translateY(-2px);
    background: #0b1220;
    color: #fff;
    box-shadow: 0 8px 16px rgba(15,23,42,.22);
    text-decoration: none;
}
.pbm-store-badge__icon {
    font-size: 22px;
    line-height: 1;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pbm-store-badge__text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
    color: #fff;
}
.pbm-store-badge__text small {
    font-size: 9px;
    font-weight: 500;
    opacity: .85;
    letter-spacing: .6px;
    text-transform: uppercase;
}
.pbm-store-badge__text strong {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .2px;
}

.pbm-app__phone {
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pbm-app__phone-frame {
    position: relative;
    display: inline-block;
    width: 260px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    filter: drop-shadow(0 18px 28px rgba(30,58,138,.18));
}
.pbm-app__phone-media {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}
video.pbm-app__phone-media { object-fit: cover; width: 100%; max-width: 240px; max-height: 260px; border-radius: 14px; top: 0; }
@media (max-width: 991.98px) {
    .pbm-app__card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; gap: 24px; }
    .pbm-app__desc { margin-left: auto; margin-right: auto; }
    .pbm-app__phone { order: 3; }
    .pbm-app__phone-frame { width: 240px; }
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.pbm-faq {
    padding: 32px 0 40px;
    background: #fff;
    font-family: var(--pbm-font);
}
.pbm-faq__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.pbm-faq__header { text-align: center; margin-bottom: 24px; }
.pbm-faq__title {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--pbm-ink);
    margin: 0 0 12px;
}
.pbm-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.pbm-faq__item {
    background: #fff;
    border: 1px solid var(--pbm-border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.pbm-faq__item:hover { border-color: var(--pbm-primary-100); box-shadow: var(--pbm-shadow-sm); }
.pbm-faq__q {
    background: none;
    border: none;
    width: 100%;
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--pbm-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.pbm-faq__q::after {
    content: '+';
    font-size: 22px;
    color: var(--pbm-primary);
    transition: transform .2s ease;
    flex-shrink: 0;
    font-weight: 300;
    line-height: 1;
}
.pbm-faq__q[aria-expanded="true"]::after { content: '–'; }
.pbm-faq__body {
    padding: 0 18px 16px;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--pbm-muted);
}
@media (max-width: 767.98px) { .pbm-faq__grid { grid-template-columns: 1fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.pbm-footer {
    background: #1e3a8a;
    color: #cbd5e1;
    padding: 32px 0 0;
    font-family: var(--pbm-font);
    margin-top: 0;
}
.pbm-footer__inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
}
.pbm-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 22px;
}
.pbm-footer__brand { max-width: 320px; }
.pbm-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 14px;
}
.pbm-footer__logo img { height: 38px; }
.pbm-footer__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.pbm-footer__logo-text .pbm-brand {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px;
}
.pbm-footer__logo-text .pbm-brand-sub {
    font-size: 11px;
    font-weight: 600;
    color: #93c5fd;
    letter-spacing: 4px;
    margin-top: 2px;
}
.pbm-footer__about {
    font-size: 13px;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0 0 20px;
}
.pbm-footer__social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pbm-footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s;
    font-size: 14px;
}
.pbm-footer__social a:hover { background: var(--pbm-accent); color: #fff; }
.pbm-footer__heading {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin: 0 0 18px;
}
.pbm-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.pbm-footer__links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13.5px;
    transition: color .2s, padding-left .2s;
}
.pbm-footer__links a:hover { color: #fff; padding-left: 4px; }
.pbm-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.pbm-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.55;
}
.pbm-footer__contact i {
    color: #6ee7b7;
    margin-top: 3px;
    flex-shrink: 0;
}
.pbm-footer__contact a { color: #cbd5e1; text-decoration: none; }
.pbm-footer__contact a:hover { color: #fff; }
.pbm-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 14px 0 16px;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}
.pbm-footer__bottom a { color: #cbd5e1; text-decoration: none; margin: 0 6px; }
.pbm-footer__bottom a:hover { color: #fff; }

@media (max-width: 991.98px) {
    .pbm-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .pbm-footer__inner { padding: 0 16px; }
}
@media (max-width: 575.98px) {
    .pbm-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}
