/* ==========================================================
       ODOO MIGRATION PAGE
       Color theme updated to match O2B Technologies blue design system.
       All selectors use the o2bm- prefix. No generic element selectors.
       ========================================================== */
:root {
    --o2bm-primary: #1268d6;
    --o2bm-primary-dark: #084b9c;
    --o2bm-primary-light: #f6f0f5;
    --o2bm-secondary: #0b73f6;
    --o2bm-secondary-dark: #075dcc;
    --o2bm-heading: #17212b;
    --o2bm-text: #46515d;
    --o2bm-muted: #6b7580;
    --o2bm-bg: #f7f8fa;
    --o2bm-card: #ffffff;
    --o2bm-border: #d9e6f8;
    --o2bm-success: #1f7a5a;
    --o2bm-shadow: 0 14px 45px rgba(23, 33, 43, .10);
    --o2bm-radius-lg: 20px;
    --o2bm-radius-md: 18px;
    --o2bm-radius-sm: 12px;
    --o2bm-container: 1180px;
    --o2bm-hover: linear-gradient(45deg, #b7edff 0%, #cacaff 100%);
}

.o2bm-page,
.o2bm-page *,
.o2bm-page *::before,
.o2bm-page *::after {
    box-sizing: border-box;
}

.o2bm-page {
    scroll-behavior: smooth;
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--o2bm-text);
    background: var(--o2bm-card);
    line-height: 1.65;
    overflow-x: hidden;
}

.o2bm-page img {
    max-width: 100%;
    display: block;
    height: auto;
}

.o2bm-page a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.o2bm-page button,
.o2bm-page input,
.o2bm-page select,
.o2bm-page textarea {
    font: inherit;
}

.o2bm-container {
    width: min(calc(100% - 40px), var(--o2bm-container));
    margin-inline: auto;
}

.o2bm-section {
    position: relative;
    padding: 92px 0;
    overflow: hidden;
}

.o2bm-section--soft {
    background: var(--o2bm-bg);
}

.o2bm-section--dark {
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 15%, rgba(11, 115, 246, 0.20), transparent 30%),
        linear-gradient(135deg, var(--o2bm-primary-dark), var(--o2bm-primary));
}

.o2bm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    color: var(--o2bm-primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.o2bm-eyebrow-top {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #2f67ff;
    background: #dbe8ff;
    border: 1px solid #c6dbff;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    align-items: center;
    gap: 6px;
    gap: 10;
}

.top-head4 {
    font-size: 14px;
    font-weight: 700;
    color: #0b2240;
    margin: 0 0 3px 0;
}

.text-right-align {
    text-align: center;
    margin-bottom: 20px;
}

.top-head2 {
    font-weight: 400;
    color: #0b2240;
    margin: 0 0 13px 0;
}

.o2bm-eyebrow::before {
    width: 28px;
    height: 2px;
    content: "";
    border-radius: 20px;
    background: var(--o2bm-secondary);
}

.o2bm-section--dark .o2bm-eyebrow {
    color: #dbe8ff;
}

.o2bm-title {
    max-width: 820px;
    margin-bottom: 18px;
    color: var(--o2bm-heading);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.o2bm-section--dark .o2bm-title {
    color: #ffffff;
}

.o2bm-lead {
    max-width: 790px;
    color: var(--o2bm-muted);
    font-size: 16px;
}

.o2bm-section--dark .o2bm-lead {
    color: rgba(255, 255, 255, 0.84);
}

.o2bm-heading-wrap {
    margin-bottom: 42px;
}

.o2bm-heading-wrap--center {
    text-align: center;
}

.o2bm-heading-wrap--center .o2bm-title,
.o2bm-heading-wrap--center .o2bm-lead {
    margin-inline: auto;
}

.o2bm-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.o2bm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 23px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid transparent;
    transition: .25s ease;
    cursor: pointer;
    font-size: 15.5px;
}

.o2bm-btn:hover {
    transform: translateY(-2px);
}

.o2bm-btn:focus-visible,
.o2bm-faq summary:focus-visible,
.o2bm-breadcrumb a:focus-visible {
    outline: 3px solid rgba(11, 115, 246, 0.42);
    outline-offset: 4px;
}

.o2bm-btn--primary {
    color: #fff !important;
    background: var(--o2bm-primary);
    box-shadow: 0 12px 25px rgba(18, 104, 214, .25);
}

.o2bm-btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
    background: var(--o2bm-primary-dark);
}

