/* Delivery Platform (hub + sub pages under /delivery-platform/) — shared stylesheet. Section classes are .bb-* (from the first single-page draft) plus .dp-* additions. */
body {
    overflow-x: hidden;
}

.bb {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --bb-blue: #0478CC;
    --bb-blue-2: #4AA6E8;
    --bb-blue-3: #D9EBF7;
    --bb-green: #13CE8B;
    --bb-green-light: #D0F5E8;
    --bb-orange: #FA884C;
    --bb-orange-light: #FEE7DB;
    --bb-dark: #0B2239;
    --bb-gray: #5A6A80;
    --bb-ink: #2D3748;
}

.bb-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 38px;
}

.bb-section {
    padding: 80px 0;
}

.bb-section.gray {
    background: #F7FAFC;
}

.bb-h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--bb-ink);
    margin: 0 0 14px 0;
}

.bb-h2 .accent {
    color: var(--bb-blue);
}

.bb-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--bb-gray);
    margin: 0 0 40px 0;
    max-width: 820px;
}

.bb-center {
    text-align: center;
}

.bb-center .bb-lead {
    margin-left: auto;
    margin-right: auto;
}

.bb-source {
    font-size: 13px;
    color: #A0AEC0;
    margin: 30px 0 0 0;
}

/* ---------- Hero ---------- */
.boat-builders-hero {
    position: relative;
    width: 100%;
    min-height: 440px;
    overflow: hidden;
    background: #CBD5E0;
    isolation: isolate; /* own stacking context: the z-indexes below cannot be beaten by page-level layers */
}

.boat-builders-hero-video {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
    object-fit: cover;
}

.boat-builders-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 120, 204, 0.45);
}

.boat-builders-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 38px 110px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    color: #ffffff;
}

.boat-builders-hero h1 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 16px 0;
    line-height: 1.05;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.boat-builders-hero .hero-tagline {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 18px 0;
    line-height: 1.35;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.boat-builders-hero .hero-sub {
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
    color: #E8F3FB;
}

.boat-builders-hero .hero-phone {
    justify-self: center;
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
    /* The source image is a phone cut straight across at the bottom. Anchor it to the bottom of the
       hero and cancel the content's bottom padding so the cut lands on the hero's bottom edge,
       under the white of the wave (the wave sits above the content, z-index 3). */
    align-self: end;
    margin-bottom: -240px; /* deeper tuck = shorter hero; the hidden part is the phone's lower third */
}

.boat-builders-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    /* Above the content (z 1) on purpose: the wave must mask the bottom of the phone. The two used
       to share z-index 1, leaving paint order to the browser — Safari drew the phone over the wave. */
    z-index: 3;
    pointer-events: none;
}

.boat-builders-hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    /* The shared wave path is drawn top-down (white fills ABOVE the curve). Every hero on the site
       flips it so the white sits at the bottom and masks the hero edge. Dropping this line puts a
       white curve with a blue band under it INSIDE the hero — the recurring "new page" bug. */
    transform: scale(-1, -1); /* also mirrored left-right: puts the tall part of the wave under the phone */
}

.boat-builders-hero-wave .shape-fill {
    fill: #FFFFFF;
}

/* ---------- Survey stats ---------- */
.bb-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.bb-stat {
    text-align: center;
}

.bb-stat .stat-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--bb-gray);
    margin: 0 0 18px 0;
    min-height: 52px;
    line-height: 1.3;
}

.bb-ring {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 22px;
}

.bb-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.bb-ring .track {
    fill: none;
    stroke: var(--bb-orange-light);
    stroke-width: 16;
}

.bb-ring .value {
    fill: none;
    stroke: var(--bb-blue);
    stroke-width: 16;
    stroke-linecap: butt;
}

.bb-ring .num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    color: var(--bb-ink);
}

.bb-stat p {
    font-size: 15px;
    line-height: 1.55;
    color: #4A5568;
    margin: 0;
}

