/* ============================================================
   AR7 — INNER PAGE HERO (shared across Brand Partners,
   Global Network, Contact)
   Same background, same size, same left-aligned layout
   ============================================================ */

.ar7-page-hero {
    position: relative;
    overflow: visible;
    min-height: unset;
    display: flex;
    align-items: center;
    background: linear-gradient(
        135deg,
        var(--ar7-navy-900) 0%,
        var(--ar7-navy-800) 30%,
        var(--ar7-navy-700) 60%,
        var(--ar7-navy-600) 100%
    );
}

/* Decorative SVG pattern removed for brand page — uses overlay div instead */

/* Bottom fog handled by brand-specific override below */
.ar7-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.ar7-page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 250px var(--space-8) var(--space-8);
    width: 100%;
}

.ar7-page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: var(--space-6);
    letter-spacing: 0.02em;
}

.ar7-page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition-fast);
}
.ar7-page-hero__breadcrumb a:hover {
    color: var(--ar7-teal-300);
}

.ar7-page-hero__breadcrumb-sep {
    color: rgba(255, 255, 255, 0.2);
}

.ar7-page-hero__h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--ar7-white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-5);
    max-width: 520px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.ar7-page-hero__h1 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    color: var(--ar7-teal-400);
    -webkit-text-fill-color: var(--ar7-teal-400);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.ar7-page-hero__sub {
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    letter-spacing: 0.02em;
    max-width: 520px;
    margin-bottom: var(--space-8);
}

.ar7-page-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
}

/* Pill — exact home hero pill */
.ar7-page-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    width: fit-content;
}

.ar7-page-hero__pill-text {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
}

/* Primary teal button — exact home hero button */
.ar7-page-hero__btn-p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    color: var(--ar7-white);
    background: linear-gradient(135deg, var(--ar7-teal-500), var(--ar7-teal-400));
    padding: 16px 40px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(14, 165, 160, 0.3);
    white-space: nowrap;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1),
                background 250ms ease;
}
.ar7-page-hero__btn-p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 500ms ease;
}
.ar7-page-hero__btn-p:hover::before { left: 100%; }
.ar7-page-hero__btn-p:hover {
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, var(--ar7-teal-400), var(--ar7-teal-300));
    box-shadow:
        0 10px 40px rgba(14, 165, 160, 0.45),
        0 0 20px rgba(14, 165, 160, 0.2),
        0 0 0 1px rgba(14, 165, 160, 0.3);
}
.ar7-page-hero__btn-p:active {
    transform: translateY(0) scale(1);
    box-shadow: none;
}

/* Ghost/outline secondary button */
.ar7-page-hero__btn-s {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.ar7-page-hero__btn-s:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--ar7-white);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Trust line under buttons */
.ar7-page-hero__trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: var(--space-5);
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.01em;
}

.ar7-page-hero__trust span::before {
    content: '✓ ';
    color: var(--ar7-teal-400);
}

/* Animation */
.ar7-page-hero__inner {
    animation: ar7-fadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 150ms both;
}

@keyframes ar7-fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 639px) {
    /* Section — ensure it contains the tall image */
    .ar7-page-hero {
        min-height: 600px;
    }

    /* Image — taller, cropped left like home */
    .ar7-page-hero__bg-img {
        object-fit: cover !important;
        object-position: 25% center !important;
        height: 600px !important;
        width: 100% !important;
        min-height: 600px !important;
    }

    /* Overlay — stronger on left for text readability */
    .ar7-page-hero__overlay {
        background:
            linear-gradient(
                to right,
                rgba(4, 18, 32, 0.85) 0%,
                rgba(4, 18, 32, 0.55) 55%,
                rgba(4, 18, 32, 0.1) 100%
            ),
            linear-gradient(
                to bottom,
                rgba(4, 18, 32, 0.3) 0%,
                transparent 60%
            ) !important;
    }

    /* Bottom fog to F2F3EE */
    .ar7-page-hero::after {
        height: 28% !important;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(242, 243, 238, 0.5) 50%,
            rgba(242, 243, 238, 0.9) 80%,
            #F2F3EE 100%
        ) !important;
    }

    /* Content — pushed down, single column, centred */
    .ar7-page-hero--brand .ar7-page-hero__inner {
        grid-template-columns: 1fr !important;
        padding: 160px var(--space-5) 60px !important;
        gap: 0 !important;
        justify-items: center !important;
        text-align: center !important;
    }

    .ar7-page-hero__content {
        align-items: center !important;
        text-align: center !important;
    }

    .ar7-page-hero__btns {
        justify-content: center !important;
        width: 100% !important;
    }

    /* Hide right visual on mobile */
    .bp-hero-visual {
        display: none !important;
    }

    /* Pill — compact on mobile */
    .ar7-page-hero__pill {
        padding: 5px 14px !important;
        margin-bottom: var(--space-3) !important;
    }
    .ar7-page-hero__pill-text {
        font-size: 10px !important;
        letter-spacing: 0.03em !important;
    }

    /* H1 smaller */
    .ar7-page-hero__h1 {
        font-size: clamp(28px, 8vw, 38px) !important;
        max-width: 100% !important;
    }

    /* Sub text */
    .ar7-page-hero__sub {
        font-size: 14px !important;
        max-width: 100% !important;
    }

    /* Button — auto width, centred */
    .ar7-page-hero__btn-p,
    .ar7-page-hero__btn-s {
        width: auto;
        justify-content: center;
        padding: 12px 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar7-page-hero__inner { animation: none; }
}

