@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;700;900&display=swap');

:root {
    --pba-bg: #1e70ff;
    --pba-accent: #f6e01a;
    --pba-shadow: #c9b40f;
    --pba-bg-2: #1559d6;
}
* { box-sizing: border-box; }
body { margin: 0; }

/* ============================================================
   HERO 2 — "ADS THAT MAKE AN IMPACT"
   Left = vertical auto-slider · Center = headline + wireframe orb
   Right = WhatsApp link cards · Bottom = scrolling marquee bar
   ============================================================ */
.pba-hero2 {
    --h2-blue: #3b1fff;
    --h2-ink: #0e0e12;
    --h2-muted: #b9bcc7;
    position: relative;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    padding-bottom: 64px;            /* room for the marquee bar */
}
.pba-hero2 * { box-sizing: border-box; }

.pba-hero2-inner {
    display: grid;
    grid-template-columns: 320px 1fr 320px;
    height: clamp(520px, 70vh, 680px);
    align-items: stretch;
}

/* ---------- LEFT: vertical auto-slider ---------- */
.pba-hero2-slider {
    position: relative;
    overflow: hidden;
    height: 100%;
    background: #0e0e12;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(180deg, transparent, #000 6%, #000 94%, transparent);
}
.pba-hero2-slidetrack {
    position: absolute;          /* out of flow so it can't stretch the row */
    top: 0; left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: pbaHero2Slide 34s linear infinite;
    will-change: transform;
}
.pba-hero2-slider:hover .pba-hero2-slidetrack { animation-play-state: paused; }
.pba-hero2-slide {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}
@keyframes pbaHero2Slide {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}