.o2bm-btn--secondary {
    color: var(--o2bm-primary) !important;
    border-color: var(--o2bm-primary);
    background: #fff;
}

.o2bm-btn--secondary:hover {
    color: #fff !important;
    transform: translateY(-2px);
    text-decoration: none;
    background: var(--o2bm-primary);
}

.o2bm-last:hover {
    background: var(--o2bm-primary-dark);
}

.o2bm-btn--light {
    color: var(--o2bm-primary-dark);
    background: #fff;
}

.o2bm-btn--outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: transparent;
}

.o2bm-btn--outline-light:hover {
    background: #fff;
    color: var(--o2bm-heading);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Breadcrumb */
.o2bm-breadcrumb {
    padding: 14px 0;
    border-bottom: 1px solid var(--o2bm-border);
    background: var(--o2bm-card);
}

.o2bm-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    color: var(--o2bm-muted);
    font-size: 13px;
}

.o2bm-breadcrumb__list li:not(:last-child)::after {
    margin-left: 8px;
    color: var(--o2bm-border);
    content: "/";
}

.o2bm-breadcrumb__list a:hover {
    color: var(--o2bm-primary);
}

/* Hero */
.o2bm-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 76px;
    background: #EEF2FF;
}

.o2bm-hero::after {
    position: absolute;
    right: -120px;
    bottom: -220px;
    width: 480px;
    height: 480px;
    content: "";
    border: 55px solid rgba(18, 104, 214, 0.05);
    border-radius: 50%;
}

.o2bm-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
    align-items: center;
    gap: 58px;
}

.o2bm-hero h1 {
    margin-bottom: 22px;
    color: #0f172a;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.o2bm-hero h1 span {
    background: linear-gradient(to bottom, #2344ff, #683fc7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.o2bm-hero__copy {
    max-width: 700px;
    font-size: 17px;
    color: #5a6478;
}

.o2bm-hero__checks {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    column-gap: 40px;
    row-gap: 12px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
    justify-content: start;
}

.o2bm-hero__checks li {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    font-weight: 700;
    color: var(--o2bm-heading);
}


.o2bm-hero__checks li::before {
    content: "✓";
    color: var(--o2bm-secondary-dark);
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 2px;
}

.o2bm-flow-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid var(--o2bm-border);
    border-radius: 12px;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.3s ease;
}

.o2bm-flow-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(18, 104, 214, 0.12);
    border-color: rgba(18, 104, 214, 0.25);
    background: var(--o2bm-hover);
}

.o2bm-flow-item__number {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    color: #fff;
    border-radius: 9px;
    background: var(--o2bm-primary);
    font-size: 13px;
    font-weight: 900;
}

.o2bm-flow-item strong {
    display: block;
    color: var(--o2bm-heading);
    font-size: 14px;
}

.o2bm-flow-item span {
    display: block;
    color: var(--o2bm-muted);
    font-size: 12px;
}

/* Trust strip */
.o2bm-trust {
    position: relative;
    z-index: 2;
    margin-top: -28px;
}

.o2bm-trust__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    border: 1px solid var(--o2bm-border);
    border-radius: 18px;
    background: var(--o2bm-card);
    box-shadow: 0 14px 34px rgba(23, 33, 43, 0.08);
}

.o2bm-stat:hover {
    background: var(--o2bm-hover);
}

.o2bm-stat {
    padding: 22px 18px;
    text-align: center;
}

.o2bm-stat+.o2bm-stat {
    border-left: 1px solid var(--o2bm-border);
}

.o2bm-stat strong {
    display: block;
    margin-bottom: 3px;
    color: var(--o2bm-primary);
    font-size: 24px;
    line-height: 1.2;
}

.o2bm-stat span {
    color: var(--o2bm-muted);
    font-size: 13px;
    font-weight: 700;
}

/* Cards and grids */
.o2bm-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.o2bm-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.o2bm-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.o2bm-card {
    height: 100%;
    padding: 28px;
    border: 1px solid var(--o2bm-border);
    border-radius: var(--o2bm-radius-md);
    background: var(--o2bm-card);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.o2bm-card:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 104, 214, 0.25);
    box-shadow: var(--o2bm-shadow);
    background: var(--o2bm-hover);
}