/* ============================================================
   BRAND PARTNERS HERO — Background image, no overlay, #F2F3EE fog
   Image is already dark — no extra overlay needed.
   Section grows to full image height.
   Content is left-aligned in a single column.
   ============================================================ */

/* Section wraps image naturally — no fixed height, no background gradient */
.ar7-page-hero {
    display: block;
    padding: 0;
    background: none;
    overflow: visible;
    position: relative;
}

/* Overlay div — exact same radial gradient as home hero */
.ar7-page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(
            ellipse 55% 65% at 25% 45%,
            rgba(4, 18, 32, 0.75) 0%,
            rgba(4, 18, 32, 0.45) 40%,
            rgba(4, 18, 32, 0.15) 70%,
            transparent 100%
        );
    pointer-events: none;
}

/* Image — full width, natural height, zero compression */
.ar7-page-hero__bg-img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    object-fit: cover;
}

/* Bottom fog — reduced, tight fade into section below */
.ar7-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, #F2F3EE 100%);
    z-index: 2;
    pointer-events: none;
}




/* ============================================================
   AR7 — BRAND PARTNERS PAGE
   ============================================================ */

/* ── PROBLEM SECTION ───────────────────────────────────── */
.bp-problem {
    background: #F2F3EE;
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
}

@media (max-width: 639px) {
    .bp-problem {
        margin-top: 0;
    }
}

.bp-problem::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.035) 7px, transparent 7px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

.bp-problem__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .bp-problem__inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

/* Pill — standard light bg pill (same as home about/why/how) */
.bp-problem__pill {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 115, 119, 0.06);
    border: 1px solid rgba(13, 115, 119, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
}
.bp-problem__pill span {
    font-size: 12px;
    font-weight: 600;
    color: #0D7377;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* LEFT — Text — standard site font sizes */
.bp-problem__h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #0D7377;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: var(--space-6);
}

.bp-problem__body {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--ar7-gray-500);
    line-height: 1.75;
    margin-bottom: var(--space-5);
}
.bp-problem__body:last-child { margin-bottom: 0; }

.bp-problem__body--accent {
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 700;
    color: #0D7377;
    margin-top: var(--space-6);
}

/* RIGHT — Two comparison cards with full home card hover effect */
.bp-problem__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    align-items: start;
}

/* Card base — same structure as home why cards */
.bp-problem__col {
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    background: var(--ar7-white);
    border: 1px solid var(--ar7-gray-200);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition:
        background 250ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 250ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Shine sweep — both cards */
.bp-problem__col::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 500ms ease;
    pointer-events: none;
    z-index: 1;
}
.bp-problem__col--bad:hover::before,
.bp-problem__col--bad.is-touched::before,
.bp-problem__col--bad.is-active::before { left: 100%; }
.bp-problem__col--good:hover::before,
.bp-problem__col--good.is-touched::before,
.bp-problem__col--good.is-active::before { left: 100%; }