/* ---------- Challenges ---------- */
.bb-ever {
    font-size: 44px;
    font-weight: 800;
    color: var(--bb-orange);
    letter-spacing: 1px;
    margin: 30px 0 30px 0;
}

.bb-bubbles {
    background: linear-gradient(160deg, var(--bb-blue) 0%, #0B5BA8 100%);
    border-radius: 24px;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.bb-bubble {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--bb-blue-2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bb-results {
    margin-top: 60px;
}

.bb-results h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--bb-ink);
    margin: 0 0 22px 0;
}

.bb-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.bb-pills li {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    background: var(--bb-orange-light);
    color: #9C3D12;
}

.bb-pills li:nth-child(3n+2) {
    background: #FFDEE0;
    color: #A81E27;
}

.bb-pills li:nth-child(3n) {
    background: #EDF2F7;
    color: var(--bb-gray);
}

/* ---------- Introducing / pillars ---------- */
.bb-intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

.bb-pillars {
    list-style: none;
    margin: 40px 0 0 0;
    padding: 0;
}

.bb-pillar {
    position: relative;
    padding: 0 0 36px 64px;
}

.bb-pillar:last-child {
    padding-bottom: 0;
}

.bb-pillar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bb-blue);
    box-shadow: 0 0 0 5px #ffffff, 0 0 0 7px var(--bb-blue-3);
}

.bb-pillar:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 48px;
    bottom: 0;
    width: 2px;
    background: #E2E8F0;
}

.bb-pillar.deliver::before {
    background: var(--bb-green);
    box-shadow: 0 0 0 5px #ffffff, 0 0 0 7px var(--bb-green-light);
}

.bb-pillar.connect::before {
    background: var(--bb-orange);
    box-shadow: 0 0 0 5px #ffffff, 0 0 0 7px var(--bb-orange-light);
}

.bb-pillar h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--bb-blue);
}

.bb-pillar.deliver h3 {
    color: #0FA771;
}

.bb-pillar.connect h3 {
    color: #E86A2A;
}

.bb-pillar p {
    font-size: 16px;
    line-height: 1.65;
    color: #4A5568;
    margin: 0;
}

.bb-intro-side {
    text-align: center;
}

.bb-intro-side img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

.bb-words {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    text-align: left;
    display: inline-block;
}

.bb-words li {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 0 6px 52px;
    position: relative;
    color: var(--bb-blue);
}

.bb-words li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 4px #F7FAFC, 0 0 0 6px currentColor;
}

.bb-words li.deliver { color: var(--bb-green); }
.bb-words li.connect { color: var(--bb-orange); }

/* ---------- Pillar bands ---------- */
.bb-band {
    padding: 90px 38px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.bb-band.build { background: var(--bb-blue); }
.bb-band.deliver { background: var(--bb-green); }
.bb-band.connect { background: var(--bb-orange); }

.bb-band::before,
.bb-band::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.bb-band::before {
    width: 140px;
    height: 140px;
    top: -40px;
    left: 8%;
}

.bb-band::after {
    width: 90px;
    height: 90px;
    bottom: -20px;
    right: 10%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.bb-band h2 {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    line-height: 1;
}

.bb-band p {
    font-size: 26px;
    font-weight: 600;
    margin: 0;
}

.bb-band .band-rule {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.85);
    margin: 28px auto 0;
    border-radius: 2px;
}

/* ---------- Feature blocks ---------- */
.bb-feature {
    padding: 70px 0;
}

.bb-feature:nth-child(even) {
    background: #F7FAFC;
}

.bb-feature .bb-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bb-feature.flip .bb-wrap > .feature-media {
    order: 2;
}

.feature-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-media img {
    max-width: 100%;
    height: auto;
    max-height: 560px;
    filter: drop-shadow(0 16px 32px rgba(11, 34, 57, 0.18));
}

.feature-media.pair {
    position: relative;
    gap: 0;
}

.feature-media.pair img {
    max-height: 500px;
    width: 46%;
}

.feature-media.pair img:last-child {
    margin-left: -6%;
    margin-top: 60px;
}

.feature-text .kicker {
    display: block;
    font-size: 15px;
    color: var(--bb-gray);
    margin: 0 0 6px 0;
}

.feature-text h3 {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--bb-ink);
    margin: 0 0 14px 0;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--bb-blue-3);
}