.o2bm-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 19px;
    place-items: center;
    color: var(--o2bm-primary);
    border-radius: 13px;
    background: var(--o2bm-primary-light);
    font-size: 21px;
    font-weight: 900;
}

.o2bm-card h3 {
    margin-bottom: 10px;
    color: var(--o2bm-heading);
    font-size: 20px;
    line-height: 1.3;
}

.o2bm-card p {
    color: var(--o2bm-muted);
    font-size: 14px;
}

.o2bm-card ul {
    display: grid;
    gap: 8px;
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
    font-size: 14px;
}

.o2bm-card li::before {
    margin-right: 8px;
    color: var(--o2bm-success);
    content: "✓";
    font-weight: 900;
}

/* Type cards arrow */
.o2bm-type-card {
    position: relative;
    overflow: hidden;
}

.o2bm-type-card::after {
    position: absolute;
    top: 18px;
    right: 18px;
    color: rgba(18, 104, 214, 0.12);
    content: "↗";
    font-size: 38px;
    font-weight: 900;
}

/* Intro */
.o2bm-intro__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 60px;
}

.o2bm-problem-box {
    position: relative;
    padding: 34px;
    border-radius: var(--o2bm-radius-lg);
    color: #fff;
    background:
        linear-gradient(145deg, rgba(8, 75, 156, 0.96), rgba(18, 104, 214, 0.90));
    box-shadow: var(--o2bm-shadow);
}

.o2bm-eyebrow-white {
    color: #ffffff !important;
}

.o2bm-eyebrow-white::before {
    background: #ffffff !important;
}

.o2bm-problem-box h2 {
    margin-bottom: 22px;
    font-size: 30px;
    line-height: 1.2;
}

.o2bm-problem-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
}

.o2bm-problem-list li {
    padding: 12px 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 700;
    transition: .25s ease;
}

.o2bm-problem-list li:hover {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .4);
    transform: translateY(-2px);
}

.o2bm-answer-box h2 {
    margin-bottom: 20px;
    color: var(--o2bm-heading);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}

.o2bm-answer-box p+p {
    margin-top: 15px;
}

.o2bm-definition {
    margin-top: 24px;
    padding: 20px 22px;
    border-left: 4px solid var(--o2bm-secondary);
    border-radius: 0 12px 12px 0;
    background: var(--o2bm-primary-light);
}

.o2bm-definition strong {
    color: var(--o2bm-heading);
}

/* Process */
.o2bm-process {
    counter-reset: migration-step;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.o2bm-process__item {
    counter-increment: migration-step;
    position: relative;
    padding: 26px 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease, border-color 0.2s ease;
}

.o2bm-process__item:hover {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .4);
    transform: translateY(-2px);
}

.o2bm-process__item h3,
.o2bm-process__item p {
    transition: color 0.3s ease;
}

.o2bm-process__item::before {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    place-items: center;
    color: #084b9c;
    content: counter(migration-step, decimal-leading-zero);
    border-radius: 11px;
    background: #fff;
    font-size: 13px;
    font-weight: 900;
}

.o2bm-process__item h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 18px;
}

.o2bm-process__item p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

/* Source platforms */
.o2bm-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.o2bm-logo-chip {
    display: grid;
    min-height: 72px;
    place-items: center;
    padding: 13px;
    color: var(--o2bm-heading);
    border: 1px solid var(--o2bm-border);
    border-radius: 12px;
    background: var(--o2bm-card);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.3s ease;
}

.o2bm-logo-chip:hover {
    background: var(--o2bm-hover);
    border-color: rgba(18, 104, 214, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 104, 214, 0.10);
}

/* Data matrix */
.o2bm-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--o2bm-border);
    border-radius: 18px;
    background: var(--o2bm-card);
    box-shadow: 0 10px 25px rgba(23, 33, 43, 0.04);
}

.o2bm-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.o2bm-table th,
.o2bm-table td {
    padding: 17px 20px;
    border-bottom: 1px solid var(--o2bm-border);
    text-align: left;
}

.o2bm-table th {
    color: #fff;
    background: var(--o2bm-primary-dark);
    font-size: 14px;
}

.o2bm-table td {
    font-size: 14px;
}

.o2bm-table tr:last-child td {
    border-bottom: 0;
}

.o2bm-table tbody tr:hover {
    background: var(--o2bm-bg);
}