/* Hover / Active — WITHOUT AR7 card stays RED */
.bp-problem__col--bad:hover,
.bp-problem__col--bad.is-touched,
.bp-problem__col--bad.is-active {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 10px 40px rgba(239, 68, 68, 0.45),
        0 0 20px rgba(239, 68, 68, 0.2),
        0 0 0 1px rgba(239, 68, 68, 0.3);
}

/* Hover / Active — WITH AR7 card stays TEAL */
.bp-problem__col--good:hover,
.bp-problem__col--good.is-touched,
.bp-problem__col--good.is-active {
    background: linear-gradient(135deg, var(--ar7-teal-500), var(--ar7-teal-400));
    border-color: rgba(14, 165, 160, 0.3);
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 10px 40px rgba(14, 165, 160, 0.45),
        0 0 20px rgba(14, 165, 160, 0.2),
        0 0 0 1px rgba(14, 165, 160, 0.3);
}

.bp-problem__col-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
    position: relative;
    z-index: 2;
    transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.bp-problem__col-label--bad { color: #ef4444; }
.bp-problem__col-label--good { color: #0ea5a0; }

.bp-problem__col--bad:hover .bp-problem__col-label,
.bp-problem__col--bad.is-touched .bp-problem__col-label,
.bp-problem__col--bad.is-active .bp-problem__col-label {
    color: rgba(255, 200, 200, 0.9);
}
.bp-problem__col--good:hover .bp-problem__col-label,
.bp-problem__col--good.is-touched .bp-problem__col-label,
.bp-problem__col--good.is-active .bp-problem__col-label {
    color: rgba(255, 255, 255, 0.7);
}

.bp-problem__row {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--ar7-gray-200);
    position: relative;
    z-index: 2;
    transition:
        background 250ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.bp-problem__col:hover .bp-problem__row,
.bp-problem__col.is-touched .bp-problem__row,
.bp-problem__col.is-active .bp-problem__row {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.bp-problem__row span {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ar7-gray-600);
    line-height: 1.4;
    transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.bp-problem__col:hover .bp-problem__row span,
.bp-problem__col.is-touched .bp-problem__row span,
.bp-problem__col.is-active .bp-problem__row span {
    color: rgba(255, 255, 255, 0.9);
}

/* SVG icons change to white on hover */
.bp-problem__row svg {
    flex-shrink: 0;
    transition: filter 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.bp-problem__col:hover .bp-problem__row svg,
.bp-problem__col.is-touched .bp-problem__row svg,
.bp-problem__col.is-active .bp-problem__row svg {
    filter: brightness(0) invert(1);
}

/* ── BENEFITS — Numbered cards grid ────────────────────── */
.bp-benefits {
    background: #ffffff;
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
}

.bp-benefits::before { display: none; }

.bp-benefits__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    position: relative;
    z-index: 1;
}

/* Header — pill + h2 + description centred */
.bp-benefits__header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 72px);
}

.bp-benefits__pill {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 115, 119, 0.06);
    border: 1px solid rgba(13, 115, 119, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
}
.bp-benefits__pill span {
    font-size: 12px;
    font-weight: 600;
    color: #0D7377;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bp-benefits__h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #0D7377;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
}

.bp-benefits__sub {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--ar7-gray-500);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* Grid — always 3 columns on desktop, 6 cards = 2 rows */
.bp-benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

/* Card — full home why-card hover effect */
.bp-benefits__card {
    background: #F2F3EE;
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 1px solid var(--ar7-gray-200);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition:
        background 250ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 250ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Shine sweep */
.bp-benefits__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 500ms ease;
    pointer-events: none;
    z-index: 1;
}
.bp-benefits__card:hover::before,
.bp-benefits__card.is-touched::before,
.bp-benefits__card.is-active::before { left: 100%; }

/* Hover / Active — teal gradient + lift + triple glow */
.bp-benefits__card:hover,
.bp-benefits__card.is-touched,
.bp-benefits__card.is-active {
    background: linear-gradient(135deg, var(--ar7-teal-500), var(--ar7-teal-400));
    border-color: rgba(14, 165, 160, 0.3);
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 10px 40px rgba(14, 165, 160, 0.45),
        0 0 20px rgba(14, 165, 160, 0.2),
        0 0 0 1px rgba(14, 165, 160, 0.3);
}

.bp-benefits__card-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--ar7-gray-200);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 2;
    transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.bp-benefits__card:hover .bp-benefits__card-num,