.feature-text .eyebrow {
    display: block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--bb-blue);
    margin: 18px 0 12px 0;
}

.feature-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4A5568;
    margin: 0 0 14px 0;
}

.feature-text .features-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #A0AEC0;
    margin: 22px 0 10px 0;
}

.feature-list {
    list-style: none;
    counter-reset: feat;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
}

.feature-list.one-col {
    grid-template-columns: 1fr;
}

.feature-list.compact {
    gap: 8px 28px;
}

.feature-list li {
    counter-increment: feat;
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    line-height: 1.55;
    color: #4A5568;
}

.feature-list li::before {
    content: counter(feat) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--bb-orange);
}

.feature-list li strong {
    display: block;
    color: var(--bb-ink);
    font-size: 16px;
}

.feature-list.compact li strong {
    display: inline;
}

.feature-text .more {
    display: inline-block;
    margin-top: 18px;
    color: var(--bb-blue);
    font-weight: 600;
    text-decoration: none;
}

.feature-text .more:hover {
    text-decoration: underline;
}

.feature-text .fineprint {
    font-size: 11px;
    color: #A0AEC0;
    margin-top: 16px;
}

/* ---------- Setup steps ---------- */
.bb-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 50px;
    position: relative;
}

.bb-steps::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 54px;
    height: 4px;
    background: #CBD5E0;
    border-radius: 2px;
}

.bb-step {
    text-align: center;
    position: relative;
}

.bb-step .step-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--bb-blue);
    margin: 0 0 16px 0;
}

.bb-step .step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bb-blue);
    margin: 0 auto 22px;
    box-shadow: 0 0 0 5px #F7FAFC, 0 0 0 7px var(--bb-blue-3);
    position: relative;
}

.bb-step h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--bb-ink);
    margin: 0 0 10px 0;
    line-height: 1.25;
}

.bb-step p {
    font-size: 14px;
    line-height: 1.55;
    color: #4A5568;
    margin: 0;
}

/* ---------- Results & benefits ---------- */
.bb-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.bb-benefit {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-top: 4px solid var(--bb-blue);
    border-radius: 10px;
    padding: 26px 26px 24px;
}

.bb-benefit:nth-child(2) { border-top-color: var(--bb-green); }
.bb-benefit:nth-child(3) { border-top-color: var(--bb-orange); }
.bb-benefit:nth-child(4) { border-top-color: #8D7EFB; }
.bb-benefit:nth-child(5) { border-top-color: #F2B339; }

.bb-benefit h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--bb-blue);
    margin: 0 0 8px 0;
}

.bb-benefit p {
    font-size: 15px;
    line-height: 1.6;
    color: #4A5568;
    margin: 0;
}

/* ---------- Community / reviews ---------- */
.bb-community {
    background: var(--bb-dark);
    color: #ffffff;
}

.bb-community .bb-h2 {
    color: #ffffff;
}

.bb-community .bb-lead {
    color: #B8C7D9;
}