/* ---------- CENTER: headline + orb ---------- */
.pba-hero2-center {
    position: relative;
    padding: clamp(32px, 4vw, 60px) clamp(28px, 4vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.pba-hero2-title {
    margin: 0;
    color: var(--h2-ink);
    font-family: 'Anton', 'Inter', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(2.6rem, 6.2vw, 6rem);
    line-height: 0.96;
    letter-spacing: -0.01em;
}
.pba-hero2-sub {
    margin: clamp(28px, 5vh, 64px) 0 0;
    max-width: 30ch;
    color: var(--h2-muted);
    font-size: clamp(1.1rem, 1.8vw, 1.7rem);
    font-weight: 500;
    line-height: 1.35;
}
/* wireframe orb floats over the lower-right of the center column */
.pba-hero2-orb {
    position: absolute;
    right: clamp(-40px, 2vw, 40px);
    bottom: clamp(70px, 16vh, 150px);
    width: clamp(220px, 26vw, 420px);
    pointer-events: none;
    z-index: 1;
}
.pba-hero2-orb svg {
    width: 100%;
    height: auto;
    display: block;
    animation: pbaHero2Spin 26s linear infinite;
    transform-origin: 50% 50%;
}
@keyframes pbaHero2Spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ---------- RIGHT: WhatsApp link cards ---------- */
.pba-hero2-cards {
    display: flex;
    flex-direction: column;
}
.pba-hero2-card {
    position: relative;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    padding: clamp(24px, 2.4vw, 38px);
    text-decoration: none;
    color: var(--h2-ink);
    transition: transform .3s ease, box-shadow .3s ease;
}
.pba-hero2-card--blue  { background: #dbe6ff; }
.pba-hero2-card--peach { background: #ffe3cf; }
.pba-hero2-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.12); z-index: 2; }
.pba-hero2-card-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; font-weight: 900;
    color: #111;
}
.pba-hero2-card-icon svg { width: 40px; height: 40px; }
.pba-hero2-card h3 {
    margin: 22px 0 12px;
    font-size: clamp(1.3rem, 1.6vw, 1.7rem);
    font-weight: 800;
    line-height: 1.12;
}
.pba-hero2-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #4a4d59;
}
.pba-hero2-card-arrow {
    margin-top: auto;
    align-self: flex-start;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 1.2rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.pba-hero2-card:hover .pba-hero2-card-arrow {
    background: #111; color: #fff; transform: translate(3px, -3px);
}

/* ---------- BOTTOM: marquee bar ---------- */
.pba-hero2-marquee {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: var(--h2-blue);
    overflow: hidden;
    padding: 14px 0;
    z-index: 5;
}
.pba-hero2-marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: pbaHero2Marquee 28s linear infinite;
    will-change: transform;
}
.pba-hero2-marquee-track span {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-family: 'Anton', 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1.1rem, 2vw, 1.9rem);
    letter-spacing: 0.02em;
    white-space: nowrap;
    padding: 0 26px;
}
.pba-hero2-marquee-track .pba-hero2-star { color: var(--pba-accent); }
@keyframes pbaHero2Marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .pba-hero2-inner { grid-template-columns: 200px 1fr 260px; }
}
@media (max-width: 860px) {
    .pba-hero2-inner { grid-template-columns: 1fr; height: auto; }
    .pba-hero2-slider { height: 260px; order: 2; }
    .pba-hero2-center { order: 1; padding-top: 56px; }
    .pba-hero2-sub { margin-top: 28px; }
    .pba-hero2-orb { position: relative; right: auto; bottom: auto; margin: 30px auto 0; }
    .pba-hero2-cards { order: 3; flex-direction: row; }
    .pba-hero2-card { padding: 26px 20px; }
}
@media (max-width: 540px) {
    .pba-hero2-cards { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
    .pba-hero2-slidetrack,
    .pba-hero2-orb svg,
    .pba-hero2-marquee-track { animation: none; }
}

/* ============================================================
   ABOUT US — copy left, image collage right
   ============================================================ */
.pba-about {
    position: relative;
    background: #ffffff;
    color: #0e0e12;
    font-family: 'Inter', sans-serif;
    padding: clamp(48px, 7vw, 110px) clamp(20px, 5vw, 70px);
    overflow: hidden;
}
.pba-about * { box-sizing: border-box; }
.pba-about-inner {
    /* max-width: 1320px; */
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.80fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
}

/* LEFT copy */
.pba-about-badge {
    display: inline-block;
    padding: 10px 24px;
    border: 1.5px solid #dadae1;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: clamp(22px, 3vw, 38px);
}
.pba-about-heading {
    margin: 0 0 clamp(28px, 4vw, 46px);
    font-size: clamp(1.5rem, 2.7vw, 2.5rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.pba-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0e0e12;
}
.pba-about-btn b {
    background: #0e0e12;
    color: #fff;
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity .25s ease;
}
.pba-about-btn-arrow {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid #dadae1;
    border-radius: 12px;
    font-size: 1.15rem;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.pba-about-btn:hover b { opacity: 0.85; }
.pba-about-btn:hover .pba-about-btn-arrow { background: #0e0e12; color: #fff; transform: translate(2px, -2px); }

/* RIGHT collage */
.pba-about-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 16px;
    height: clamp(420px, 44vw, 600px);
}
.pba-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}
.am-street  { grid-column: 1; grid-row: 1 / span 2; }
.am-pumpkin { grid-column: 2; grid-row: 1; }
.am-card {
    grid-column: 2; grid-row: 2;
    background: #1b1b22;
    color: #fff;
    border-radius: 16px;
    padding: clamp(20px, 2vw, 32px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.am-card .am-num {
    font-family: 'Anton', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1;
}
.am-card .am-num span { color: var(--pba-accent); }
.am-card .am-label {
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    font-weight: 500;
    line-height: 1.2;
}

/* floating billboard overlap */
.pba-about-billboard {
    position: absolute;
    left: clamp(34%, 38%, 42%);
    bottom: clamp(20px, 5vw, 70px);
    width: clamp(180px, 19vw, 290px);
    border-radius: 14px;
    z-index: 3;
}

@media (max-width: 992px) {
    .pba-about-billboard { display: none; }
}
@media (max-width: 860px) {
    .pba-about-inner { grid-template-columns: 1fr; }
    .pba-about-media { height: clamp(360px, 86vw, 520px); }
}

/* ============================================================
   SERVICES — copy left, header bar + 2x2 card grid right
   ============================================================ */
.pba-srv {
    background: #ffffff;
    color: #0e0e12;
    font-family: 'Inter', sans-serif;
    padding: clamp(48px, 7vw, 110px) clamp(20px, 5vw, 70px);
}
.pba-srv * { box-sizing: border-box; }
.pba-srv-inner {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
}

/* LEFT copy */
.pba-srv-badge {
    display: inline-block;
    padding: 10px 24px;
    border: 1.5px solid #dadae1;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: clamp(22px, 3vw, 40px);
}
.pba-srv-heading {
    margin: 0;
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* RIGHT panel */
.pba-srv-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #ececf0;
    border-radius: 18px;
    overflow: hidden;
}
.pba-srv-bar {
    grid-column: 1 / -1;
    background: #0e0e12;
    color: #fff;
    text-align: center;
    font-family: 'Anton', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: clamp(1.1rem, 1.8vw, 1.7rem);
    padding: clamp(20px, 2.4vw, 34px);
}
.pba-srv-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: clamp(230px, 22vw, 300px);
    padding: clamp(24px, 2.4vw, 40px);
    text-decoration: none;
    color: #0e0e12;
    border-top: 1px solid #ececf0;
    border-left: 1px solid #ececf0;
    transition: background .3s ease, color .3s ease;
}
.pba-srv-card:nth-child(even) { border-left: none; } /* bar is child 1, so left-column cards are even */
.pba-srv-card h3 {
    margin: 0 0 14px;
    font-size: clamp(1.2rem, 1.6vw, 1.6rem);
    font-weight: 700;
}
.pba-srv-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #5b5e6b;
    max-width: 34ch;
}
.pba-srv-card-arrow {
    margin-top: auto;
    align-self: flex-end;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: #f1f1f4;
    color: #111;
    font-size: 1.1rem;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.pba-srv-card:hover .pba-srv-card-arrow { background: #0e0e12; color: #fff; transform: translate(2px, -2px); }

/* highlighted dark card */
.pba-srv-card--dark { background: #1b1b22; color: #fff; }
.pba-srv-card--dark p { color: rgba(255,255,255,0.7); }
.pba-srv-card--dark .pba-srv-card-arrow { background: #fff; color: #111; }

@media (max-width: 860px) {
    .pba-srv-inner { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
    .pba-srv-panel { grid-template-columns: 1fr; }
    .pba-srv-card,
    .pba-srv-card:nth-child(odd) { border-left: none; }
}

/* ============================================================
   CREATIVE CAPABILITIES — what we create
   ============================================================ */
.pba-cap {
    background: #0b0b10;
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding: clamp(56px, 8vw, 120px) clamp(20px, 5vw, 70px);
}
.pba-cap * { box-sizing: border-box; }
.pba-cap-inner { max-width: 1320px; margin: 0 auto; }
.pba-cap-head { max-width: 760px; margin: 0 0 clamp(28px, 4vw, 44px); }
.pba-cap-eyebrow {
    display: inline-block;
    color: var(--pba-accent);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 16px;
}
.pba-cap-heading {
    margin: 0 0 18px;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
}
.pba-cap-sub {
    margin: 0;
    color: #aeb0bd;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.6;
}

/* platforms strip */
.pba-cap-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 clamp(34px, 4vw, 52px);
}
.pba-cap-platforms span {
    padding: 9px 20px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e8e9f0;
}

/* grid of capability cards */
.pba-cap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.pba-cap-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(26px, 2.4vw, 38px);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), background .35s ease, border-color .35s ease;
}
.pba-cap-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.07);
    border-color: var(--pba-accent);
}
.pba-cap-num {
    font-family: 'Anton', 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--pba-accent);
    margin-bottom: 16px;
}
.pba-cap-card h3 {
    margin: 0 0 12px;
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    font-weight: 700;
    line-height: 1.15;
}
.pba-cap-card p {
    margin: 0;
    color: #aeb0bd;
    font-size: 0.95rem;
    line-height: 1.55;
}

/* CTA card */
.pba-cap-card--cta {
    background: var(--pba-accent);
    border-color: var(--pba-accent);
    color: #111;
    text-decoration: none;
    justify-content: center;
}
.pba-cap-card--cta:hover { background: #fff; border-color: #fff; transform: translateY(-8px); }
.pba-cap-card--cta h3 { color: #111; }
.pba-cap-card--cta p { color: rgba(0,0,0,0.7); margin-bottom: 18px; }
.pba-cap-cta-btn {
    align-self: flex-start;
    background: #111;
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
}

/* ============================================================
   FAQ — accordion
   ============================================================ */
.pba-faq {
    background: #ffffff;
    color: #0e0e12;
    font-family: 'Inter', sans-serif;
    padding: clamp(56px, 8vw, 120px) clamp(20px, 5vw, 70px);
}
.pba-faq * { box-sizing: border-box; }
.pba-faq-inner {
    max-width: 880px;
    margin: 0 auto;
}
.pba-faq-head { text-align: center; margin-bottom: clamp(30px, 4vw, 50px); }
.pba-faq-eyebrow {
    display: inline-block;
    color: var(--pba-bg);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 14px;
}
.pba-faq-heading {
    margin: 0;
    font-size: clamp(1.7rem, 3.4vw, 2.7rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.pba-faq-list { display: flex; flex-direction: column; gap: 14px; }
.pba-faq-item {
    border: 1px solid #e7e7ec;
    border-radius: 14px;
    padding: 4px 22px;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.pba-faq-item[open] { border-color: var(--pba-bg); box-shadow: 0 12px 30px rgba(30,112,255,0.08); }
.pba-faq-q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    font-weight: 600;
}
.pba-faq-q::-webkit-details-marker { display: none; }
.pba-faq-icon {
    flex: 0 0 auto;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #f1f1f4;
    font-size: 1.3rem;
    line-height: 1;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}
.pba-faq-item[open] .pba-faq-icon { transform: rotate(45deg); background: var(--pba-bg); color: #fff; }
.pba-faq-a {
    padding: 0 0 20px;
    color: #5b5e6b;
    line-height: 1.65;
}
.pba-faq-a p { margin: 0; }

/* --- Freaky Hero Section Styles --- */
.pba-services {
    background-color: #020617; /* Deep Midnight */
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif; /* Ensure a bold font is loaded */
}

/* Background Watermark Text (The "Freaky" Look) */
.pba-services::before {
    content: "IMPACT";
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
}

.pba-section-head {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.pba-section-head span {
    color: #f3ff00; /* Neon Yellow */
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.pba-section-head h2 {
    color: #ffffff;
    font-size: clamp(3rem, 8vw, 6rem); /* Responsive huge text */
    line-height: 0.9;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 25px;
    /* Adding a slight glitch shadow */
    text-shadow: 3px 3px 0px #3b82f6; 
}

.pba-section-head p {
    color: #94a3b8;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Dynamic Grid */
.pba-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* Glassmorphism Cards */
.pba-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.pba-service-card:hover {
    background: #3b82f6; /* Electric Blue on hover */
    transform: translateY(-15px) scale(1.02);
    border-color: #f3ff00;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.pba-service-card h3 {
    color: #f3ff00; /* Neon Yellow */
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    transition: 0.3s;
}

.pba-service-card:hover h3 {
    color: #ffffff;
}

.pba-service-card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.5;
    transition: 0.3s;
}

.pba-service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Freaky Element: Floating Shapes */
.pba-services::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    filter: blur(50px);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .pba-section-head h2 {
        font-size: 3.5rem;
    }
}


/* ============================================================
   PERSONAL BRANDING — WORK WALL (poster layout)
   Left = copy, Right = two vertical infinite scrollers.
   All selectors scoped under .pbw-section.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.pbw-section {
  --pbw-bg-1: #ffffff;
  --pbw-bg-2: #f1eef6;
  --pbw-ink: #1b1b22;
  --pbw-muted: #6c6b78;
  --pbw-accent: #ff5630;
  --pbw-card: #2a2350;
  --pbw-pill: rgba(255,255,255,0.94);
  --pbw-curve: 84px;

  position: relative;
  padding: clamp(40px, 6vw, 88px) clamp(20px, 5vw, 64px);
  background: linear-gradient(135deg, var(--pbw-bg-1) 0%, var(--pbw-bg-2) 100%);
  color: var(--pbw-ink);
  font-family: 'Poppins', system-ui, sans-serif;
  overflow: hidden;
}
.pbw-section *,
.pbw-section *::before,
.pbw-section *::after { box-sizing: border-box; }

/* ---------- GRID ---------- */
.pbw-grid {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

/* ---------- LEFT: COPY ---------- */
.pbw-intro { max-width: 30rem; }
.pbw-tagline {
  font-size: clamp(1.1rem, 2.1vw, 1.5rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--pbw-muted);
  margin: 0 0 18px;
}
.pbw-heading {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}
.pbw-hashtag {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 500;
  color: var(--pbw-ink);
  margin: 0 0 30px;
}
.pbw-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1.6px solid var(--pbw-ink);
  border-radius: 999px;
  color: var(--pbw-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.pbw-cta__icon { transform: translateY(1px); }
.pbw-cta:hover { background: var(--pbw-ink); color: #fff; transform: translateY(-2px); }
.pbw-cta:focus-visible { outline: 3px solid var(--pbw-accent); outline-offset: 3px; }
.pbw-logo {
  margin: 44px 0 0;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}
.pbw-logo span { color: var(--pbw-accent); margin: 0 1px; }

/* ---------- RIGHT: VERTICAL SCROLLERS ---------- */
.pbw-columns {
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  height: clamp(560px, 86vh, 820px);
  border-top-left-radius: var(--pbw-curve);
  border-bottom-left-radius: var(--pbw-curve);
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  overflow: hidden;            /* curved clip echoes the poster sweep */
}
.pbw-col {
  flex: 1 1 0;
  position: relative;
  overflow: hidden;
  cursor: grab;
  /* soft fade top + bottom */
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
}
.pbw-col.pbw-grabbing { cursor: grabbing; }
.pbw-coltrack {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 20px);
  will-change: transform;
  user-select: none;
}

/* ---------- CARD ---------- */
.pbw-card { position: relative; }
.pbw-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  background: var(--pbw-card);
  box-shadow: 0 16px 34px -16px rgba(28,24,60,0.5);
}
.pbw-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.pbw-card:hover .pbw-card__media img { transform: scale(1.05); }

/* floating pill — title (SEO phrase) + subtitle (result) */
.pbw-pill {
  position: absolute;
  left: 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  padding: 9px 14px;
  border-radius: 16px;
  background: var(--pbw-pill);
  color: var(--pbw-ink);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.45);
  max-width: 86%;
}
.pbw-pill--top    { top: 14px; }
.pbw-pill--bottom { bottom: 14px; }
.pbw-pill__title { font-weight: 600; font-size: 0.82rem; line-height: 1.15; }
.pbw-pill__sub   { font-weight: 500; font-size: 0.72rem; color: var(--pbw-accent); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .pbw-grid { grid-template-columns: 1fr; gap: 32px; }
  .pbw-intro { max-width: none; }
  .pbw-columns {
    height: clamp(460px, 66vh, 640px);
    border-top-left-radius: 48px;
    border-bottom-left-radius: 48px;
  }
}
@media (max-width: 420px) {
  .pbw-pill__title { font-size: 0.74rem; }
  .pbw-pill__sub { font-size: 0.66rem; }
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  /* JS halts auto-scroll; mouse-drag still works. */
  .pbw-card:hover .pbw-card__media img { transform: none; }
}



/*********************** new 
/* ============================================================
   SCROLL FOCUS SECTION  —  styles.css
   Brand theme: royal blue / yellow / orange / dark
   ============================================================ */

:root {
  --blue:        #2356f6;   /* main brand blue */
  --blue-deep:   #0b1a4a;   /* dark section bg */
  --yellow:      #ffd400;
  --orange:      #ff5a1f;
  --ink:         #ffffff;
  --muted:       rgba(255, 255, 255, 0.38);
  --panel-card:  #ffffff;
}

/* page reset (keep only what you need if pasting into an existing site) */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #f4f5f8;
  color: #111;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Section shell ---------- */
.focus {
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(35,86,246,0.55) 0%, transparent 60%),
    var(--blue-deep);
  color: var(--ink);
  padding: 8vh 6vw;
}

.focus__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

/* ---------- LEFT: menu list ---------- */
.focus__menu {
  position: relative;
  /* big top & bottom padding lets first/last item reach the center line */
  padding: 42vh 0;
}

.menu { list-style: none; }

.menu__item {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--muted);
  filter: blur(3px);
  opacity: 0.55;
  transform: translateX(0);
  transition: color .35s ease, filter .35s ease, opacity .35s ease,
              transform .35s ease;
  cursor: pointer;
  user-select: none;
}

.menu__item:hover { color: rgba(255,255,255,.6); }

/* the centered / active item */
.menu__item.is-active {
  color: var(--ink);
  filter: blur(0);
  opacity: 1;
  transform: translateX(48px);   /* makes room for the arrow */
}

/* animated marker that glides to the active item */
.focus__marker {
  position: absolute;
  left: -8px;
  top: 50%;                 /* JS updates this to track the active item */
  color: var(--yellow);
  transform: translateY(-50%);
  transition: top .45s cubic-bezier(.65,.05,.2,1), opacity .3s ease;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(255,212,0,0.55));
  z-index: 2;
}

.focus__marker svg { display: block; overflow: visible; }

/* arrowhead gives a soft, continuous nudge so it feels alive */
.focus__marker-head {
  animation: nudge 1.6s ease-in-out infinite;
}

/* the tail line gently breathes in length */
.focus__marker-line {
  transform-origin: left center;
  animation: breathe 1.6s ease-in-out infinite;
}

@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(7px); }
}

@keyframes breathe {
  0%, 100% { transform: scaleX(0.9); opacity: .85; }
  50%      { transform: scaleX(1);   opacity: 1; }
}

/* ---------- RIGHT: sticky stage ---------- */
.focus__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}

.panels {
  position: relative;
  width: 100%;
  min-height: 70vh;
}

.panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease, visibility .45s;
}

.panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.panel__eyebrow {
  display: inline-block;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: var(--yellow);
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
}

.panel__title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.panel__text {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
}

.panel__media {
  margin-top: 0.5rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  max-height: 360px;
}

.panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* small accent bar under the title */
.panel__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 5px;
  margin-top: 0.6rem;
  background: var(--orange);
  border-radius: 99px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .focus__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* stage sits on top, stays in view while the list scrolls under it */
  .focus__stage {
    height: auto;
    top: 0;
    padding-top: 4vh;
  }
  .panels { min-height: 58vh; }
  .panel  { position: absolute; }

  .focus__menu { padding: 30vh 0 40vh; }
  .menu__item.is-active { transform: translateX(34px); }
  .panel__media { max-height: 240px; }
}

/* respect users who turn motion off */
@media (prefers-reduced-motion: reduce) {
  .menu__item, .panel { transition: none; }
  .focus__marker { transition: none; }
  .focus__marker-head, .focus__marker-line { animation: none; }
}

/* ============================================================
   FX.CSS — smoothness + extra animation add-on
   Include AFTER your main stylesheet, or paste at the very end
   of it. Uses ONLY your existing theme colours.
   (blue #1e70ff / #3b82f6 · yellow #f6e01a / #f3ff00 · orange #ff5630)
   ============================================================ */