.bp-benefits__card.is-touched .bp-benefits__card-num,
.bp-benefits__card.is-active .bp-benefits__card-num {
    color: rgba(255, 255, 255, 0.25);
}

.bp-benefits__card-title {
    font-family: var(--font-display);
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 700;
    color: var(--ar7-navy-900);
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.bp-benefits__card:hover .bp-benefits__card-title,
.bp-benefits__card.is-touched .bp-benefits__card-title,
.bp-benefits__card.is-active .bp-benefits__card-title { color: #ffffff; }

.bp-benefits__card-body {
    font-size: 15px;
    color: var(--ar7-gray-500);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.bp-benefits__card:hover .bp-benefits__card-body,
.bp-benefits__card.is-touched .bp-benefits__card-body,
.bp-benefits__card.is-active .bp-benefits__card-body { color: rgba(255, 255, 255, 0.85); }

@media (min-width: 768px) {
    .bp-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .bp-benefits__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── STEPS — Horizontal timeline ───────────────────────── */
/* ── HOW IT WORKS — Zigzag layout ──────────────────────── */
.bp-steps {
    background: #F2F3EE;
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
}

.bp-steps::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.035) 7px, transparent 7px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

.bp-steps__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    position: relative;
    z-index: 1;
}

/* Header */
.bp-steps__header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 72px);
}

.bp-steps__pill {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 115, 119, 0.06);
    border: 1px solid rgba(13, 115, 119, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
}
.bp-steps__pill span {
    font-size: 12px;
    font-weight: 600;
    color: #0D7377;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bp-steps__h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #0D7377;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
}

.bp-steps__sub {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--ar7-gray-500);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* Zigzag track */
.bp-steps__track {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

/* Each step — card with big number on left, content right */
.bp-steps__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: var(--space-8);
    background: var(--ar7-white);
    border: 1px solid var(--ar7-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition:
        background 250ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 250ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Shine sweep */
.bp-steps__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 500ms ease;
    pointer-events: none;
    z-index: 1;
}
.bp-steps__item:hover::before,
.bp-steps__item.is-touched::before,
.bp-steps__item.is-active::before { left: 100%; }

/* Hover / Active — full teal gradient + lift + triple glow */
.bp-steps__item:hover,
.bp-steps__item.is-touched,
.bp-steps__item.is-active {
    background: linear-gradient(135deg, var(--ar7-teal-500), var(--ar7-teal-400));
    border-color: rgba(14, 165, 160, 0.3);
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 10px 40px rgba(14, 165, 160, 0.45),
        0 0 20px rgba(14, 165, 160, 0.2),
        0 0 0 1px rgba(14, 165, 160, 0.3);
}

/* Flip every 2nd item — number on right */
.bp-steps__item--flip {
    grid-template-columns: 1fr 100px;
}
.bp-steps__item--flip .bp-steps__item-num {
    order: 2;
    text-align: right;
}
.bp-steps__item--flip .bp-steps__item-content {
    order: 1;
}


/* Big number */
.bp-steps__item-num {
    font-family: var(--font-display);
    font-size: clamp(52px, 6vw, 72px);
    font-weight: 800;
    color: rgba(13, 115, 119, 0.12);
    letter-spacing: -0.04em;
    line-height: 1;
    position: relative;
    z-index: 2;
    transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.bp-steps__item:hover .bp-steps__item-num,
.bp-steps__item.is-touched .bp-steps__item-num,
.bp-steps__item.is-active .bp-steps__item-num {
    color: rgba(255, 255, 255, 0.2);
}

/* Content block */
.bp-steps__item-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    position: relative;
    z-index: 2;
}

.bp-steps__item-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(13, 115, 119, 0.07);
    border: 1px solid rgba(13, 115, 119, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 250ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 250ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.bp-steps__item:hover .bp-steps__item-icon,
.bp-steps__item.is-touched .bp-steps__item-icon,
.bp-steps__item.is-active .bp-steps__item-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.bp-steps__item:hover .bp-steps__item-icon svg,
.bp-steps__item.is-touched .bp-steps__item-icon svg,
.bp-steps__item.is-active .bp-steps__item-icon svg {
    filter: brightness(0) invert(1);
}

.bp-steps__item-title {
    font-family: var(--font-display);
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 700;
    color: var(--ar7-navy-900);
    letter-spacing: -0.02em;
    transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.bp-steps__item:hover .bp-steps__item-title,
.bp-steps__item.is-touched .bp-steps__item-title,
.bp-steps__item.is-active .bp-steps__item-title { color: #ffffff; }

.bp-steps__item-body {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--ar7-gray-500);
    line-height: 1.75;
    transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.bp-steps__item:hover .bp-steps__item-body,
.bp-steps__item.is-touched .bp-steps__item-body,
.bp-steps__item.is-active .bp-steps__item-body { color: rgba(255, 255, 255, 0.85); }

/* Mobile — stack number above content */
@media (max-width: 767px) {
    .bp-steps__item,
    .bp-steps__item--flip {
        grid-template-columns: 1fr;
    }
    .bp-steps__item-num,
    .bp-steps__item--flip .bp-steps__item-num {
        order: 0;
        font-size: 48px;
        text-align: left;
    }
    .bp-steps__item--flip .bp-steps__item-content {
        order: 1;
    }

}

/* ── STATS BAR ─────────────────────────────────────────── */
.bp-stats {
    background: linear-gradient(135deg, var(--ar7-teal-500), var(--ar7-navy-700));
    padding: clamp(48px, 6vw, 72px) 0;
}

.bp-stats__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.bp-stats__num {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--ar7-white);
    letter-spacing: -0.03em;
    line-height: 1;
}

.bp-stats__label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    margin-top: var(--space-2);
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .bp-stats__inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── FAQ — Accordion ───────────────────────────────────── */
/* ── FAQ ────────────────────────────────────────────────── */
.bp-faq {
    background: #ffffff;
    padding: clamp(80px, 10vw, 120px) 0;
}

.bp-faq::before { display: none; }

.bp-faq__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.bp-faq__header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 64px);
}

.bp-faq__pill {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 115, 119, 0.06);
    border: 1px solid rgba(13, 115, 119, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
}
.bp-faq__pill span {
    font-size: 12px;
    font-weight: 600;
    color: #0D7377;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bp-faq__h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #0D7377;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 64px);
}

.bp-faq__sub {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--ar7-gray-500);
    line-height: 1.7;
}