.bb-community-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.bb-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bb-reviews img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.bb-count {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.bb-count .launched {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: #B8C7D9;
}

.bb-count .approaching {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.bb-count .big {
    font-size: 82px;
    font-weight: 800;
    line-height: 1;
    margin: 8px 0;
    color: #ffffff;
    letter-spacing: -1px;
}

.bb-count .members {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .bb-wrap { padding: 0 20px; }
    .bb-section { padding: 50px 0; }
    .bb-h2 { font-size: 28px; }
    .bb-lead { font-size: 16px; }

    .boat-builders-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 20px 100px;
        gap: 30px;
    }
    .boat-builders-hero h1 { font-size: 40px; }
    .boat-builders-hero .hero-tagline { font-size: 20px; }
    .boat-builders-hero .hero-sub { margin: 0 auto; }
    .boat-builders-hero .hero-phone { max-width: 290px; margin-bottom: -110px; }

    .bb-stats { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
    .bb-stat .stat-label { min-height: 0; font-size: 18px; }
    .bb-ring { width: 150px; height: 150px; }
    .bb-ring .num { font-size: 34px; }

    .bb-ever { font-size: 32px; }
    .bb-bubbles { grid-template-columns: repeat(2, 1fr); padding: 30px 20px; gap: 16px; }
    .bb-bubble { font-size: 13px; padding: 14px; }
    .bb-results h3 { font-size: 24px; }

    .bb-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .bb-intro-side img { max-width: 240px; }
    .bb-words li { font-size: 28px; }

    .bb-band { padding: 60px 20px; }
    .bb-band h2 { font-size: 48px; }
    .bb-band p { font-size: 20px; }

    .bb-feature { padding: 50px 0; }
    .bb-feature .bb-wrap { grid-template-columns: 1fr; gap: 30px; }
    .bb-feature.flip .bb-wrap > .feature-media { order: 0; }
    .feature-media img { max-height: 420px; }
    .feature-text h3 { font-size: 28px; }
    .feature-list { grid-template-columns: 1fr; }

    .bb-steps { grid-template-columns: 1fr; gap: 30px; }
    .bb-steps::before { display: none; }
    .bb-step .step-dot { margin-bottom: 14px; }

    .bb-benefits { grid-template-columns: 1fr; }

    .bb-community-grid { grid-template-columns: 1fr; }
    .bb-reviews { grid-template-columns: repeat(2, 1fr); }
    .bb-count .big { font-size: 64px; }
}

@media (max-width: 480px) {
    .bb-stats { grid-template-columns: 1fr; }
    .bb-reviews { grid-template-columns: 1fr; }
}

/* ================= hub + sub-page additions ================= */

/* Section nav (under every hero) */
.dp-nav {
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
    position: sticky;
    top: 0;
    z-index: 20;
    margin-top: 28px; /* breathing room under the hero wave; irrelevant once the bar is stuck to the top */
}

.dp-nav ul {
    list-style: none;
    margin: 0 auto;
    padding: 0 38px;
    max-width: 1200px;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.dp-nav li {
    flex: 0 0 auto;
}

.dp-nav a {
    display: block;
    padding: 16px 16px 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--bb-gray);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.dp-nav a:hover {
    color: var(--bb-blue);
}

.dp-nav a.current {
    color: var(--bb-blue);
    border-bottom-color: var(--bb-blue);
}

.dp-nav a.current.deliver { color: #0FA771; border-bottom-color: var(--bb-green); }
.dp-nav a.current.connect { color: #E86A2A; border-bottom-color: var(--bb-orange); }
.dp-nav a.current.dark { color: var(--bb-dark); border-bottom-color: var(--bb-dark); }

.dp-nav .dp-nav-home {
    color: var(--bb-ink);
}

/* Sub-page hero: a pillar band that also carries breadcrumb + intro */
.dp-subhero {
    padding: 70px 38px 60px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.dp-subhero.build { background: var(--bb-blue); }
.dp-subhero.deliver { background: var(--bb-green); }
.dp-subhero.connect { background: var(--bb-orange); }
.dp-subhero.dark { background: var(--bb-dark); }

.dp-subhero .crumb {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
    margin: 0 0 18px 0;
}

.dp-subhero .crumb a {
    color: inherit;
    text-decoration: none;
}

.dp-subhero .crumb a:hover {
    text-decoration: underline;
}

.dp-subhero h1 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
    line-height: 1;
}

.dp-subhero .tag {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 18px 0;
}

.dp-subhero .intro {
    font-size: 17px;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.95;
}

.dp-subhero::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    top: -50px;
    left: 6%;
    pointer-events: none;
}

.dp-subhero::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    bottom: -30px;
    right: 8%;
    pointer-events: none;
}

/* Hub: pillar cards */
.dp-pillar-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 46px;
}

.dp-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 30px 28px 26px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(11, 34, 57, 0.06);
    border-top: 6px solid var(--bb-blue);
}

.dp-card.deliver { border-top-color: var(--bb-green); }
.dp-card.connect { border-top-color: var(--bb-orange); }

.dp-card .word {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--bb-blue);
    margin: 0 0 2px 0;
}