/* smoother in-page jumps everywhere */
html { scroll-behavior: smooth; }

/* ----------------------------------------------------------------
   1) SCROLL-REVEAL  (classes are added/removed by script.js)
   Uses an animation (not a lingering transform), so after it runs
   the element is left clean and hover effects keep working.
---------------------------------------------------------------- */
.fx-reveal { opacity: 0; }
.fx-reveal.fx-in {
  animation: fxRise .85s cubic-bezier(.16,.84,.44,1) both;
  animation-delay: var(--fx-delay, 0ms);
}
@keyframes fxRise {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------
   2) HERO — fade the parallax layers in on load
   (opacity only, so it never fights the JS transforms)
---------------------------------------------------------------- */
.pba-typography-layer,
.pba-visuals-layer {
  opacity: 0;
  transition: opacity 1s ease .15s;
}
.pba-hero-3d.pba-loaded .pba-typography-layer,
.pba-hero-3d.pba-loaded .pba-visuals-layer { opacity: 1; }

/* very slow background drift for a living feel */
.pba-hero-3d {
  background-size: 140% 140%;
  animation: pbaBgShift 22s ease-in-out infinite;
}
@keyframes pbaBgShift {
  0%, 100% { background-position: 50% 0%; }
  50%      { background-position: 50% 16%; }
}