.bp-faq__item {
    border-bottom: 1px solid var(--ar7-gray-200);
}

.bp-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) 0;
    font-family: var(--font-display);
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 600;
    color: var(--ar7-navy-900);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition-fast);
}
.bp-faq__q::-webkit-details-marker { display: none; }
.bp-faq__q::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--ar7-gray-400);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-4);
}
details[open] .bp-faq__q::after {
    content: '−';
    color: var(--ar7-teal-400);
}
.bp-faq__q:hover { color: var(--ar7-teal-500); }

.bp-faq__a {
    font-size: 15px;
    color: var(--ar7-gray-500);
    line-height: 1.75;
    padding-bottom: var(--space-6);
}

/* ── BOTTOM CTA — exact home CTA band style ─────────────── */
.bp-cta {
    background: #0D7377;
    padding: clamp(48px, 5vw, 64px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Radial glow — same as home CTA */
.bp-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.bp-cta__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    position: relative;
    z-index: 1;
}

/* Pill — white glass on teal bg */
.bp-cta__pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}
.bp-cta__pill span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bp-cta__h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--ar7-white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: var(--space-3);
}

.bp-cta__body {
    font-size: clamp(14px, 1.5vw, 16px);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: var(--space-4);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* Bullet list — same as home CTA */
.bp-cta__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2) var(--space-6);
}
.bp-cta__list li {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 20px;
}
.bp-cta__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 13px;
}

.bp-cta__btns {
    display: flex;
    justify-content: center;
}

/* Button — exact home CTA button */
.bp-cta__btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    color: var(--ar7-white);
    background: linear-gradient(135deg, var(--ar7-teal-500), var(--ar7-teal-400));
    padding: 16px 44px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(14, 165, 160, 0.3);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1),
                background 250ms ease;
}
.bp-cta__btn--primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 500ms ease;
}
.bp-cta__btn--primary:hover::before { left: 100%; }
.bp-cta__btn--primary:hover {
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, var(--ar7-teal-400), var(--ar7-teal-300));
    box-shadow:
        0 10px 40px rgba(14, 165, 160, 0.45),
        0 0 20px rgba(14, 165, 160, 0.2),
        0 0 0 1px rgba(14, 165, 160, 0.3);
}
.bp-cta__btn--primary:active {
    transform: translateY(0) scale(1);
    box-shadow: none;
}