.o2bm-status {
    color: var(--o2bm-success);
    font-weight: 900;
}

/* Checklist */
.o2bm-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
    padding: 0;
}

.o2bm-checklist li {
    position: relative;
    padding: 15px 17px 15px 48px;
    border: 1px solid var(--o2bm-border);
    border-radius: 12px;
    background: var(--o2bm-card);
    font-size: 14px;
    font-weight: 700;
}

.o2bm-checklist li:hover {
    background: var(--o2bm-hover);
}

.o2bm-checklist li::before {
    position: absolute;
    top: 13px;
    left: 15px;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    color: #fff;
    content: "✓";
    border-radius: 50%;
    background: var(--o2bm-success);
    font-size: 12px;
}

/* Split feature */
.o2bm-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 55px;
}

.o2bm-feature-stack {
    display: grid;
    gap: 15px;
}

.o2bm-feature {
    display: flex;
    gap: 15px;
    padding: 18px;
    border: 1px solid var(--o2bm-border);
    border-radius: 13px;
    background: var(--o2bm-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.3s ease;
}

.o2bm-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(18, 104, 214, 0.12);
    border-color: rgba(18, 104, 214, 0.25);
    background: var(--o2bm-hover);
}

.o2bm-feature__icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    color: var(--o2bm-primary);
    border-radius: 9px;
    background: var(--o2bm-primary-light);
    font-size: 16px;
    font-weight: 900;
}

.o2bm-feature h3 {
    margin-bottom: 3px;
    color: var(--o2bm-heading);
    font-size: 16px;
}

.o2bm-feature p {
    color: var(--o2bm-muted);
    font-size: 13px;
}

/* Timeline */
.o2bm-timeline-note {
    margin-top: 17px;
    color: var(--o2bm-muted);
    font-size: 13px;
}

/* Industry cards on dark bg */
.o2bm-industry-card {
    display: flex;
    min-height: 110px;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease, border-color 0.2s ease;
}

.o2bm-industry-card:hover {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .4);
    transform: translateY(-2px);
}

.o2bm-industry-card span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 11px;
    background: #fff;
}

.o2bm-industry-card span i {
    color: var(--o2bm-primary);
    font-size: 20px;
}

.o2bm-industry-card strong {
    color: #fff;
    font-size: 15px;
    transition: color 0.3s ease;
}

/* FAQ */
.o2bm-faq-list {
    display: grid;
    /* max-width: 900px; */
    gap: 13px;
    margin-inline: auto;
}

.o2bm-faq {
    overflow: hidden;
    border: 1px solid var(--o2bm-border);
    border-radius: 13px;
    background: var(--o2bm-card);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.o2bm-faq[open] {
    border-color: var(--o2bm-primary);
    box-shadow: 0 8px 24px rgba(18, 104, 214, 0.10);
}

.o2bm-faq summary {
    position: relative;
    padding: 20px 54px 20px 21px;
    color: var(--o2bm-heading);
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    list-style: none;
}

.o2bm-faq summary::-webkit-details-marker {
    display: none;
}

.o2bm-faq summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    transform: translateY(-50%);
    content: "+";
    border-radius: 50%;
    color: var(--o2bm-primary);
    background: var(--o2bm-primary-light);
    font-size: 19px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.o2bm-faq[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}

.o2bm-faq__answer {
    padding: 0 21px 21px;
    color: var(--o2bm-muted);
    font-size: 14px;
}

/* CTA */
.o2bm-cta {
    padding: 74px 0;
    overflow: hidden;
}

.o2bm-cta__box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 48px;
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 30%, rgba(11, 115, 246, 0.28), transparent 25%),
        linear-gradient(135deg, var(--o2bm-primary-dark), var(--o2bm-primary));
    box-shadow: var(--o2bm-shadow);
}

.o2bm-cta__box::before {
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.o2bm-cta__box h2 {
    margin-bottom: 10px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
}

.o2bm-cta__box p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
}

.o2bm-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

