/**
 * Webbotica — Google Business Profile detail page
 */

:root {
    --wb-gbp-primary: var(--color-primary, #496af9);
    --wb-gbp-primary-dark: #3452d6;
    --wb-gbp-bg: var(--color-background, #fafaf8);
    --wb-gbp-surface: var(--color-surface, #ffffff);
    --wb-gbp-heading: var(--color-heading, #111827);
    --wb-gbp-copy: var(--color-paragraph, #6b7280);
    --wb-gbp-border: var(--color-border, #e5e7eb);
    --wb-gbp-container: var(--container-width, 1240px);
    --wb-gbp-gutter: var(--container-padding, 24px);
    --wb-gbp-radius-sm: 10px;
    --wb-gbp-radius-md: 16px;
    --wb-gbp-radius-lg: 22px;
    --wb-gbp-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

.wb-gbp-page,
.wb-gbp,
.wb-gbp * {
    box-sizing: border-box;
}

.wb-gbp {
    background: #fff;
    color: var(--wb-gbp-heading);
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow: clip;
}

.wb-gbp a { color: inherit; }
.wb-gbp button,
.wb-gbp input { font: inherit; }

.wb-gbp__container {
    width: min(calc(100% - (var(--wb-gbp-gutter) * 2)), var(--wb-gbp-container));
    margin-inline: auto;
}

.wb-gbp__eyebrow {
    margin: 0 0 16px;
    color: var(--wb-gbp-primary);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
}

.wb-gbp__button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.wb-gbp__button:hover { transform: translateY(-2px); }
.wb-gbp__button:focus-visible,
.wb-gbp button:focus-visible,
.wb-gbp a:focus-visible,
.wb-gbp summary:focus-visible {
    outline: 3px solid rgba(73, 106, 249, 0.26);
    outline-offset: 3px;
}

.wb-gbp__button--primary {
    background: var(--wb-gbp-primary);
    color: #fff !important;
}
.wb-gbp__button--primary:hover { background: var(--wb-gbp-primary-dark); }

.wb-gbp__button--text {
    padding-inline: 2px;
    border-radius: 0;
    border-bottom-color: var(--wb-gbp-heading);
    background: transparent;
    color: var(--wb-gbp-heading) !important;
}
.wb-gbp__button--text:hover {
    border-bottom-color: var(--wb-gbp-primary);
    color: var(--wb-gbp-primary) !important;
}

.wb-gbp-section {
    padding: clamp(76px, 7.5vw, 112px) 0;
    background: #fff;
}

.wb-gbp-section + .wb-gbp-section {
    border-top: 1px solid rgba(229, 231, 235, 0.78);
}

.wb-gbp-heading {
    max-width: 820px;
    margin-bottom: clamp(38px, 4.6vw, 58px);
}

.wb-gbp-heading h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(2.15rem, 3.45vw, 3.55rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.06;
}

.wb-gbp-heading > p:last-child {
    max-width: 700px;
    margin: 22px 0 0;
    color: var(--wb-gbp-copy);
    font-size: 1rem;
    line-height: 1.72;
}

[data-reveal] { opacity: 1; transform: none; }
.wb-gbp.is-reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}
.wb-gbp.is-reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .wb-gbp *, .wb-gbp *::before, .wb-gbp *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}

/* Hero */
.wb-gbp-hero {
    min-height: min(740px, calc(100svh - 72px));
    display: grid;
    align-items: center;
    padding: clamp(108px, 10vw, 142px) 0 clamp(72px, 7vw, 96px);
    border-bottom: 1px solid var(--wb-gbp-border);
    background: #fff;
}

.wb-gbp-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
    gap: clamp(48px, 6vw, 86px);
    align-items: center;
}

.wb-gbp-hero__copy { max-width: 610px; }
.wb-gbp-hero h1 {
    max-width: 590px;
    margin: 0;
    font-size: clamp(3rem, 4.25vw, 4.65rem);
    font-weight: 700;
    letter-spacing: -0.056em;
    line-height: 1;
}

.wb-gbp-hero__lead {
    max-width: 590px;
    margin: 26px 0 0;
    color: var(--wb-gbp-copy);
    font-size: clamp(0.98rem, 1.1vw, 1.1rem);
    line-height: 1.72;
}

.wb-gbp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    margin-top: 31px;
}

.wb-gbp-hero__note {
    max-width: 520px;
    margin: 18px 0 0;
    color: #7b8492;
    font-size: 0.79rem;
    line-height: 1.58;
}

.wb-gbp-hero__visual { min-width: 0; }

.wb-gbp-demo {
    border: 1px solid #d9dee8;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--wb-gbp-shadow);
    overflow: hidden;
}

.wb-gbp-demo::before {
    content: "";
    display: block;
    height: 4px;
    background: var(--wb-gbp-primary);
}

.wb-gbp-demo__top {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--wb-gbp-border);
}

.wb-gbp-demo__mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--wb-gbp-border);
    border-radius: 50%;
    color: var(--wb-gbp-primary);
    font-size: 0.95rem;
    font-weight: 800;
}