.dp-card.deliver .word { color: #0FA771; }
.dp-card.connect .word { color: #E86A2A; }

.dp-card .tag {
    font-size: 17px;
    font-weight: 700;
    color: var(--bb-ink);
    margin: 0 0 14px 0;
}

.dp-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #4A5568;
    margin: 0 0 16px 0;
}

.dp-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    flex: 1;
}

.dp-card li {
    position: relative;
    padding: 5px 0 5px 22px;
    font-size: 15px;
    color: var(--bb-ink);
    font-weight: 600;
}

.dp-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bb-blue);
}

.dp-card.deliver li::before { background: var(--bb-green); }
.dp-card.connect li::before { background: var(--bb-orange); }

.dp-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 12px 22px;
    border-radius: 6px;
    background: var(--bb-blue);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dp-btn:hover { background: #0B5BA8; color: #ffffff; }
.dp-btn.deliver { background: var(--bb-green); }
.dp-btn.deliver:hover { background: #0FA771; }
.dp-btn.connect { background: var(--bb-orange); }
.dp-btn.connect:hover { background: #E86A2A; }
.dp-btn.ghost {
    background: transparent;
    color: var(--bb-blue);
    border: 2px solid var(--bb-blue);
}
.dp-btn.ghost:hover { background: var(--bb-blue-3); }

/* Hub: compact stats row */
.bb-stats.compact {
    margin-top: 36px;
    gap: 20px;
}

.bb-stats.compact .bb-ring {
    width: 130px;
    height: 130px;
    margin-bottom: 14px;
}

.bb-stats.compact .bb-ring .num { font-size: 30px; }
.bb-stats.compact .stat-label { font-size: 17px; min-height: 0; margin-bottom: 12px; }
.bb-stats.compact p { font-size: 14px; }

.dp-more {
    display: inline-block;
    margin-top: 30px;
    color: var(--bb-blue);
    font-weight: 700;
    text-decoration: none;
}

.dp-more:hover { text-decoration: underline; }

/* Hub: compact benefits (5 across) */
.bb-benefits.compact {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.bb-benefits.compact .bb-benefit {
    padding: 20px 18px 18px;
}

.bb-benefits.compact .bb-benefit h3 { font-size: 16px; }
.bb-benefits.compact .bb-benefit p { font-size: 14px; }

/* Hub: compact community strip */
.dp-community-compact {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.dp-community-compact .bb-reviews {
    grid-template-columns: repeat(3, 1fr);
}

/* Prev / next between sub pages */
.dp-pn {
    background: #F7FAFC;
    border-top: 1px solid #E2E8F0;
    padding: 34px 0;
}

.dp-pn .bb-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.dp-pn a {
    text-decoration: none;
    color: var(--bb-ink);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dp-pn a span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #A0AEC0;
}

.dp-pn a:hover { color: var(--bb-blue); }
.dp-pn a.next { text-align: right; margin-left: auto; }

@media (max-width: 992px) {
    .dp-nav { margin-top: 16px; }
    .dp-nav ul { padding: 0 12px; }
    .dp-nav a { padding: 13px 12px 11px; font-size: 13px; }
    .dp-subhero { padding: 50px 20px 44px; }
    .dp-subhero h1 { font-size: 42px; }
    .dp-subhero .tag { font-size: 19px; }
    .dp-pillar-cards { grid-template-columns: 1fr; }
    .bb-stats.compact { grid-template-columns: repeat(2, 1fr); }
    .bb-benefits.compact { grid-template-columns: 1fr 1fr; }
    .dp-community-compact { grid-template-columns: 1fr; }
    .dp-community-compact .bb-reviews { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .bb-benefits.compact { grid-template-columns: 1fr; }
}