/* Responsive */
@media (max-width: 1080px) {

    .o2bm-hero__grid,
    .o2bm-intro__grid,
    .o2bm-split {
        grid-template-columns: 1fr;
    }

    .o2bm-trust__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .o2bm-stat:nth-child(4) {
        border-left: 0;
    }

    .o2bm-process,
    .o2bm-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .o2bm-logo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .o2bm-cta__box {
        grid-template-columns: 1fr;
    }

    .o2bm-cta__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 760px) {
    .o2bm-section {
        padding: 68px 0;
    }

    .o2bm-hero {
        padding: 62px 0 54px;
    }

    .o2bm-hero__grid {
        gap: 38px;
    }

    .o2bm-hero h1 {
        font-size: 43px;
    }

    .o2bm-grid-2,
    .o2bm-grid-3,
    .o2bm-grid-4,
    .o2bm-process {
        grid-template-columns: 1fr;
    }

    .o2bm-trust {
        margin-top: 20px;
    }

    .o2bm-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .o2bm-stat,
    .o2bm-stat+.o2bm-stat {
        border-top: 1px solid var(--o2bm-border);
        border-left: 0;
    }

    .o2bm-stat:first-child,
    .o2bm-stat:nth-child(2) {
        border-top: 0;
    }

    .o2bm-stat:nth-child(even) {
        border-left: 1px solid var(--o2bm-border);
    }

    .o2bm-stat:last-child {
        grid-column: 1 / -1;
        border-left: 0;
    }

    .o2bm-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .o2bm-checklist,
    .o2bm-problem-list {
        grid-template-columns: 1fr;
    }

    .o2bm-cta__box {
        padding: 34px 24px;
    }

    .o2bm-intro__grid {
        gap: 34px;
    }

    .o2bm-process__item {
        padding: 20px 18px;
    }

    .o2bm-process__item::before {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 520px) {
    .o2bm-container {
        width: min(calc(100% - 24px), var(--o2bm-container));
    }

    .o2bm-section {
        padding: 56px 0;
    }

    .o2bm-hero {
        padding: 50px 0 42px;
    }

    .o2bm-hero h1 {
        font-size: 37px;
    }

    .o2bm-title {
        font-size: 32px;
    }

    .o2bm-btn,
    .o2bm-cta__actions .o2bm-btn {
        width: 100%;
    }

    .o2bm-card,
    .o2bm-problem-box {
        padding: 20px;
    }

    .o2bm-cta__box {
        padding: 28px 18px;
        border-radius: 18px;
    }

    .o2bm-cta__box h2 {
        font-size: 28px;
    }

    .o2bm-grid-4 {
        grid-template-columns: 1fr;
    }

    .o2bm-industry-card {
        min-height: auto;
        flex-direction: column;
        text-align: left;
        gap: 10px;
        padding: 16px;
    }

    .o2bm-industry-card span {
        width: 46px;
        height: 36px;
    }

    .o2bm-industry-card strong {
        margin-top: 0;
    }

    .o2bm-feature {
        padding: 14px;
        gap: 12px;
    }

    .o2bm-feature__icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
        border-radius: 8px;
    }

    .o2bm-checklist li {
        padding: 13px 40px 13px 42px;
    }

    .o2bm-checklist li::before {
        top: 11px;
        left: 14px;
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .o2bm-process__item {
        padding: 16px 14px;
    }

    .o2bm-process__item::before {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .o2bm-logo-chip {
        min-height: 60px;
        padding: 10px;
        font-size: 13px;
    }

    .o2bm-faq summary {
        padding: 16px 50px 16px 18px;
        font-size: 15px;
    }

    .o2bm-faq__answer {
        padding: 0 18px 18px;
        font-size: 13px;
    }

    .o2bm-heading-wrap--center {
        text-align: left;
    }

    .o2bm-heading-wrap--center .o2bm-title,
    .o2bm-heading-wrap--center .o2bm-lead {
        margin-inline: 0;
    }

    .o2bm-btn-row {
        align-items: stretch;
        flex-direction: column;
    }

    .o2bm-cta-inner {
        flex-direction: column;
    }

    .o2bm-hero__checks {
        grid-template-columns: 1fr;
    }

    .o2bm-hero__flow {
        gap: 10px;
    }

    .o2bm-flow-item {
        flex-wrap: wrap;
    }

    .o2bm-flow-item span {
        display: block;
    }
}

@media (max-width: 360px) {
    .o2bm-section {
        padding: 44px 0;
    }

    .o2bm-hero {
        padding: 40px 0 36px;
    }

    .o2bm-hero h1 {
        font-size: 32px;
    }

    .o2bm-hero-copy {
        font-size: 16px;
    }

    .o2bm-card h3 {
        font-size: 18px;
    }

    .o2bm-problem-box {
        padding: 18px;
        border-radius: 16px;
    }

    .o2bm-problem-list li {
        padding: 10px 12px;
    }

    .o2bm-process__item {
        padding: 14px 12px;
    }

    .o2bm-process__item h3 {
        font-size: 16px;
    }

    .o2bm-process__item p {
        font-size: 13px;
    }

    .o2bm-cta {
        padding: 56px 0;
    }

    .o2bm-cta__box {
        padding: 22px 14px;
        border-radius: 14px;
    }

    .o2bm-cta__box h2 {
        font-size: 24px;
    }

    .o2bm-cta__box p {
        font-size: 14px;
    }

    .o2bm-cta__actions {
        gap: 8px;
    }

    .o2bm-logo-grid {
        grid-template-columns: 1fr;
    }

    .o2bm-logo-chip {
        min-height: 58px;
        padding: 10px;
        font-size: 12px;
    }

    .o2bm-checklist li {
        padding: 12px 38px 12px 38px;
    }

    .o2bm-checklist li::before {
        top: 10px;
        left: 12px;
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .o2bm-feature {
        gap: 12px;
        padding: 14px;
    }

    .o2bm-feature__icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 7px;
    }

    .o2bm-feature h3 {
        font-size: 15px;
    }

    .o2bm-feature p {
        font-size: 12px;
    }

    .o2bm-timeline-note {
        font-size: 12px;
    }

    .o2bm-stat strong {
        font-size: 20px;
    }

    .o2bm-stat span {
        font-size: 12px;
    }
}

@media (min-width: 1400px) {
    .o2bm-container {
        max-width: 1200px;
    }
}

@media (min-width: 992px) {
    .o2bm-anc {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .o2bm-anc {
        justify-content: flex-start;
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .o2bm-page *,
    .o2bm-page *::before,
    .o2bm-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

.o2b-extracted-wrapper *,
.o2b-extracted-wrapper *::before,
.o2b-extracted-wrapper *::after {
    box-sizing: border-box;
}

.o2b-extracted-wrapper {
    font-family: 'Inter', sans-serif;
    color: #333;
}

.o2b-extracted-wrapper img {
    max-width: 100%;
    height: auto;
}

.o2b-extracted-wrapper h2,
.o2b-extracted-wrapper h4,
.o2b-extracted-wrapper h5,
.o2b-extracted-wrapper h6,
.o2b-extracted-wrapper p {
    margin-top: 0;
}

.o2b-extracted-wrapper button {
    font-family: inherit;
}

/* ================================================
   CONTAINER (replaces Bootstrap .container)
   ================================================ */
.o2b-section-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .o2b-section-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .o2b-section-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .o2b-section-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .o2b-section-container {
        max-width: 1140px;
    }
}

/* ================================================
   FLEX / COLUMN UTILITIES (replaces Bootstrap grid)
   ================================================ */
.o2b-row-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.o2b-col-full {
    width: 100%;
}

.o2b-col-83-xl {
    width: 100%;
}

@media (min-width: 1200px) {
    .o2b-col-83-xl {
        width: 83.3333%;
    }
}

.o2b-col-header {
    width: 100%;
}

@media (min-width: 992px) {
    .o2b-col-header {
        width: 83.3333%;
    }
}

@media (min-width: 1200px) {
    .o2b-col-header {
        width: 66.6667%;
    }
}

/* ================================================
   TRUST SECTION — SHARED BASE
   ================================================ */
.o2b-trust-section {
    padding: 30px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    background-image: radial-gradient(rgba(8, 127, 245, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
}

/* ---------- Trust Header (Second Section) ---------- */
.o2b-trust-header {
    margin-bottom: 40px;
    text-align: center;
}

.o2b-trust-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f59e0b;
    margin-bottom: 8px;
}

.o2b-trust-heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0b2240;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.o2b-trust-subtext {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto 12px auto;
}

.o2b-header-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.o2b-header-dots span {
    width: 7px;
    height: 7px;
    background-color: #f59e0b;
    border-radius: 50%;
    display: inline-block;
}

/* ---------- Accreditation Grid ---------- */
/* ===== Accreditation Slider (mirrors home affiliation-slider-wrapper) ===== */
.o2b-accreditation-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 30px;
}

.o2b-accreditation-slider-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    will-change: transform;
    transition: transform 0.6s ease-in-out;
}

.o2b-accreditation-slider-track .o2b-badge-container {
    flex: 0 0 calc((100% - 72px) / 4); /* 4 cards visible (3 gaps of 24px) */
}

/* Tablet – 2 cards */
@media (max-width: 991px) {
    .o2b-accreditation-slider-track .o2b-badge-container {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

/* Mobile – 1 card */
@media (max-width: 575px) {
    .o2b-accreditation-slider-track .o2b-badge-container {
        flex: 0 0 100%;
    }
    .o2b-accreditation-slider-track {
        gap: 16px;
    }
}

.o2b-badge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.o2b-badge-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.o2b-badge-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.o2b-badge-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.o2b-badge-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.o2b-badge-label {
    margin-top: 16px;
    font-size: 13.5px;
    line-height: 1.4;
    color: #334155;
    font-weight: 500;
}

.o2b-badge-label span {
    font-weight: 400;
}

.o2b-badge-label .highlight-purple {
    color: #8b5cf6;
    font-weight: 700;
}

.o2b-badge-label .highlight-blue {
    color: #087ff5;
    font-weight: 600;
}

/* ---------- Clients Divider ---------- */
.o2b-clients-divider {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.o2b-clients-divider::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(8, 127, 245, 0.1) 0%, rgba(8, 127, 245, 0.7) 50%, rgba(8, 127, 245, 0.1) 100%);
    z-index: 1;
}

.o2b-divider-text {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    padding: 0 20px;
    font-size: 26px;
    font-weight: 800;
    color: #0b2240;
}

.o2b-divider-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #087ff5;
    border-radius: 50%;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
}

.o2b-clients-divider .left-dot {
    left: 40%;
}

.o2b-clients-divider .right-dot {
    right: 40%;
}

/* ---------- Client Logo Grid ---------- */
.o2b-client-master-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.o2b-client-grid-top {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.o2b-client-grid-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 68%;
    margin: 0 auto;
}

.o2b-client-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    height: 100px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.015);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.o2b-client-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.25s ease;
}

.o2b-client-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

/* ---------- Features Ribbon ---------- */
.o2b-features-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    padding: 24px 16px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.o2b-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
    border-right: 1px solid #e2e8f0;
}