.wb-gbp-demo__search {
    min-width: 0;
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 15px;
    border: 1px solid var(--wb-gbp-border);
    border-radius: 20px;
    color: #313846;
    font-size: 0.84rem;
}
.wb-gbp-demo__search svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.wb-gbp-demo__body {
    min-height: 390px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(230px, 0.92fr);
}

.wb-gbp-demo__map {
    position: relative;
    min-height: 390px;
    background:
        linear-gradient(#e8ebf0 1px, transparent 1px),
        linear-gradient(90deg, #e8ebf0 1px, transparent 1px),
        #fafaf8;
    background-size: 54px 54px;
    overflow: hidden;
}
.wb-gbp-demo__map svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: #cfd5df; stroke-width: 8; }
.wb-gbp-demo__map svg path:nth-child(2), .wb-gbp-demo__map svg path:nth-child(4) { stroke-width: 5; }

.wb-gbp-pin {
    position: absolute;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 6px solid #fff;
    border-radius: 50% 50% 50% 0;
    background: var(--wb-gbp-primary);
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.18);
    transform: rotate(-45deg);
}
.wb-gbp-pin i { width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.wb-gbp-pin--one { left: 24%; top: 24%; }
.wb-gbp-pin--two { left: 59%; top: 53%; transform: rotate(-45deg) scale(0.78); opacity: 0.72; }
.wb-gbp-pin--three { left: 72%; top: 18%; transform: rotate(-45deg) scale(0.68); opacity: 0.56; }

.wb-gbp-demo__area {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 8px 11px;
    border: 1px solid var(--wb-gbp-border);
    border-radius: 8px;
    background: rgba(255,255,255,.94);
    color: #586071;
    font-size: 0.68rem;
    font-weight: 700;
}

.wb-gbp-demo__results {
    padding: 22px 18px;
    border-left: 1px solid var(--wb-gbp-border);
    background: #fff;
}

.wb-gbp-demo__label {
    margin: 0 0 14px;
    color: #8a92a0;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.wb-gbp-result-card {
    border: 1px solid var(--wb-gbp-border);
    border-radius: 13px;
    background: #fff;
}
.wb-gbp-result-card.is-featured {
    padding: 16px;
    border-color: rgba(73,106,249,.45);
    box-shadow: 0 12px 26px rgba(17,24,39,.07);
}
.wb-gbp-result-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.wb-gbp-result-card__top small { color: #8b93a1; font-size: .61rem; }
.wb-gbp-result-card__logo {
    width: 34px; height: 34px; display: grid; place-items: center;
    border-radius: 9px; background: var(--wb-gbp-primary); color: #fff; font-size: .65rem; font-weight: 800;
}
.wb-gbp-result-card h3 { margin: 14px 0 8px; font-size: 1rem; line-height: 1.25; }
.wb-gbp-result-card p { margin: 0 0 8px; color: #5e6675; font-size: .72rem; }
.wb-gbp-result-card p span { color: var(--wb-gbp-primary); letter-spacing: .03em; }
.wb-gbp-result-card > small { display: block; margin-top: 5px; color: #727b8a; font-size: .67rem; }

.wb-gbp-result-card--mini {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 11px;
    padding: 11px;
}
.wb-gbp-result-card--mini > span { width: 28px; height: 28px; flex: 0 0 auto; border-radius: 7px; background: #f1f2f5; }
.wb-gbp-result-card--mini b { display: block; font-size: .7rem; }
.wb-gbp-result-card--mini small { display: block; margin-top: 4px; color: #8a92a0; font-size: .61rem; }

.wb-gbp-demo__actions {
    min-height: 62px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--wb-gbp-border);
}
.wb-gbp-demo__actions span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-right: 1px solid var(--wb-gbp-border);
    color: #4e5766;
    font-size: .72rem;
    font-weight: 700;
}
.wb-gbp-demo__actions span:last-child { border-right: 0; }
.wb-gbp-demo__actions svg { width: 16px; fill: none; stroke: var(--wb-gbp-primary); stroke-width: 1.7; }

/* Chapter navigation */
.wb-gbp-chapters {
    position: sticky;
    top: var(--wb-header-offset, 72px);
    z-index: 18;
    border-bottom: 1px solid var(--wb-gbp-border);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
}
.wb-gbp-chapters .wb-gbp__container {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 26px;
}
.wb-gbp-chapters__label {
    flex: 0 0 auto;
    color: #8a92a0;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.wb-gbp-chapters__links {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}
.wb-gbp-chapters__links a {
    position: relative;
    padding: 19px 0;
    color: #5f6877;
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.wb-gbp-chapters__links a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 2px;
    background: var(--wb-gbp-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}
.wb-gbp-chapters__links a:hover,
.wb-gbp-chapters__links a.is-active { color: var(--wb-gbp-heading); }
.wb-gbp-chapters__links a.is-active::after { transform: scaleX(1); }
.wb-gbp-chapters__toggle { display: none; }

/* Role */
.wb-gbp-role-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    border: 1px solid var(--wb-gbp-border);
    border-radius: var(--wb-gbp-radius-lg);
    overflow: hidden;
}
.wb-gbp-role-grid article {
    min-height: 205px;
    padding: 26px;
    border-right: 1px solid var(--wb-gbp-border);
}
.wb-gbp-role-grid article:last-child { border-right: 0; }
.wb-gbp-role-grid article > div,
.wb-gbp-answer-list article > div,
.wb-gbp-review-steps article > div,
.wb-gbp-access-grid__head,
.wb-gbp-factor-grid__title {
    display: flex;
    align-items: center;
    gap: 12px;
}
.wb-gbp-role-grid span,
.wb-gbp-answer-list span,
.wb-gbp-review-steps span,
.wb-gbp-access-grid__head span,
.wb-gbp-factor-grid__title span {
    color: var(--wb-gbp-primary);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
}
.wb-gbp-role-grid h3,
.wb-gbp-answer-list h3,
.wb-gbp-review-steps h3,
.wb-gbp-access-grid h3,
.wb-gbp-factor-grid h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.35;
}
.wb-gbp-role-grid p,
.wb-gbp-answer-list p,
.wb-gbp-review-steps p,
.wb-gbp-access-grid p,
.wb-gbp-factor-grid p {
    margin: 18px 0 0;
    color: var(--wb-gbp-copy);
    font-size: .86rem;
    line-height: 1.7;
}

.wb-gbp-note {
    display: grid;
    grid-template-columns: minmax(220px,.55fr) minmax(0,1fr);
    gap: 34px;
    align-items: center;
    margin-top: 24px;
    padding: 23px 26px;
    border: 1px solid var(--wb-gbp-border);
    border-radius: var(--wb-gbp-radius-md);
}
.wb-gbp-note strong { font-size: .92rem; }
.wb-gbp-note p { margin: 0; color: var(--wb-gbp-copy); font-size: .84rem; line-height: 1.65; }

/* Ranking factors */
.wb-gbp-factor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}
.wb-gbp-factor-grid article {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    padding: 27px;
    border: 1px solid var(--wb-gbp-border);
    border-radius: var(--wb-gbp-radius-md);
}
.wb-gbp-factor-grid article > small {
    display: block;
    margin-top: auto;
    padding-top: 28px;
    color: #858d9b;
    font-size: .68rem;
    line-height: 1.5;
}

.wb-gbp-source-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 24px;
    padding: 20px 22px;
    border: 1px solid var(--wb-gbp-border);
    border-radius: 13px;
}
.wb-gbp-source-line p { max-width: 700px; margin: 0; color: var(--wb-gbp-copy); font-size: .78rem; line-height: 1.62; }
.wb-gbp-source-line a { color: var(--wb-gbp-primary); font-size: .75rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.wb-gbp-source-line__links { display: flex; align-items: center; gap: 18px; }

/* Checker */
.wb-gbp-checker {
    display: grid;
    grid-template-columns: minmax(0,1.28fr) minmax(300px,.72fr);
    border: 1px solid var(--wb-gbp-border);
    border-radius: var(--wb-gbp-radius-lg);
    overflow: hidden;
}
.wb-gbp-checker__items {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
}
.wb-gbp-checker__items label {
    min-height: 142px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 23px;
    border-right: 1px solid var(--wb-gbp-border);
    border-bottom: 1px solid var(--wb-gbp-border);
    cursor: pointer;
}
.wb-gbp-checker__items label:nth-child(2n) { border-right: 0; }
.wb-gbp-checker__items label:nth-last-child(-n+2) { border-bottom: 0; }
.wb-gbp-checker__items input { position: absolute; opacity: 0; pointer-events: none; }
.wb-gbp-checker__box {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    margin-top: 1px;
    border: 1px solid #cdd3dd;
    border-radius: 6px;
    background: #fff;
    transition: background 180ms ease, border-color 180ms ease;
}
.wb-gbp-checker__box::after {
    content: "";
    position: absolute;
    left: 6px; top: 3px;
    width: 6px; height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 180ms ease;
}
.wb-gbp-checker__items input:checked + .wb-gbp-checker__box { border-color: var(--wb-gbp-primary); background: var(--wb-gbp-primary); }
.wb-gbp-checker__items input:checked + .wb-gbp-checker__box::after { transform: rotate(45deg) scale(1); }
.wb-gbp-checker__items input:focus-visible + .wb-gbp-checker__box { outline: 3px solid rgba(73,106,249,.22); outline-offset: 3px; }
.wb-gbp-checker__items strong { display: block; font-size: .88rem; line-height: 1.45; }
.wb-gbp-checker__items small { display: block; margin-top: 7px; color: var(--wb-gbp-copy); font-size: .72rem; line-height: 1.55; }

.wb-gbp-checker__result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    border-left: 1px solid var(--wb-gbp-border);
}
.wb-gbp-checker__score { display: flex; align-items: flex-end; gap: 5px; margin-bottom: 28px; }
.wb-gbp-checker__score strong { color: var(--wb-gbp-primary); font-size: 3.7rem; line-height: .85; letter-spacing: -.05em; }
.wb-gbp-checker__score span { color: #8a92a0; font-size: .85rem; }
.wb-gbp-checker__result h3 { margin: 0; font-size: 1.45rem; line-height: 1.25; }
.wb-gbp-checker__result > p:last-child { margin: 16px 0 0; color: var(--wb-gbp-copy); font-size: .84rem; line-height: 1.7; }

/* Details */
.wb-gbp-details-grid {
    display: grid;
    grid-template-columns: minmax(340px,.75fr) minmax(0,1.25fr);
    gap: 30px;
    align-items: stretch;
}
.wb-gbp-profile-card {
    border: 1px solid var(--wb-gbp-border);
    border-radius: var(--wb-gbp-radius-lg);
    background: #fff;
    overflow: hidden;
}
.wb-gbp-profile-card__cover {
    height: 145px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, transparent 48%, #e5e7eb 49%, #e5e7eb 51%, transparent 52%),
        linear-gradient(45deg, transparent 48%, #e5e7eb 49%, #e5e7eb 51%, transparent 52%),
        #fafaf8;
    background-size: 46px 46px;
}
.wb-gbp-profile-card__cover span { padding: 8px 11px; border: 1px solid var(--wb-gbp-border); border-radius: 8px; background: #fff; color: #737c8b; font-size: .68rem; font-weight: 700; }
.wb-gbp-profile-card__body { padding: 24px; }
.wb-gbp-profile-card__identity { display: flex; align-items: center; gap: 13px; }
.wb-gbp-profile-card__identity > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 11px; background: var(--wb-gbp-primary); color: #fff; font-size: .72rem; font-weight: 800; }
.wb-gbp-profile-card h3 { margin: 0; font-size: 1rem; }
.wb-gbp-profile-card__identity p { margin: 4px 0 0; color: var(--wb-gbp-copy); font-size: .7rem; }
.wb-gbp-profile-card__rating { display: flex; align-items: center; gap: 7px; margin-top: 19px; }
.wb-gbp-profile-card__rating strong { font-size: .86rem; }
.wb-gbp-profile-card__rating span { color: var(--wb-gbp-primary); font-size: .72rem; letter-spacing: .04em; }
.wb-gbp-profile-card__rating small { color: #8a92a0; font-size: .65rem; }
.wb-gbp-profile-card dl { margin: 22px 0 0; }
.wb-gbp-profile-card dl > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; border-top: 1px solid var(--wb-gbp-border); }
.wb-gbp-profile-card dt { color: #4e5766; font-size: .72rem; font-weight: 700; }
.wb-gbp-profile-card dd { margin: 0; color: #858d9b; font-size: .68rem; text-align: right; }

.wb-gbp-answer-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    border: 1px solid var(--wb-gbp-border);
    border-radius: var(--wb-gbp-radius-lg);
    overflow: hidden;
}
.wb-gbp-answer-list article { min-height: 170px; padding: 24px; border-right: 1px solid var(--wb-gbp-border); border-bottom: 1px solid var(--wb-gbp-border); }
.wb-gbp-answer-list article:nth-child(2n) { border-right: 0; }
.wb-gbp-answer-list article:nth-last-child(-n+2) { border-bottom: 0; }
.wb-gbp-answer-list article:last-child { grid-column: 1 / -1; min-height: 145px; border-right: 0; }

.wb-gbp-business-types { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 24px; }
.wb-gbp-business-types article { padding: 24px; border: 1px solid var(--wb-gbp-border); border-radius: var(--wb-gbp-radius-md); }
.wb-gbp-business-types__head { display: flex; align-items: center; gap: 12px; }
.wb-gbp-business-types__head svg { width: 22px; flex: 0 0 auto; fill: none; stroke: var(--wb-gbp-primary); stroke-width: 1.6; }
.wb-gbp-business-types h3 { margin: 0; font-size: 1rem; }
.wb-gbp-business-types p { margin: 15px 0 0; color: var(--wb-gbp-copy); font-size: .82rem; line-height: 1.68; }

/* Reviews */
.wb-gbp-review-layout { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(360px,.96fr); gap: 28px; align-items: stretch; }
.wb-gbp-review-steps { border: 1px solid var(--wb-gbp-border); border-radius: var(--wb-gbp-radius-lg); overflow: hidden; }
.wb-gbp-review-steps article { min-height: 156px; padding: 24px 26px; border-bottom: 1px solid var(--wb-gbp-border); }
.wb-gbp-review-steps article:last-child { border-bottom: 0; }
.wb-gbp-review-example { padding: 27px; border: 1px solid var(--wb-gbp-border); border-radius: var(--wb-gbp-radius-lg); }
.wb-gbp-review-example__customer { margin-top: 24px; padding: 18px; border: 1px solid var(--wb-gbp-border); border-radius: 13px; }
.wb-gbp-review-example__customer > div { display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: center; }
.wb-gbp-review-example__customer > div > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #f2f3f5; color: #626b79; font-size: .7rem; font-weight: 800; }
.wb-gbp-review-example__customer strong { font-size: .78rem; }
.wb-gbp-review-example__customer small { color: var(--wb-gbp-primary); font-size: .65rem; letter-spacing: .04em; }
.wb-gbp-review-example__customer p { margin: 14px 0 0; color: #596270; font-size: .78rem; line-height: 1.64; }
.wb-gbp-review-example__reply { margin: 14px 0 0 32px; padding: 15px 16px; border-left: 2px solid var(--wb-gbp-primary); }
.wb-gbp-review-example__reply strong { font-size: .73rem; }
.wb-gbp-review-example__reply p { margin: 7px 0 0; color: var(--wb-gbp-copy); font-size: .75rem; line-height: 1.62; }
.wb-gbp-review-example > small { display: block; margin-top: 19px; color: #858d9b; font-size: .67rem; line-height: 1.55; }
.wb-gbp-review-rules { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin-top: 22px; border: 1px solid var(--wb-gbp-border); border-radius: 13px; overflow: hidden; }
.wb-gbp-review-rules span { min-height: 64px; display: flex; align-items: center; justify-content: center; padding: 12px 16px; border-right: 1px solid var(--wb-gbp-border); color: #5e6776; font-size: .7rem; font-weight: 700; text-align: center; }
.wb-gbp-review-rules span:last-child { border-right: 0; }

/* NFC review cards */
.wb-gbp-nfc-layout {
    display: grid;
    grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
    gap: 28px;
    align-items: stretch;
}
.wb-gbp-nfc-visual {
    min-height: 455px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 24px;
    padding: 34px;
    border: 1px solid var(--wb-gbp-border);
    border-radius: var(--wb-gbp-radius-lg);
}
.wb-gbp-nfc-card {
    width: min(100%, 350px);
    min-height: 225px;
    display: flex;
    flex-direction: column;
    padding: 27px;
    border: 1px solid #dfe3ea;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(17,24,39,.09);
    transform: rotate(-1.5deg);
}
.wb-gbp-nfc-card__top { display: flex; align-items: center; justify-content: space-between; }
.wb-gbp-nfc-card__brand {
    width: 38px; height: 38px; display: grid; place-items: center;
    border-radius: 11px; background: var(--wb-gbp-primary); color: #fff; font-size: .72rem; font-weight: 800;
}
.wb-gbp-nfc-card__top svg { width: 32px; fill: none; stroke: var(--wb-gbp-primary); stroke-width: 1.7; stroke-linecap: round; }
.wb-gbp-nfc-card > p { margin: 26px 0 0; color: var(--wb-gbp-primary); font-size: .59rem; font-weight: 800; letter-spacing: .13em; }
.wb-gbp-nfc-card h3 { margin: 8px 0 0; font-size: 1.55rem; letter-spacing: -.035em; }
.wb-gbp-nfc-card > small { max-width: 250px; margin-top: 9px; color: var(--wb-gbp-copy); font-size: .72rem; line-height: 1.55; }
.wb-gbp-nfc-card__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 22px; }
.wb-gbp-nfc-card__bottom span { color: #7d8593; font-size: .66rem; font-weight: 700; }
.wb-gbp-nfc-card__qr { width: 52px; height: 52px; fill: var(--wb-gbp-heading); }
.wb-gbp-nfc-flow { display: flex; align-items: center; justify-content: center; gap: 10px; color: #697281; font-size: .67rem; font-weight: 700; }
.wb-gbp-nfc-flow i { width: 28px; height: 1px; background: var(--wb-gbp-border); position: relative; }
.wb-gbp-nfc-flow i::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid #a1a8b3; border-right: 1px solid #a1a8b3; transform: rotate(45deg); }
.wb-gbp-nfc-steps { border: 1px solid var(--wb-gbp-border); border-radius: var(--wb-gbp-radius-lg); overflow: hidden; }
.wb-gbp-nfc-steps article { min-height: 151px; padding: 25px 27px; border-bottom: 1px solid var(--wb-gbp-border); }
.wb-gbp-nfc-steps article:last-child { border-bottom: 0; }
.wb-gbp-nfc-steps article > div { display: flex; align-items: center; gap: 12px; }
.wb-gbp-nfc-steps article > div span { color: var(--wb-gbp-primary); font-size: .68rem; font-weight: 800; letter-spacing: .08em; }
.wb-gbp-nfc-steps h3 { margin: 0; font-size: .98rem; letter-spacing: -.015em; }
.wb-gbp-nfc-steps p { margin: 14px 0 0; color: var(--wb-gbp-copy); font-size: .81rem; line-height: 1.68; }
.wb-gbp-nfc-policy { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin-top: 24px; border: 1px solid var(--wb-gbp-border); border-radius: var(--wb-gbp-radius-lg); overflow: hidden; }
.wb-gbp-nfc-policy article { min-height: 205px; padding: 27px; }
.wb-gbp-nfc-policy article + article { border-left: 1px solid var(--wb-gbp-border); }
.wb-gbp-nfc-policy .wb-gbp__eyebrow { margin-bottom: 13px; }
.wb-gbp-nfc-policy h3 { max-width: 500px; margin: 0; font-size: 1.08rem; line-height: 1.4; letter-spacing: -.018em; }
.wb-gbp-nfc-policy article > p:last-child { margin: 15px 0 0; color: var(--wb-gbp-copy); font-size: .79rem; line-height: 1.67; }
.wb-gbp-nfc-beyond { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 24px; padding: 23px 25px; border: 1px solid var(--wb-gbp-border); border-radius: 15px; }
.wb-gbp-nfc-beyond p { max-width: 700px; margin: 0; color: var(--wb-gbp-copy); font-size: .78rem; line-height: 1.66; }
.wb-gbp-nfc-beyond strong { color: var(--wb-gbp-heading); }
.wb-gbp-nfc-beyond div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.wb-gbp-nfc-beyond span { padding: 8px 10px; border: 1px solid var(--wb-gbp-border); border-radius: 999px; color: #667080; font-size: .65rem; font-weight: 700; white-space: nowrap; }

/* Connection */
.wb-gbp-connection { display: grid; grid-template-columns: minmax(0,1fr) 180px minmax(0,1fr); align-items: center; gap: 24px; }
.wb-gbp-connection article { min-height: 310px; padding: 29px; border: 1px solid var(--wb-gbp-border); border-radius: var(--wb-gbp-radius-lg); }
.wb-gbp-connection h3 { margin: 0; font-size: 1.45rem; line-height: 1.25; }
.wb-gbp-connection ul { margin: 24px 0 0; padding: 0; list-style: none; }
.wb-gbp-connection li { position: relative; padding: 12px 0 12px 20px; border-top: 1px solid var(--wb-gbp-border); color: var(--wb-gbp-copy); font-size: .8rem; }
.wb-gbp-connection li::before { content: ""; position: absolute; left: 0; top: 18px; width: 6px; height: 6px; border-radius: 50%; background: var(--wb-gbp-primary); }
.wb-gbp-connection__bridge { display: flex; flex-direction: column; align-items: center; gap: 13px; color: #7d8593; font-size: .63rem; font-weight: 700; text-align: center; }
.wb-gbp-connection__bridge i { width: 100%; height: 1px; background: var(--wb-gbp-border); position: relative; }
.wb-gbp-connection__bridge i::after { content: ""; position: absolute; right: 0; top: -4px; width: 8px; height: 8px; border-top: 1px solid #aab1bd; border-right: 1px solid #aab1bd; transform: rotate(45deg); }
.wb-gbp-related { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 24px; padding: 20px 22px; border: 1px solid var(--wb-gbp-border); border-radius: 13px; }
.wb-gbp-related p { margin: 0; color: var(--wb-gbp-copy); font-size: .78rem; }
.wb-gbp-related > div { display: flex; gap: 20px; }
.wb-gbp-related a { color: var(--wb-gbp-primary); font-size: .74rem; font-weight: 700; text-decoration: none; }

/* Ownership */
.wb-gbp-access-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.wb-gbp-access-grid article { min-height: 230px; padding: 26px; border: 1px solid var(--wb-gbp-border); border-radius: var(--wb-gbp-radius-md); }
.wb-gbp-help-panel { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: 34px 54px; margin-top: 24px; padding: 30px; border: 1px solid var(--wb-gbp-border); border-radius: var(--wb-gbp-radius-lg); }
.wb-gbp-help-panel h3 { max-width: 500px; margin: 0; font-size: 1.38rem; line-height: 1.32; }
.wb-gbp-help-panel ul { margin: 0; padding: 0; list-style: none; }
.wb-gbp-help-panel li { position: relative; padding: 9px 0 9px 20px; border-bottom: 1px solid var(--wb-gbp-border); color: #5d6675; font-size: .78rem; line-height: 1.5; }
.wb-gbp-help-panel li:last-child { border-bottom: 0; }
.wb-gbp-help-panel li::before { content: ""; position: absolute; left: 0; top: 16px; width: 7px; height: 7px; border-radius: 50%; background: var(--wb-gbp-primary); }
.wb-gbp-help-panel > p { grid-column: 1 / -1; margin: 0; padding-top: 20px; border-top: 1px solid var(--wb-gbp-border); color: var(--wb-gbp-copy); font-size: .78rem; line-height: 1.65; }

/* FAQ */
.wb-gbp-section--faq { padding-bottom: clamp(92px, 9vw, 140px); }
.wb-gbp-faq { max-width: 900px; border-top: 1px solid var(--wb-gbp-border); }
.wb-gbp-faq details { border-bottom: 1px solid var(--wb-gbp-border); }
.wb-gbp-faq summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; list-style: none; cursor: pointer; font-size: .95rem; font-weight: 700; }
.wb-gbp-faq summary::-webkit-details-marker { display: none; }
.wb-gbp-faq summary span { color: var(--wb-gbp-primary); font-size: 1.3rem; font-weight: 400; transition: transform 180ms ease; }
.wb-gbp-faq details[open] summary span { transform: rotate(45deg); }
.wb-gbp-faq details p { max-width: 760px; margin: -4px 0 24px; color: var(--wb-gbp-copy); font-size: .84rem; line-height: 1.72; }

@media (max-width: 1120px) {
    .wb-gbp-hero__grid { grid-template-columns: minmax(0,.9fr) minmax(450px,1.1fr); gap: 40px; }
    .wb-gbp-hero h1 { font-size: clamp(2.85rem,4.7vw,4rem); }
    .wb-gbp-chapters__links { gap: 16px; }
    .wb-gbp-chapters__links a { font-size: .7rem; }
    .wb-gbp-role-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .wb-gbp-role-grid article { border-bottom: 1px solid var(--wb-gbp-border); }
    .wb-gbp-role-grid article:nth-child(2n) { border-right: 0; }
    .wb-gbp-role-grid article:nth-last-child(-n+2) { border-bottom: 0; }
    .wb-gbp-connection { grid-template-columns: minmax(0,1fr) 130px minmax(0,1fr); }
}

@media (max-width: 920px) {
    .wb-gbp-hero { min-height: auto; padding-top: 112px; }
    .wb-gbp-hero__grid { grid-template-columns: 1fr; gap: 52px; }
    .wb-gbp-hero__copy { max-width: 700px; }
    .wb-gbp-hero h1 { max-width: 680px; }
    .wb-gbp-hero__visual { max-width: 760px; width: 100%; }
    .wb-gbp-chapters .wb-gbp__container { min-height: 54px; }
    .wb-gbp-chapters__label { display: none; }
    .wb-gbp-chapters__links { width: 100%; justify-content: space-between; gap: 12px; }
    .wb-gbp-chapters__links a { padding-block: 17px; }
    .wb-gbp-factor-grid { grid-template-columns: 1fr; }
    .wb-gbp-factor-grid article { min-height: 0; }
    .wb-gbp-checker { grid-template-columns: 1fr; }
    .wb-gbp-checker__result { border-left: 0; border-top: 1px solid var(--wb-gbp-border); }
    .wb-gbp-details-grid { grid-template-columns: 1fr; }
    .wb-gbp-profile-card { max-width: 520px; }
    .wb-gbp-review-layout { grid-template-columns: 1fr; }
    .wb-gbp-nfc-layout { grid-template-columns: 1fr; }
    .wb-gbp-nfc-visual { min-height: 420px; }
    .wb-gbp-review-rules { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .wb-gbp-review-rules span { border-bottom: 1px solid var(--wb-gbp-border); }
    .wb-gbp-review-rules span:nth-child(2n) { border-right: 0; }
    .wb-gbp-review-rules span:nth-last-child(-n+2) { border-bottom: 0; }
    .wb-gbp-connection { grid-template-columns: 1fr; }
    .wb-gbp-connection__bridge { flex-direction: row; justify-content: center; }
    .wb-gbp-connection__bridge i { width: 70px; }
    .wb-gbp-access-grid { grid-template-columns: 1fr; }
    .wb-gbp-access-grid article { min-height: 0; }
}

@media (max-width: 720px) {
    :root { --wb-gbp-gutter: 20px; }
    .wb-gbp-section { padding: 66px 0; }
    .wb-gbp-heading { margin-bottom: 34px; }
    .wb-gbp-heading h2 { font-size: clamp(2rem, 9.6vw, 2.75rem); line-height: 1.07; }
    .wb-gbp-heading > p:last-child { margin-top: 18px; font-size: .92rem; line-height: 1.7; }
    .wb-gbp__eyebrow { margin-bottom: 13px; font-size: .66rem; }

    .wb-gbp-hero { padding: 96px 0 64px; }
    .wb-gbp-hero__grid { gap: 40px; }
    .wb-gbp-hero h1 { font-size: clamp(2.65rem, 12.2vw, 3.55rem); line-height: 1.01; }
    .wb-gbp-hero__lead { margin-top: 21px; font-size: .94rem; }
    .wb-gbp-hero__actions { align-items: stretch; gap: 16px; margin-top: 26px; }
    .wb-gbp-hero__actions .wb-gbp__button--primary { width: 100%; }
    .wb-gbp-hero__actions .wb-gbp__button--text { min-height: 38px; align-self: center; }
    .wb-gbp-demo__top { min-height: 58px; padding: 10px 12px; }
    .wb-gbp-demo__mark { width: 30px; height: 30px; }
    .wb-gbp-demo__search { height: 36px; font-size: .74rem; }
    .wb-gbp-demo__body { min-height: 0; grid-template-columns: 1fr; }
    .wb-gbp-demo__map { min-height: 220px; }
    .wb-gbp-demo__results { padding: 16px; border-left: 0; border-top: 1px solid var(--wb-gbp-border); }
    .wb-gbp-result-card--mini { display: none; }
    .wb-gbp-demo__actions { min-height: 54px; }

    .wb-gbp-chapters { top: var(--wb-header-offset-mobile, 64px); }
    .wb-gbp-chapters .wb-gbp__container { position: relative; min-height: 52px; display: block; }
    .wb-gbp-chapters__toggle {
        width: 100%; min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
        padding: 0; border: 0; background: transparent; color: var(--wb-gbp-heading); font-size: .76rem; font-weight: 700; cursor: pointer;
    }
    .wb-gbp-chapters__toggle::before { content: "PAGE GUIDE"; color: #8a92a0; font-size: .61rem; letter-spacing: .12em; }
    .wb-gbp-chapters__toggle > span { margin-left: auto; }
    .wb-gbp-chapters__toggle svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform 180ms ease; }
    .wb-gbp-chapters__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
    .wb-gbp-chapters__links {
        position: absolute; left: 0; right: 0; top: 100%; display: none; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0;
        padding: 10px 20px 16px; border: 1px solid var(--wb-gbp-border); border-top: 0; background: #fff; box-shadow: 0 18px 35px rgba(17,24,39,.08);
    }
    .wb-gbp-chapters__links.is-open { display: grid; }
    .wb-gbp-chapters__links a { padding: 11px 8px; border-bottom: 1px solid #f0f1f3; font-size: .69rem; white-space: normal; }
    .wb-gbp-chapters__links a::after { display: none; }

    .wb-gbp-role-grid { grid-template-columns: 1fr; }
    .wb-gbp-role-grid article { min-height: 0; padding: 22px; border-right: 0; border-bottom: 1px solid var(--wb-gbp-border) !important; }
    .wb-gbp-role-grid article:last-child { border-bottom: 0 !important; }
    .wb-gbp-note { grid-template-columns: 1fr; gap: 9px; padding: 20px; }
    .wb-gbp-factor-grid article { padding: 23px; }
    .wb-gbp-source-line { align-items: flex-start; flex-direction: column; gap: 14px; padding: 18px; }
    .wb-gbp-source-line a { white-space: normal; }
    .wb-gbp-source-line__links { align-items: flex-start; flex-direction: column; gap: 10px; }

    .wb-gbp-checker__items { grid-template-columns: 1fr; }
    .wb-gbp-checker__items label { min-height: 0; padding: 20px; border-right: 0 !important; border-bottom: 1px solid var(--wb-gbp-border) !important; }
    .wb-gbp-checker__items label:last-child { border-bottom: 0 !important; }
    .wb-gbp-checker__result { padding: 26px 22px; }
    .wb-gbp-checker__score { margin-bottom: 22px; }
    .wb-gbp-checker__score strong { font-size: 3.2rem; }

    .wb-gbp-answer-list { grid-template-columns: 1fr; }
    .wb-gbp-answer-list article,
    .wb-gbp-answer-list article:last-child { grid-column: auto; min-height: 0; padding: 21px; border-right: 0; border-bottom: 1px solid var(--wb-gbp-border) !important; }
    .wb-gbp-answer-list article:last-child { border-bottom: 0 !important; }
    .wb-gbp-business-types { grid-template-columns: 1fr; }
    .wb-gbp-business-types article { padding: 21px; }

    .wb-gbp-review-steps article { min-height: 0; padding: 21px; }
    .wb-gbp-review-example { padding: 22px; }
    .wb-gbp-review-example__reply { margin-left: 14px; }
    .wb-gbp-review-rules { grid-template-columns: 1fr; }
    .wb-gbp-review-rules span { min-height: 54px; border-right: 0 !important; border-bottom: 1px solid var(--wb-gbp-border) !important; }
    .wb-gbp-review-rules span:last-child { border-bottom: 0 !important; }
    .wb-gbp-nfc-visual { min-height: 0; padding: 24px 20px; }
    .wb-gbp-nfc-card { min-height: 218px; padding: 23px; transform: none; }
    .wb-gbp-nfc-flow { width: 100%; gap: 7px; font-size: .61rem; }
    .wb-gbp-nfc-flow i { flex: 1 1 20px; max-width: 26px; }
    .wb-gbp-nfc-steps article { min-height: 0; padding: 21px; }
    .wb-gbp-nfc-policy { grid-template-columns: 1fr; }
    .wb-gbp-nfc-policy article { min-height: 0; padding: 22px; }
    .wb-gbp-nfc-policy article + article { border-left: 0; border-top: 1px solid var(--wb-gbp-border); }
    .wb-gbp-nfc-beyond { align-items: flex-start; flex-direction: column; gap: 18px; padding: 20px; }
    .wb-gbp-nfc-beyond div { justify-content: flex-start; }

    .wb-gbp-connection article { min-height: 0; padding: 23px; }
    .wb-gbp-connection__bridge { display: grid; grid-template-columns: 1fr; gap: 8px; }
    .wb-gbp-connection__bridge i { width: 1px; height: 36px; margin-inline: auto; }
    .wb-gbp-connection__bridge i::after { right: -4px; top: auto; bottom: 0; transform: rotate(135deg); }
    .wb-gbp-related { align-items: flex-start; flex-direction: column; padding: 18px; }
    .wb-gbp-related > div { flex-direction: column; gap: 12px; }

    .wb-gbp-access-grid article { padding: 22px; }
    .wb-gbp-help-panel { grid-template-columns: 1fr; gap: 24px; padding: 23px; }
    .wb-gbp-help-panel > p { grid-column: auto; }
    .wb-gbp-faq summary { min-height: 70px; font-size: .86rem; line-height: 1.45; }
}