/* small lift on the bottom cards + audit link */
.pba-feature-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.pba-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.28);
}
.pba-audit-btn {
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.pba-audit-btn:hover { transform: translateX(4px); }

/* ----------------------------------------------------------------
   3) SERVICES — cursor spotlight on the glass cards (neon-yellow glow)
   script.js feeds --mx / --my as the cursor moves.
---------------------------------------------------------------- */
.pba-service-card {
  position: relative;
  overflow: hidden;
}
.pba-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%),
              rgba(243, 255, 0, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 0;
}
.pba-service-card:hover::before { opacity: 1; }
.pba-service-card > * { position: relative; z-index: 1; }

/* gentle drift on the giant IMPACT watermark */
.pba-services::before {
  animation: pbaImpactDrift 18s ease-in-out infinite;
}
@keyframes pbaImpactDrift {
  0%, 100% { transform: translateX(-51%); }
  50%      { transform: translateX(-49%); }
}

/* ----------------------------------------------------------------
   4) WORK WALL — soft fade-in of the columns block
   (pairs with .fx-reveal applied by JS)
---------------------------------------------------------------- */
.pbw-columns { will-change: transform, opacity; }

/* ----------------------------------------------------------------
   5) MOTION-SAFE — turn the continuous stuff off for users who
   prefer reduced motion, and make sure nothing stays hidden.
---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pba-hero-3d,
  .pba-services::before { animation: none; }
  .pba-typography-layer,
  .pba-visuals-layer { opacity: 1 !important; }
  .fx-reveal { opacity: 1 !important; }
}