.o2b-feature-item:last-child {
    border-right: none;
}

.o2b-feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(8, 127, 245, 0.08);
    color: #087ff5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.o2b-feature-icon-box svg {
    width: 22px;
    height: 22px;
}

.o2b-feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0b2240;
    margin: 0 0 3px 0;
}

.o2b-feature-text p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.3;
}

/* ---------- Trust Section Responsive ---------- */
@media (max-width: 1200px) {
    .o2b-client-grid-bottom {
        max-width: 85%;
    }

    .o2b-clients-divider .left-dot {
        left: 28%;
    }

    .o2b-clients-divider .right-dot {
        right: 28%;
    }
}

@media (max-width: 991px) {
    .o2b-trust-heading {
        font-size: 2.2rem;
    }

    .o2b-accreditation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .o2b-client-grid-top {
        grid-template-columns: repeat(3, 1fr);
    }

    .o2b-client-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .o2b-features-ribbon {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .o2b-feature-item {
        border-right: none;
    }

    .o2b-clients-divider .left-dot,
    .o2b-clients-divider .right-dot {
        display: none;
    }
}

@media (max-width: 768px) {
    .o2b-accreditation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .o2b-divider-text {
        font-size: 20px;
    }

    .o2bm-hero__checks {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }
}

@media (max-width: 575px) {
    .o2b-trust-heading {
        font-size: 1.8rem;
    }

    .o2b-accreditation-grid {
        grid-template-columns: 1fr;
    }

    .o2b-client-grid-top,
    .o2b-client-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .o2b-features-ribbon {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ================================================
   VIDEO TESTIMONIAL SECTION
   ================================================ */
.video-testimonial-section {
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    margin-bottom: 48px;
    margin-top: 20px;
    /* replaces Bootstrap mb-5 (3rem) */
}

.video-testimonial-inner {
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 720px;
    margin: 12px auto 50px;
}

/* Slider */
.video-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-slider {
    display: flex;
    gap: 24px;
    overflow: hidden;
    max-width: 1100px;
    height: 100%;
    width: 100%;
}

.video-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

/* Card */
.video-card {
    min-width: 250px;
    border-radius: 16px;
    border: 1px solid rgb(230, 230, 230);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
}

/* Thumb */
.video-thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 16px 16px 16px 16px;
    position: relative;
}

/* Play Button */
.play-btn {
    width: 30px;
    height: 30px;
    background: #ffffff9f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-left: 14px solid #2563eb;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* Info (styles preserved — markup is commented out in HTML) */
.video-info {
    padding: 16px;
    text-align: left;
}

.video-info h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

.video-info p {
    margin-top: 4px;
    font-size: 13px;
    color: #64748b;
}

/* Navigation Buttons */
.slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-size: 26px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000;
    line-height: 1;
}

.prev-btn {
    left: -22px;
}

.next-btn {
    right: -22px;
}

.slider-btn:hover {
    background: #2563eb;
    color: #ffffff;
}

/* ================================================
   VIDEO MODAL (replaces Bootstrap modal)
   ================================================ */
.video-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s linear;
    padding: 15px;
    overflow: auto;
}

.video-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.video-modal-dialog {
    max-width: 800px;
    width: 100%;
    margin: auto;
    position: relative;
}

.video-modal-content {
    background: #000;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.video-modal-body {
    padding: 0;
}

.video-modal-body iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
    border-radius: 12px;
}