/* ── SCROLL REVEAL ─────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .bp-benefits__card:hover { transform: none; }
}




/* ============================================================
   BRAND PARTNERS HERO — 2-col grid with animated cards
   ============================================================ */

/* Section must have position relative and overflow visible */
.ar7-page-hero--brand {
    position: relative !important;
    overflow: visible !important;
}

/* Grid: left content | right visual */
.ar7-page-hero--brand .ar7-page-hero__inner {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: flex-start !important;
    gap: 64px !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    width: 100% !important;
    padding: 250px 40px 60px !important;
    box-sizing: border-box !important;
    z-index: 3 !important;
}

.ar7-page-hero--brand .ar7-page-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Right column visual */
.bp-hero-visual {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 20px !important;
    width: 100% !important;
    pointer-events: none;
}

/* Info cards */
.bp-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 16px;
    background: #F2F3EE;
    border: 1px solid rgba(13, 115, 119, 0.15);
    opacity: 0;
    pointer-events: all;
    cursor: default;
    transition: background 250ms ease, border-color 250ms ease,
                transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bp-info-card--1 { animation: bp-info-in 500ms ease 0.4s forwards, bp-info-float-a 5s ease-in-out 1.0s infinite; }
.bp-info-card--2 { animation: bp-info-in 500ms ease 0.7s forwards, bp-info-float-b 6s ease-in-out 1.3s infinite; }
.bp-info-card--3 { animation: bp-info-in 500ms ease 1.0s forwards, bp-info-float-c 7s ease-in-out 1.6s infinite; }

@keyframes bp-info-in {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes bp-info-float-a {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}
@keyframes bp-info-float-b {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}
@keyframes bp-info-float-c {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

/* Hover + is-active */
.bp-info-card:hover,
.bp-info-card.is-active {
    background: linear-gradient(135deg, #0D7377, #0ea5a0) !important;
    border-color: rgba(14, 165, 160, 0.4) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 40px rgba(14,165,160,0.45),
                0 0 20px rgba(14,165,160,0.2),
                0 0 0 1px rgba(14,165,160,0.3) !important;
}
.bp-info-card:hover .bp-info-card__title,
.bp-info-card.is-active .bp-info-card__title { color: #ffffff !important; }
.bp-info-card:hover .bp-info-card__sub,
.bp-info-card.is-active .bp-info-card__sub { color: rgba(255,255,255,0.75) !important; }
.bp-info-card:hover .bp-info-card__icon,
.bp-info-card.is-active .bp-info-card__icon { background: rgba(255,255,255,0.2) !important; }
.bp-info-card:hover .bp-info-card__icon svg circle,
.bp-info-card:hover .bp-info-card__icon svg path,
.bp-info-card.is-active .bp-info-card__icon svg circle,
.bp-info-card.is-active .bp-info-card__icon svg path { stroke: #ffffff !important; }

.bp-info-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(13, 115, 119, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 250ms ease;
}
.bp-info-card__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bp-info-card__title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #041220;
    letter-spacing: -0.01em;
    transition: color 250ms ease;
}
.bp-info-card__sub {
    font-size: 13px;
    color: var(--ar7-gray-500);
    line-height: 1.4;
    transition: color 250ms ease;
}

/* Mobile */
@media (max-width: 900px) {
    .ar7-page-hero--brand .ar7-page-hero__inner {
        grid-template-columns: 1fr !important;
        padding: 160px var(--space-5) 60px !important;
    }
    .bp-hero-visual { display: none !important; }

    /* Challenge section — less top padding + centred */
    .bp-problem {
        padding-top: var(--space-10) !important;
    }
    .bp-problem__inner {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    .bp-problem__pill {
        margin: 0 auto var(--space-5) auto !important;
    }
    .bp-problem__h2,
    .bp-problem__body {
        text-align: center !important;
    }

    /* Stack comparison cards vertically */
    .bp-problem__visual {
        grid-template-columns: 1fr !important;
        gap: var(--space-4) !important;
    }
}