.video-close {
    position: absolute;
    top: 10px;
    right: 14px;
    color: #fff;
    font-size: 28px;
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.video-close:hover {
    opacity: 1;
    color: #fff;
}

/* ---------- Video Section Responsive ---------- */
@media (max-width: 767px) {
    .video-modal-body iframe {
        height: 260px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
        margin: 10px auto 30px;
    }

    .video-card {
        min-width: 220px;
    }

    .video-thumb {
        height: 140px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .video-modal-body iframe {
        height: 220px;
    }
}

/* Hero Image */
.o2bm-hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.o2bm-hero-image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(18, 104, 214, 0.18);
    transition: transform .35s ease;
}

.o2bm-hero-image img:hover {
    transform: translateY(-6px);
}

/* Large Laptop */
@media (max-width: 1200px) {
    .o2bm-hero-image img {
        max-width: 500px;
    }
}

/* Tablet */
@media (max-width: 991px) {

    .o2bm-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .o2bm-hero-image {
        order: -1; /* Remove this line if you want image below content */
    }

    .o2bm-hero-image img {
        max-width: 650px;
        margin: 0 auto;
    }

    .o2bm-hero__checks {
        justify-content: center;
    }

    .o2bm-btn-row {
        justify-content: center;
    }
}
 
/* Mobile */
@media (max-width: 767px) {

    .o2bm-hero-image img {
        max-width: 100%;
        border-radius: 16px;
    }

    .o2bm-hero {
        padding: 60px 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .o2bm-hero-image img {
        border-radius: 12px;
    }
}

.o2bm-dark {
    background: var(--o2bm-primary-dark) !important;
}

.o2bm-dark:hover {
    background: var(--o2bm-primary) !important;
}


/* ================================================ */
/* "AS SEEN ON" TRUST BANNER (No Bootstrap required) */
/* ================================================ */
.trust-section {
    background: #ffffff;
    padding: 60px 0;
}

.brandpush-wrapper {
    position: relative;
    background: linear-gradient(90deg, #cbbcffa5 0%, #d9f5ff 50%, #c6f0ff 100%);
    border-radius: 20px;
    max-width: 1000px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.311);
    overflow: hidden;
}

.bp-leaf {
    position: absolute;
    height: 220px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.20;
    z-index: 0;
    pointer-events: none;
}

.bp-leaf-left { left: 20px; }
.bp-leaf-right { right: 20px; transform: translateY(-50%) scaleX(-1); }

.bp-header,
.bp-logo-container,
.bp-footer {
    position: relative;
    z-index: 1;
    width: 100%;
}

.bp-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #1e293b;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.bp-logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
}

.bp-logo-item img {
    max-width: 110px;
    max-height: 50px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 1;
    transition: all 0.3s ease;
}

.bp-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .bp-leaf { display: none; }
    .brandpush-wrapper {
        min-height: auto;
        padding: 30px 15px;
    }
}

.o2bm-top {
    margin-top: 20px;
}

.o2bm-center {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inter-link {
    color: #383d42;
    font-weight: 700;
    /* text-decoration: none; */
}