/* =========================
   ONLINE ADVERTISING HERO
========================= */

.oa-hero {
    position: relative;
    padding: 95px 0 90px;
    background:
        radial-gradient(circle at 85% 20%, rgba(13, 110, 253, 0.08), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    overflow: hidden;
}

.oa-hero-content {
    max-width: 620px;
}

.oa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    margin-bottom: 20px;
    background: #e8f2ff;
    color: #035297;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
}

.oa-badge i {
    font-size: 13px;
}

.oa-hero h1 {
    margin: 0 0 22px;
    color: #222;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.oa-hero h1 span {
    display: block;
    color: #035297;
}

.oa-hero-text {
    max-width: 570px;
    margin: 0 0 30px;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

.oa-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.oa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .25s ease;
}

.oa-btn-primary {
    background: #035297;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(3, 82, 151, .18);
}

.oa-btn-primary:hover {
    background: #02447e;
    transform: translateY(-2px);
}

.oa-btn-outline {
    background: #fff;
    color: #035297 !important;
    border: 1px solid #dce8f4;
}

.oa-btn-outline:hover {
    border-color: #035297;
    transform: translateY(-2px);
}

.oa-platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.oa-platforms span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #666;
    font-size: 12px;
    font-weight: 500;
}

.oa-platforms i {
    color: #035297;
    font-size: 14px;
}


/* =========================
   HERO VISUAL
========================= */

.oa-hero-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.oa-hero-visual::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(3, 82, 151, .06);
}


/* Dashboard */

.oa-dashboard {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 510px;
    padding: 24px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #e8eef5;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(20, 65, 100, .12);
}

.oa-dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
}

.oa-dashboard-top small {
    display: block;
    margin-bottom: 5px;
    color: #888;
    font-size: 11px;
}

.oa-dashboard-top strong {
    color: #222;
    font-size: 15px;
}

.oa-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 11px;
}

.oa-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #28a745;
}


/* Stats */

.oa-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px 0;
}

.oa-stat {
    padding: 14px;
    background: #f8fbff;
    border-radius: 12px;
}

.oa-stat small {
    display: block;
    margin-bottom: 7px;
    color: #888;
    font-size: 10px;
}

.oa-stat strong {
    display: block;
    margin-bottom: 5px;
    color: #222;
    font-size: 20px;
}

.oa-stat em {
    color: #159447;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
}


/* Chart */

.oa-chart {
    padding: 18px;
    border: 1px solid #edf2f7;
    border-radius: 14px;
}

.oa-chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.oa-chart-header span:first-child {
    color: #333;
    font-size: 12px;
    font-weight: 600;
}

.oa-chart-header span:last-child {
    color: #999;
    font-size: 10px;
}

.oa-chart-area {
    position: relative;
    height: 135px;
    overflow: hidden;
}

.oa-grid-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #edf2f7;
}

.line-1 {
    top: 20%;
}

.line-2 {
    top: 50%;
}

.line-3 {
    top: 80%;
}

.oa-line-chart {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: #035297;
}


/* Channels */

.oa-channel-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 15px;
}

.oa-channel-row div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 5px;
    background: #f8fbff;
    border-radius: 8px;
    color: #666;
    font-size: 10px;
}

.oa-channel-row i {
    color: #035297;
    font-size: 13px;
}


/* Floating Cards */

.oa-floating-target {
    position: absolute;
    z-index: 3;
    top: 42px;
    right: 8px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 15px;
    color: #035297;
    font-size: 23px;
    box-shadow: 0 15px 35px rgba(20, 65, 100, .12);
}

.oa-floating-card {
    position: absolute;
    z-index: 4;
    bottom: 35px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 17px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 13px;
    box-shadow: 0 15px 35px rgba(20, 65, 100, .12);
}

.oa-floating-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f2ff;
    border-radius: 10px;
    color: #035297;
}

.oa-floating-card small {
    display: block;
    margin-bottom: 2px;
    color: #888;
    font-size: 10px;
}

.oa-floating-card strong {
    color: #159447;
    font-size: 16px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .oa-hero {
        padding: 70px 0;
    }

    .oa-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .oa-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .oa-hero-buttons,
    .oa-platforms {
        justify-content: center;
    }

    .oa-hero-visual {
        margin-top: 45px;
        min-height: 450px;
    }
}

@media (max-width: 575px) {

    .oa-hero {
        padding: 55px 0;
    }

    .oa-hero h1 {
        font-size: 40px;
    }

    .oa-hero-text {
        font-size: 15px;
    }

    .oa-hero-buttons {
        flex-direction: column;
    }

    .oa-btn {
        width: 100%;
    }

    .oa-platforms {
        gap: 12px;
    }

    .oa-platforms span {
        font-size: 11px;
    }

    .oa-hero-visual {
        min-height: 390px;
        padding: 10px 0;
    }

    .oa-dashboard {
        padding: 15px;
    }

    .oa-dashboard-stats {
        gap: 7px;
    }

    .oa-stat {
        padding: 10px;
    }

    .oa-stat strong {
        font-size: 16px;
    }

    .oa-channel-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .oa-floating-target {
        top: 5px;
        right: -5px;
        width: 48px;
        height: 48px;
    }

    .oa-floating-card {
        bottom: 5px;
        left: -5px;
    }
}
/* =========================
   SECTION 2 — ADVERTISING PROBLEM
========================= */

.oa-problem {
    padding: 100px 0;
    background: #fff;
}


/* Section Heading */

.oa-section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.oa-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    margin-bottom: 18px;
    background: #e8f2ff;
    color: #035297;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .7px;
}

.oa-section-heading h2 {
    margin: 0 0 18px;
    color: #222;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
}

.oa-section-heading h2 span {
    color: #035297;
}

.oa-section-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}


/* Problem Cards */

.oa-problem-card {
    position: relative;
    height: 100%;
    padding: 28px 25px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(20, 65, 100, .05);
    transition: all .3s ease;
    overflow: hidden;
}

.oa-problem-card::after {
    content: "";
    position: absolute;
    right: -35px;
    top: -35px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f5f9fe;
    transition: all .3s ease;
}

.oa-problem-card:hover {
    transform: translateY(-6px);
    border-color: #dce9f6;
    box-shadow: 0 18px 40px rgba(20, 65, 100, .10);
}

.oa-problem-card:hover::after {
    transform: scale(1.4);
}


/* Icon */

.oa-problem-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: #e8f2ff;
    border-radius: 14px;
    color: #035297;
    font-size: 20px;
}

.oa-problem-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: #222;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.oa-problem-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    color: #707070;
    font-size: 13px;
    line-height: 1.7;
}


/* Bottom Label */

.oa-problem-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #035297;
    font-size: 11px;
    font-weight: 600;
}

.oa-problem-label i {
    font-size: 10px;
}


/* Insight */

.oa-problem-insight {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 35px auto 0;
    padding: 24px 28px;
    background: #f8fbff;
    border: 1px solid #e8f0f8;
    border-radius: 16px;
}

.oa-insight-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #035297;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
}

.oa-problem-insight span {
    display: block;
    margin-bottom: 4px;
    color: #035297;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.oa-problem-insight h3 {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.oa-problem-insight h3 strong {
    color: #035297;
    font-weight: 700;
}


/* Responsive */

@media (max-width: 767px) {

    .oa-problem {
        padding: 70px 0;
    }

    .oa-section-heading {
        margin-bottom: 40px;
    }

    .oa-section-heading h2 {
        font-size: 34px;
    }

    .oa-problem-card {
        padding: 24px 22px;
    }

    .oa-problem-insight {
        align-items: flex-start;
        padding: 20px;
    }

}

@media (max-width: 480px) {

    .oa-problem-insight {
        flex-direction: column;
        gap: 14px;
    }

}
/* =========================
   SECTION 3 — WHY ADS FAIL
========================= */

.oa-failure {
    padding: 100px 0;
    background: #f8fbff;
}

.oa-failure .oa-section-heading {
    margin-bottom: 65px;
}


/* =========================
   LEFT VISUAL
========================= */

.oa-failure-visual {
    position: relative;
    width: 100%;
    max-width: 470px;
    height: 470px;
    margin: auto;
}

.oa-failure-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border: 1px dashed #b9d4ec;
    border-radius: 50%;
}

.oa-failure-circle::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: #e8f2ff;
}

.oa-failure-circle::after {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 15px 35px rgba(3, 82, 151, .10);
}

.oa-failure-center {
    position: relative;
    z-index: 2;
    text-align: center;
}

.oa-failure-center i {
    display: block;
    margin-bottom: 9px;
    color: #035297;
    font-size: 26px;
}

.oa-failure-center strong {
    display: block;
    color: #222;
    font-size: 15px;
    font-weight: 700;
}

.oa-failure-center small {
    display: block;
    margin-top: 2px;
    color: #888;
    font-size: 10px;
}


/* =========================
   NODES
========================= */

.oa-failure-node {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 155px;
    padding: 11px 14px;
    background: #fff;
    border: 1px solid #e7eef5;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(20, 65, 100, .08);
}

.oa-failure-node > span {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f2ff;
    border-radius: 9px;
    color: #035297;
    font-size: 14px;
}

.oa-failure-node strong {
    display: block;
    margin-bottom: 2px;
    color: #333;
    font-size: 11px;
    font-weight: 700;
}

.oa-failure-node small {
    display: block;
    color: #999;
    font-size: 9px;
}

.node-a {
    top: 35px;
    left: 5px;
}

.node-b {
    top: 35px;
    right: 0;
}

.node-c {
    bottom: 35px;
    left: 5px;
}

.node-d {
    right: 0;
    bottom: 35px;
}


/* =========================
   FAILURE LIST
========================= */

.oa-failure-list {
    padding-left: 25px;
}

.oa-failure-item {
    display: flex;
    gap: 20px;
    padding: 0 0 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e5edf5;
}

.oa-failure-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.oa-failure-number {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f2ff;
    border-radius: 10px;
    color: #035297;
    font-size: 11px;
    font-weight: 700;
}

.oa-failure-content h3 {
    margin: 0 0 7px;
    color: #222;
    font-size: 17px;
    font-weight: 700;
}

.oa-failure-content p {
    max-width: 570px;
    margin: 0;
    color: #707070;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   BOTTOM INSIGHT
========================= */

.oa-failure-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 18px 25px;
    background: #fff;
    border: 1px solid #e3edf6;
    border-radius: 13px;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    box-shadow: 0 8px 25px rgba(20, 65, 100, .04);
}

.oa-failure-bottom > i {
    color: #035297;
    font-size: 18px;
    flex-shrink: 0;
}

.oa-failure-bottom strong {
    color: #035297;
    font-weight: 700;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .oa-failure {
        padding: 80px 0;
    }

    .oa-failure-list {
        padding-left: 0;
    }

    .oa-failure-visual {
        margin-bottom: 20px;
    }

}

@media (max-width: 575px) {

    .oa-failure {
        padding: 65px 0;
    }

    .oa-failure .oa-section-heading {
        margin-bottom: 45px;
    }

    .oa-failure-visual {
        height: 390px;
        transform: scale(.82);
        transform-origin: center;
        margin: -35px auto;
    }

    .oa-failure-circle {
        width: 245px;
        height: 245px;
    }

    .oa-failure-item {
        gap: 13px;
    }

    .oa-failure-number {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
    }

    .oa-failure-content h3 {
        font-size: 15px;
    }

    .oa-failure-content p {
        font-size: 12px;
    }

    .oa-failure-bottom {
        align-items: flex-start;
        text-align: left;
        padding: 16px 18px;
    }

}
/* =========================
   SECTION 4 — ADVERTISING ECOSYSTEM
========================= */

.oa-ecosystem {
    padding: 100px 0;
    background: #fff;
}

.oa-ecosystem .oa-section-heading {
    margin-bottom: 70px;
}


/* =========================
   ECOSYSTEM WRAPPER
========================= */

.oa-ecosystem-wrap {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 570px;
    margin: 0 auto;
}


/* =========================
   CENTER
========================= */

.oa-ecosystem-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 1px solid #dce9f5;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(20, 65, 100, .10);
}

.oa-center-ring {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
    background: #e8f2ff;
    border-radius: 50%;
    color: #035297;
    font-size: 21px;
}

.oa-ecosystem-center strong {
    color: #222;
    font-size: 15px;
    line-height: 1.2;
}

.oa-ecosystem-center span {
    margin-top: 2px;
    color: #888;
    font-size: 10px;
}


/* =========================
   CONNECTING LINES
========================= */

.oa-ecosystem-wrap::before,
.oa-ecosystem-wrap::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 440px;
    height: 440px;
    transform: translate(-50%, -50%);
    border: 1px dashed #d7e6f3;
    border-radius: 50%;
}

.oa-ecosystem-wrap::after {
    width: 285px;
    height: 285px;
    border-color: #e5eef6;
}


/* =========================
   PLATFORM CARDS
========================= */

.oa-eco-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 300px;
    padding: 18px;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(20, 65, 100, .07);
    transition: all .3s ease;
}

.oa-eco-card:hover {
    transform: translateY(-5px);
    border-color: #cddfee;
    box-shadow: 0 18px 40px rgba(20, 65, 100, .11);
}


/* Icon */

.oa-eco-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f2ff;
    border-radius: 12px;
    color: #035297;
    font-size: 19px;
}

.oa-eco-content h3 {
    margin: 0 0 3px;
    color: #222;
    font-size: 16px;
    font-weight: 700;
}

.oa-eco-content > span {
    display: block;
    margin-bottom: 7px;
    color: #035297;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.oa-eco-content p {
    margin: 0;
    color: #777;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================
   CARD POSITIONS
========================= */

.oa-eco-google {
    top: 0;
    left: 0;
}

.oa-eco-meta {
    top: 0;
    right: 0;
}

.oa-eco-linkedin {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}

.oa-eco-linkedin:hover {
    transform: translateY(calc(-50% - 5px));
}

.oa-eco-youtube {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.oa-eco-youtube:hover {
    transform: translateY(calc(-50% - 5px));
}

.oa-eco-remarketing {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.oa-eco-remarketing:hover {
    transform: translateX(-50%) translateY(-5px);
}


/* =========================
   BOTTOM NOTE
========================= */

.oa-ecosystem-note {
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 55px auto 0;
    padding: 17px 22px;
    background: #f8fbff;
    border: 1px solid #e5eef6;
    border-radius: 13px;
    color: #666;
    font-size: 13px;
    text-align: center;
}

.oa-note-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f2ff;
    border-radius: 10px;
    color: #035297;
}

.oa-ecosystem-note strong {
    color: #333;
    font-weight: 700;
}

.oa-ecosystem-note span {
    color: #666;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .oa-ecosystem {
        padding: 80px 0;
    }

    .oa-ecosystem-wrap {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .oa-ecosystem-wrap::before,
    .oa-ecosystem-wrap::after,
    .oa-ecosystem-center {
        display: none;
    }

    .oa-eco-card,
    .oa-eco-google,
    .oa-eco-meta,
    .oa-eco-linkedin,
    .oa-eco-youtube,
    .oa-eco-remarketing {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        transform: none;
    }

    .oa-eco-card:hover,
    .oa-eco-linkedin:hover,
    .oa-eco-youtube:hover,
    .oa-eco-remarketing:hover {
        transform: translateY(-5px);
    }

}

@media (max-width: 575px) {

    .oa-ecosystem {
        padding: 65px 0;
    }

    .oa-ecosystem .oa-section-heading {
        margin-bottom: 40px;
    }

    .oa-ecosystem-wrap {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .oa-eco-card {
        padding: 16px;
    }

    .oa-ecosystem-note {
        align-items: flex-start;
        text-align: left;
        margin-top: 35px;
    }

}
/* =========================
   SECTION 5 — CAMPAIGN STRATEGY
========================= */

.oa-strategy {
    padding: 100px 0;
    background: #f8fbff;
}

.oa-strategy .oa-section-heading {
    margin-bottom: 65px;
}


/* =========================
   STRATEGY FLOW
========================= */

.oa-strategy-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}


/* Strategy Step */

.oa-strategy-step {
    position: relative;
    width: 205px;
    padding: 22px 18px;
    background: #fff;
    border: 1px solid #e7eef5;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(20, 65, 100, .05);
    transition: all .3s ease;
}

.oa-strategy-step:hover {
    transform: translateY(-6px);
    border-color: #d2e2f0;
    box-shadow: 0 18px 38px rgba(20, 65, 100, .10);
}


/* Number */

.oa-step-number {
    position: absolute;
    top: 12px;
    right: 13px;
    color: #d8e7f4;
    font-size: 11px;
    font-weight: 700;
}


/* Icon */

.oa-step-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 18px;
    background: #e8f2ff;
    border-radius: 14px;
    color: #035297;
    font-size: 20px;
    transition: all .3s ease;
}

.oa-strategy-step:hover .oa-step-icon {
    background: #035297;
    color: #fff;
}

.oa-strategy-step h3 {
    margin: 0 0 10px;
    color: #222;
    font-size: 16px;
    font-weight: 700;
}

.oa-strategy-step p {
    margin: 0;
    color: #777;
    font-size: 11px;
    line-height: 1.7;
}


/* =========================
   FLOW ARROWS
========================= */

.oa-flow-arrow {
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9bbbd5;
    font-size: 13px;
}


/* =========================
   BOTTOM STRATEGY BAR
========================= */

.oa-strategy-bottom {
    display: flex;
    align-items: center;
    max-width: 950px;
    margin: 45px auto 0;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #e4edf6;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(20, 65, 100, .04);
}

.oa-strategy-bottom-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background: #e8f2ff;
    border-radius: 12px;
    color: #035297;
    font-size: 18px;
}

.oa-strategy-bottom-content {
    flex: 1;
}

.oa-strategy-bottom-content strong {
    display: block;
    margin-bottom: 3px;
    color: #222;
    font-size: 14px;
    font-weight: 700;
}

.oa-strategy-bottom-content p {
    margin: 0;
    color: #777;
    font-size: 11px;
    line-height: 1.6;
}

.oa-strategy-bottom-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 20px;
    padding: 9px 13px;
    background: #e8f2ff;
    border-radius: 8px;
    color: #035297;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {

    .oa-strategy-step {
        width: 180px;
    }

    .oa-flow-arrow {
        width: 25px;
    }

}

@media (max-width: 991px) {

    .oa-strategy {
        padding: 80px 0;
    }

    .oa-strategy-flow {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .oa-strategy-step {
        width: 100%;
    }

    .oa-flow-arrow {
        display: none;
    }

    .oa-strategy-bottom {
        margin-top: 30px;
    }

}

@media (max-width: 575px) {

    .oa-strategy {
        padding: 65px 0;
    }

    .oa-strategy .oa-section-heading {
        margin-bottom: 40px;
    }

    .oa-strategy-flow {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .oa-strategy-step {
        padding: 20px;
    }

    .oa-strategy-bottom {
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 18px;
    }

    .oa-strategy-bottom-content {
        width: calc(100% - 61px);
    }

    .oa-strategy-bottom-badge {
        width: 100%;
        margin: 15px 0 0 61px;
        justify-content: center;
    }

}
/* =========================
   SECTION 6 — PLATFORM SERVICES
========================= */

.oa-platform-services {
    padding: 100px 0;
    background: #fff;
}

.oa-platform-services .oa-section-heading {
    margin-bottom: 55px;
}


/* =========================
   FEATURED GOOGLE ADS CARD
========================= */

.oa-featured-platform {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 1050px;
    margin: 0 auto 25px;
    padding: 28px 30px;
    background: linear-gradient(135deg, #f5f9fe 0%, #ffffff 100%);
    border: 1px solid #dfeaf4;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(20, 65, 100, .06);
    transition: all .3s ease;
}

.oa-featured-platform:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(20, 65, 100, .10);
}


/* Featured Icon */

.oa-featured-icon {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #035297;
    border-radius: 17px;
    color: #fff;
    font-size: 29px;
    box-shadow: 0 12px 25px rgba(3, 82, 151, .18);
}

.oa-featured-content {
    flex: 1;
}

.oa-platform-label {
    margin-bottom: 5px;
    color: #035297;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
}

.oa-featured-content h3 {
    margin: 0 0 8px;
    color: #222;
    font-size: 22px;
    font-weight: 700;
}

.oa-featured-content p {
    max-width: 650px;
    margin: 0 0 15px;
    color: #707070;
    font-size: 13px;
    line-height: 1.7;
}


/* Tags */

.oa-featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.oa-featured-tags span,
.oa-platform-tags span {
    display: inline-block;
    padding: 5px 9px;
    background: #fff;
    border: 1px solid #e2ebf3;
    border-radius: 6px;
    color: #68798a;
    font-size: 9px;
    font-weight: 500;
}


/* Featured Link */

.oa-platform-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #dce7f0;
    border-radius: 8px;
    color: #035297 !important;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none !important;
    transition: all .25s ease;
}

.oa-platform-link:hover {
    background: #035297;
    border-color: #035297;
    color: #fff !important;
}


/* =========================
   PLATFORM CARDS
========================= */

.oa-platform-grid {
    max-width: 1100px;
    margin: 0 auto;
}

.oa-platform-card {
    height: 100%;
    padding: 22px;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 17px;
    box-shadow: 0 8px 28px rgba(20, 65, 100, .045);
    transition: all .3s ease;
}

.oa-platform-card:hover {
    transform: translateY(-6px);
    border-color: #d3e2ef;
    box-shadow: 0 18px 40px rgba(20, 65, 100, .09);
}


/* Card Top */

.oa-platform-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.oa-platform-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f2ff;
    border-radius: 12px;
    color: #035297;
    font-size: 18px;
    transition: all .3s ease;
}

.oa-platform-card:hover .oa-platform-icon {
    background: #035297;
    color: #fff;
}

.oa-platform-arrow {
    color: #b4c7d8;
    font-size: 11px;
}


/* Content */

.oa-platform-purpose {
    display: block;
    margin-bottom: 7px;
    color: #035297;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .7px;
}

.oa-platform-card h3 {
    margin: 0 0 10px;
    color: #222;
    font-size: 17px;
    font-weight: 700;
}

.oa-platform-card p {
    min-height: 66px;
    margin: 0 0 18px;
    color: #777;
    font-size: 11px;
    line-height: 1.7;
}


/* Card Tags */

.oa-platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.oa-platform-tags span {
    padding: 4px 7px;
    background: #f8fbff;
}


/* =========================
   BOTTOM CTA
========================= */

.oa-platform-bottom {
    max-width: 1050px;
    margin: 35px auto 0;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #035297;
    border-radius: 14px;
}

.oa-platform-bottom-content {
    display: flex;
    align-items: center;
    gap: 13px;
}

.oa-bottom-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12);
    border-radius: 10px;
    color: #fff;
    font-size: 17px;
}

.oa-platform-bottom-content span {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .7);
    font-size: 10px;
}

.oa-platform-bottom-content strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.oa-bottom-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #fff;
    border-radius: 8px;
    color: #035297 !important;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all .25s ease;
}

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


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .oa-platform-services {
        padding: 80px 0;
    }

    .oa-featured-platform {
        align-items: flex-start;
    }

    .oa-featured-platform .oa-platform-link {
        margin-top: 10px;
    }

}

@media (max-width: 767px) {

    .oa-featured-platform {
        flex-wrap: wrap;
        padding: 22px;
    }

    .oa-featured-content {
        width: calc(100% - 95px);
    }

    .oa-featured-platform .oa-platform-link {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }

    .oa-platform-card p {
        min-height: auto;
    }

    .oa-platform-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .oa-bottom-btn {
        justify-content: center;
    }

}

@media (max-width: 575px) {

    .oa-platform-services {
        padding: 65px 0;
    }

    .oa-platform-services .oa-section-heading {
        margin-bottom: 40px;
    }

    .oa-featured-platform {
        gap: 15px;
    }

    .oa-featured-icon {
        width: 55px;
        height: 55px;
        flex: 0 0 55px;
        font-size: 23px;
    }

    .oa-featured-content {
        width: calc(100% - 70px);
    }

    .oa-featured-content h3 {
        font-size: 19px;
    }

    .oa-platform-bottom-content {
        align-items: flex-start;
    }

}
/* =========================
   SECTION 7 — ANALYTICS
========================= */

.oa-analytics {
    padding: 100px 0;
    background: #f8fbff;
}

.oa-analytics .oa-section-heading {
    margin-bottom: 65px;
}


/* =========================
   LEFT CONTENT
========================= */

.oa-analytics-content {
    max-width: 480px;
}

.oa-analytics-mini {
    display: inline-block;
    margin-bottom: 12px;
    color: #035297;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
}

.oa-analytics-content h3 {
    margin: 0 0 17px;
    color: #222;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.oa-analytics-content h3 span {
    color: #035297;
}

.oa-analytics-content > p {
    margin: 0 0 28px;
    color: #707070;
    font-size: 13px;
    line-height: 1.8;
}


/* Analytics Points */

.oa-analytics-points {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.oa-analytics-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.oa-point-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f2ff;
    border-radius: 9px;
    color: #035297;
    font-size: 11px;
}

.oa-analytics-point strong {
    display: block;
    margin-bottom: 2px;
    color: #333;
    font-size: 12px;
    font-weight: 700;
}

.oa-analytics-point span {
    display: block;
    color: #888;
    font-size: 10px;
}


/* =========================
   DASHBOARD
========================= */

.oa-analytics-dashboard {
    padding: 23px;
    background: #fff;
    border: 1px solid #e4edf5;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(20, 65, 100, .08);
}


/* Header */

.oa-analytics-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid #edf2f7;
}

.oa-analytics-header small {
    display: block;
    margin-bottom: 4px;
    color: #999;
    font-size: 9px;
    letter-spacing: .5px;
}

.oa-analytics-header strong {
    color: #222;
    font-size: 15px;
}

.oa-analytics-filter {
    padding: 7px 10px;
    background: #f8fbff;
    border-radius: 7px;
    color: #777;
    font-size: 9px;
}

.oa-analytics-filter i {
    margin-right: 4px;
    color: #035297;
}


/* Metrics */

.oa-analytics-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.oa-metric {
    padding: 14px;
    background: #f8fbff;
    border-radius: 11px;
}

.oa-metric > span {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    color: #888;
    font-size: 9px;
}

.oa-metric > span i {
    color: #035297;
}

.oa-metric strong {
    display: block;
    margin-bottom: 4px;
    color: #222;
    font-size: 20px;
    font-weight: 700;
}

.oa-metric em {
    color: #159447;
    font-size: 9px;
    font-style: normal;
    font-weight: 600;
}

.oa-metric em i {
    margin-right: 3px;
}


/* =========================
   PERFORMANCE CHART
========================= */

.oa-performance-chart {
    padding: 18px;
    border: 1px solid #edf2f7;
    border-radius: 13px;
}

.oa-chart-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.oa-chart-title strong {
    display: block;
    margin-bottom: 2px;
    color: #333;
    font-size: 11px;
}

.oa-chart-title small {
    color: #999;
    font-size: 9px;
}

.oa-chart-legend {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #888;
    font-size: 9px;
}

.oa-chart-legend span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #035297;
}

.oa-performance-area {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.oa-performance-grid {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #edf2f7;
}

.grid-one {
    top: 15%;
}

.grid-two {
    top: 40%;
}

.grid-three {
    top: 65%;
}

.grid-four {
    top: 90%;
}

.oa-performance-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.oa-chart-months {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    color: #aaa;
    font-size: 8px;
}


/* =========================
   TRACKING ROW
========================= */

.oa-tracking-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.oa-tracking-row > div {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px;
    background: #f8fbff;
    border-radius: 8px;
}

.oa-tracking-row > div > i {
    color: #035297;
    font-size: 12px;
}

.oa-tracking-row small {
    display: block;
    color: #999;
    font-size: 8px;
}

.oa-tracking-row strong {
    display: block;
    color: #333;
    font-size: 9px;
    font-weight: 600;
}


/* =========================
   BOTTOM STATEMENT
========================= */

.oa-analytics-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 850px;
    margin: 45px auto 0;
    padding: 17px 22px;
    background: #fff;
    border: 1px solid #e3edf5;
    border-radius: 12px;
    color: #777;
    font-size: 12px;
    text-align: center;
}

.oa-analytics-bottom > i {
    color: #035297;
    font-size: 16px;
}

.oa-analytics-bottom strong {
    color: #035297;
    font-weight: 700;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .oa-analytics {
        padding: 80px 0;
    }

    .oa-analytics-content {
        max-width: 100%;
    }

    .oa-analytics-dashboard {
        margin-top: 15px;
    }

}

@media (max-width: 767px) {

    .oa-analytics-metrics {
        grid-template-columns: 1fr;
    }

    .oa-tracking-row {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 575px) {

    .oa-analytics {
        padding: 65px 0;
    }

    .oa-analytics .oa-section-heading {
        margin-bottom: 40px;
    }

    .oa-analytics-content h3 {
        font-size: 29px;
    }

    .oa-analytics-dashboard {
        padding: 15px;
    }

    .oa-analytics-header {
        align-items: flex-start;
        gap: 10px;
    }

    .oa-analytics-filter {
        font-size: 8px;
    }

    .oa-performance-chart {
        padding: 12px;
    }

    .oa-analytics-bottom {
        align-items: flex-start;
        text-align: left;
    }

}
/* =========================
   SECTION 8: INDUSTRIES
========================= */

.oa-industries {
    padding: 100px 0;
    background: #ffffff;
}

.oa-section-head {
    max-width: 760px;
    margin: 0 auto 55px;
}

.oa-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 30px;
    background: #e8f2ff;
    color: #035297;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.oa-section-head h2 {
    margin: 0 0 18px;
    color: #222;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

.oa-section-head h2 span {
    color: #035297;
}

.oa-section-head p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}


/* Main Industry Cards */

.oa-industry-card {
    position: relative;
    height: 100%;
    min-height: 290px;
    padding: 34px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 22px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    overflow: hidden;
    transition: all .3s ease;
}

.oa-industry-card:hover {
    transform: translateY(-6px);
    border-color: #d9e9fb;
    box-shadow: 0 18px 45px rgba(3, 82, 151, .10);
}

.oa-industry-card:after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    bottom: -90px;
    border-radius: 50%;
    background: #e8f2ff;
    opacity: .55;
}

.oa-industry-featured {
    background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
}


/* Industry Icon */

.oa-industry-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #035297, #0d6efd);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(3, 82, 151, .18);
}

.oa-industry-content {
    position: relative;
    z-index: 2;
    padding-right: 25px;
}

.oa-industry-label {
    display: block;
    color: #035297;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.oa-industry-content h3 {
    margin: 0 0 12px;
    color: #222;
    font-size: 25px;
    font-weight: 700;
}

.oa-industry-content p {
    margin: 0 0 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.75;
}

.oa-industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.oa-industry-tags span {
    padding: 7px 11px;
    border-radius: 8px;
    background: #f4f7fa;
    color: #555;
    font-size: 11px;
    font-weight: 600;
}


/* Arrow */

.oa-industry-arrow {
    position: absolute;
    right: 28px;
    top: 28px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e8f2ff;
    color: #035297;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all .3s ease;
    z-index: 3;
}

.oa-industry-card:hover .oa-industry-arrow {
    background: #035297;
    color: #fff;
    transform: translateX(4px);
}


/* Mini Cards */

.oa-industry-mini {
    height: 100%;
    padding: 28px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    transition: all .3s ease;
}

.oa-industry-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(3, 82, 151, .08);
    border-color: #d9e9fb;
}

.oa-mini-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: #e8f2ff;
    color: #035297;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 17px;
}

.oa-industry-mini h4 {
    margin: 0 0 10px;
    color: #222;
    font-size: 18px;
    font-weight: 700;
}

.oa-industry-mini p {
    margin: 0 0 18px;
    color: #666;
    font-size: 13px;
    line-height: 1.7;
}

.oa-mini-line {
    display: flex;
    gap: 8px;
}

.oa-mini-line span {
    padding: 5px 9px;
    border-radius: 6px;
    background: #f4f7fa;
    color: #035297;
    font-size: 10px;
    font-weight: 700;
}


/* Bottom Insight */

.oa-industry-bottom {
    margin-top: 25px;
    padding: 22px 25px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    gap: 18px;
}

.oa-industry-bottom-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #035297;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oa-industry-bottom strong {
    display: block;
    color: #222;
    font-size: 15px;
    margin-bottom: 3px;
}

.oa-industry-bottom p {
    margin: 0;
    color: #777;
    font-size: 13px;
}

.oa-industry-btn {
    margin-left: auto;
    white-space: nowrap;
    padding: 11px 18px;
    border-radius: 9px;
    background: #035297;
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .3s ease;
}

.oa-industry-btn i {
    margin-left: 7px;
    font-size: 10px;
}

.oa-industry-btn:hover {
    background: #0d6efd;
    transform: translateY(-2px);
}


/* Responsive */

@media (max-width: 991px) {

    .oa-industries {
        padding: 75px 0;
    }

    .oa-section-head h2 {
        font-size: 34px;
    }

    .oa-industry-card {
        min-height: auto;
    }

    .oa-industry-bottom {
        flex-wrap: wrap;
    }

    .oa-industry-btn {
        margin-left: 63px;
    }
}

@media (max-width: 575px) {

    .oa-industries {
        padding: 60px 0;
    }

    .oa-section-head {
        margin-bottom: 35px;
    }

    .oa-section-head h2 {
        font-size: 28px;
    }

    .oa-section-head p {
        font-size: 14px;
    }

    .oa-industry-card {
        padding: 25px 22px;
        gap: 15px;
    }

    .oa-industry-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .oa-industry-content h3 {
        font-size: 21px;
    }

    .oa-industry-content p {
        font-size: 13px;
    }

    .oa-industry-arrow {
        display: none;
    }

    .oa-industry-bottom {
        align-items: flex-start;
    }

    .oa-industry-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}
/* =========================
   SECTION 9: INTEGRATED GROWTH
========================= */

.oa-growth {
    padding: 100px 0;
    background: #f8fbff;
}

.oa-growth-system {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 260px 1fr;
    align-items: center;
    gap: 45px;
    max-width: 1120px;
    margin: 0 auto;
}


/* =========================
   LEFT CHANNEL CARDS
========================= */

.oa-growth-channels {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.oa-growth-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8fbff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    transition: all .3s ease;
}

.oa-growth-card:hover {
    transform: translateX(5px);
    background: #fff;
    border-color: #d9e9fb;
    box-shadow: 0 12px 30px rgba(3, 82, 151, .08);
}

.oa-growth-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #e8f2ff;
    color: #035297;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.oa-growth-card span {
    display: block;
    margin-bottom: 4px;
    color: #035297;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.oa-growth-card h3 {
    margin: 0 0 6px;
    color: #222;
    font-size: 19px;
    font-weight: 700;
}

.oa-growth-card p {
    margin: 0;
    color: #707070;
    font-size: 12px;
    line-height: 1.65;
}


/* Paid Card */

.oa-growth-paid {
    background: linear-gradient(
        135deg,
        #f4f9ff,
        #ffffff
    );
}


/* =========================
   CENTER GROWTH SYSTEM
========================= */

.oa-growth-center {
    position: relative;
    width: 230px;
    height: 230px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oa-growth-ring {
    position: absolute;
    border: 1px dashed #b9d6f2;
    border-radius: 50%;
}

.ring-one {
    width: 185px;
    height: 185px;
}

.ring-two {
    width: 225px;
    height: 225px;
    opacity: .55;
}

.oa-growth-core {
    position: relative;
    z-index: 3;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #035297,
        #0d6efd
    );
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(3, 82, 151, .25);
}

.oa-growth-core i {
    margin-bottom: 7px;
    font-size: 22px;
}

.oa-growth-core strong {
    font-size: 16px;
    line-height: 1;
}

.oa-growth-core span {
    margin-top: 3px;
    font-size: 11px;
    opacity: .85;
}


/* Connection Dots */

.oa-growth-dot {
    position: absolute;
    z-index: 4;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0d6efd;
    box-shadow: 0 0 0 5px #e8f2ff;
}

.dot-top {
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.dot-right {
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.dot-bottom {
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.dot-left {
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}


/* =========================
   RIGHT OUTCOMES
========================= */

.oa-growth-outcomes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.oa-outcome {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
    border: 1px solid #edf2f7;
    border-radius: 15px;
    background: #fff;
    transition: all .3s ease;
}

.oa-outcome:hover {
    transform: translateX(-5px);
    border-color: #d9e9fb;
    box-shadow: 0 12px 30px rgba(3, 82, 151, .07);
}

.oa-outcome-number {
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    border-radius: 9px;
    background: #e8f2ff;
    color: #035297;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.oa-outcome strong {
    display: block;
    margin-bottom: 3px;
    color: #222;
    font-size: 14px;
    font-weight: 700;
}

.oa-outcome p {
    margin: 0;
    color: #777;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================
   BOTTOM CTA STRIP
========================= */

.oa-growth-bottom {
    max-width: 1120px;
    margin: 55px auto 0;
    padding: 22px 25px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    gap: 17px;
}

.oa-growth-bottom-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #035297;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oa-growth-bottom strong {
    display: block;
    color: #222;
    font-size: 14px;
    margin-bottom: 3px;
}

.oa-growth-bottom p {
    margin: 0;
    color: #777;
    font-size: 12px;
}

.oa-growth-btn {
    margin-left: auto;
    white-space: nowrap;
    padding: 11px 18px;
    border-radius: 9px;
    background: #035297;
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .3s ease;
}

.oa-growth-btn:hover {
    background: #0d6efd;
    transform: translateY(-2px);
}

.oa-growth-btn i {
    margin-left: 7px;
    font-size: 10px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .oa-growth {
        padding: 75px 0;
    }

    .oa-growth-system {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .oa-growth-center {
        order: -1;
        width: 200px;
        height: 200px;
    }

    .oa-growth-card:hover {
        transform: translateY(-3px);
    }

    .oa-outcome:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 575px) {

    .oa-growth {
        padding: 60px 0;
    }

    .oa-growth-center {
        transform: scale(.85);
        margin: -10px auto;
    }

    .oa-growth-card {
        padding: 17px;
    }

    .oa-growth-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .oa-growth-card h3 {
        font-size: 17px;
    }

    .oa-growth-bottom {
        align-items: flex-start;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .oa-growth-btn {
        width: 100%;
        margin-left: 62px;
        text-align: center;
    }
}
/* =========================
   SECTION 10: WHY HGS
========================= */

.oa-why-hgs {
    padding: 100px 0;
    background: #ffffff;
}


/* =========================
   GRID
========================= */

.oa-why-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 18px;
    max-width: 1120px;
    margin: 0 auto;
}


/* =========================
   MAIN TRUST CARD
========================= */

.oa-trust-card {
    grid-row: span 2;
    padding: 32px;
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        #035297 0%,
        #0d6efd 100%
    );
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(3, 82, 151, .16);
}

.oa-trust-card:before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    right: -100px;
    bottom: -110px;
}

.oa-trust-card:after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.10);
    right: 30px;
    bottom: 25px;
}

.oa-trust-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
}

.oa-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 7px;
    background: rgba(255,255,255,.12);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .8px;
}

.oa-trust-badge i {
    font-size: 10px;
}

.oa-trust-status {
    font-size: 9px;
    color: rgba(255,255,255,.8);
}

.oa-trust-status i {
    margin-right: 4px;
    font-size: 6px;
}

.oa-trust-card h3 {
    position: relative;
    z-index: 2;
    max-width: 390px;
    margin: 0 0 16px;
    color: #fff;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
}

.oa-trust-card h3 span {
    display: block;
    color: rgba(255,255,255,.75);
}

.oa-trust-card > p {
    position: relative;
    z-index: 2;
    max-width: 390px;
    margin: 0;
    color: rgba(255,255,255,.8);
    font-size: 13px;
    line-height: 1.75;
}

.oa-trust-divider {
    position: relative;
    z-index: 2;
    height: 1px;
    margin: 30px 0 22px;
    background: rgba(255,255,255,.16);
}

.oa-trust-points {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.oa-trust-points div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.9);
    font-size: 11px;
    line-height: 1.4;
}

.oa-trust-points i {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}


/* =========================
   WHY CARDS
========================= */

.oa-why-card {
    position: relative;
    padding: 25px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    transition: all .3s ease;
}

.oa-why-card:hover {
    transform: translateY(-5px);
    border-color: #d9e9fb;
    box-shadow: 0 15px 35px rgba(3,82,151,.08);
}

.oa-why-card > span {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #cbd9e7;
    font-size: 11px;
    font-weight: 700;
}

.oa-why-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: #e8f2ff;
    color: #035297;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.oa-why-card h3 {
    margin: 0 0 10px;
    color: #222;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.oa-why-card p {
    margin: 0 0 17px;
    color: #707070;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================
   TAGS
========================= */

.oa-why-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.oa-why-tags span {
    padding: 5px 8px;
    border-radius: 6px;
    background: #f4f7fa;
    color: #035297;
    font-size: 9px;
    font-weight: 600;
}


/* =========================
   OPTIMIZATION
========================= */

.oa-why-progress {
    margin-top: 18px;
}

.oa-why-progress > div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.oa-why-progress small {
    color: #888;
    font-size: 9px;
}

.oa-why-progress strong {
    color: #035297;
    font-size: 9px;
}

.oa-progress-track {
    height: 5px;
    border-radius: 10px;
    background: #edf2f7;
    overflow: hidden;
}

.oa-progress-track div {
    width: 78%;
    height: 100%;
    border-radius: 10px;
    background: #0d6efd;
}


/* =========================
   MEASUREMENT
========================= */

.oa-measure-items {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.oa-measure-items span {
    padding: 6px 8px;
    border-radius: 7px;
    background: #f4f7fa;
    color: #555;
    font-size: 9px;
    font-weight: 600;
}

.oa-measure-items i {
    margin-right: 3px;
    color: #035297;
    font-size: 8px;
}


/* =========================
   INTEGRATED FLOW
========================= */

.oa-integrated-flow {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.oa-integrated-flow span,
.oa-integrated-flow strong {
    padding: 6px 8px;
    border-radius: 6px;
    background: #f4f7fa;
    color: #555;
    font-size: 9px;
}

.oa-integrated-flow strong {
    background: #e8f2ff;
    color: #035297;
}

.oa-integrated-flow i {
    color: #a5b5c5;
    font-size: 8px;
}


/* =========================
   ACCOUNTABILITY STRIP
========================= */

.oa-accountability {
    max-width: 1120px;
    margin: 22px auto 0;
    padding: 21px 24px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 17px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.oa-accountability-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    border-radius: 11px;
    background: #e8f2ff;
    color: #035297;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oa-accountability-content strong {
    display: block;
    margin-bottom: 3px;
    color: #222;
    font-size: 13px;
}

.oa-accountability-content p {
    margin: 0;
    color: #777;
    font-size: 11px;
}

.oa-accountability-points {
    margin-left: auto;
    display: flex;
    gap: 15px;
}

.oa-accountability-points span {
    color: #555;
    font-size: 10px;
    font-weight: 600;
}

.oa-accountability-points i {
    margin-right: 4px;
    color: #035297;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .oa-why-hgs {
        padding: 75px 0;
    }

    .oa-why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .oa-trust-card {
        grid-column: span 2;
        grid-row: auto;
    }

    .oa-accountability {
        flex-wrap: wrap;
    }

    .oa-accountability-points {
        width: 100%;
        margin-left: 58px;
    }
}

@media (max-width: 575px) {

    .oa-why-hgs {
        padding: 60px 0;
    }

    .oa-why-grid {
        grid-template-columns: 1fr;
    }

    .oa-trust-card {
        grid-column: auto;
        padding: 25px;
    }

    .oa-trust-card h3 {
        font-size: 25px;
    }

    .oa-trust-top {
        margin-bottom: 30px;
    }

    .oa-trust-points {
        grid-template-columns: 1fr;
    }

    .oa-why-card {
        padding: 22px;
    }

    .oa-accountability {
        align-items: flex-start;
    }

    .oa-accountability-points {
        margin-left: 58px;
        flex-direction: column;
        gap: 8px;
    }
}
/* =========================
   SECTION 11: FAQ
========================= */

.oa-faq {
    padding: 100px 0;
    background: #f8fbff;
}

.oa-faq-wrap {
    max-width: 900px;
    margin: 0 auto;
}


/* =========================
   FAQ ITEM
========================= */

.oa-faq-item {
    margin-bottom: 12px;
    background: #f8fbff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
}

.oa-faq-item:hover {
    border-color: #d9e9fb;
}

.oa-faq-item.active {
    background: #fff;
    border-color: #d9e9fb;
    box-shadow: 0 10px 30px rgba(3,82,151,.06);
}


/* =========================
   QUESTION
========================= */

.oa-faq-question {
    width: 100%;
    padding: 21px 24px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    outline: none !important;
}

.oa-faq-question > span {
    display: flex;
    align-items: center;
    color: #222;
    font-size: 15px;
    font-weight: 600;
}

.oa-faq-question small {
    margin-right: 17px;
    color: #035297;
    font-size: 10px;
    font-weight: 700;
}

.oa-faq-question i {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #e8f2ff;
    color: #035297;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}


/* =========================
   ANSWER
========================= */

.oa-faq-answer {
    display: none;
    padding: 0 70px 22px 60px;
}

.oa-faq-item.active .oa-faq-answer {
    display: block;
}

.oa-faq-answer p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================
   BOTTOM CTA
========================= */

.oa-faq-bottom {
    max-width: 900px;
    margin: 30px auto 0;
    padding: 21px 24px;
    border: 1px solid #edf2f7;
    border-radius: 17px;
    background: #f8fbff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.oa-faq-bottom-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: #e8f2ff;
    color: #035297;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oa-faq-bottom strong {
    display: block;
    margin-bottom: 3px;
    color: #222;
    font-size: 13px;
}

.oa-faq-bottom p {
    margin: 0;
    color: #777;
    font-size: 11px;
}

.oa-faq-btn {
    margin-left: auto;
    padding: 11px 18px;
    white-space: nowrap;
    border-radius: 9px;
    background: #035297;
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .3s ease;
}

.oa-faq-btn:hover {
    background: #0d6efd;
    transform: translateY(-2px);
}

.oa-faq-btn i {
    margin-left: 7px;
    font-size: 9px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 767px) {

    .oa-faq {
        padding: 75px 0;
    }

    .oa-faq-question {
        padding: 18px;
    }

    .oa-faq-question > span {
        font-size: 13px;
        line-height: 1.5;
        padding-right: 10px;
    }

    .oa-faq-question small {
        margin-right: 10px;
    }

    .oa-faq-answer {
        padding: 0 20px 20px 43px;
    }

    .oa-faq-answer p {
        font-size: 12px;
    }

    .oa-faq-bottom {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .oa-faq-btn {
        width: 100%;
        margin-left: 59px;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .oa-faq {
        padding: 60px 0;
    }

    .oa-faq-question > span {
        font-size: 12px;
    }

    .oa-faq-question small {
        font-size: 9px;
    }

    .oa-faq-answer {
        padding-left: 18px;
    }

    .oa-faq-btn {
        margin-left: 0;
    }
}
/* =========================
   FINAL CTA
========================= */

.oa-final-cta {
    padding: 90px 0;
    background: #ffffff;
}

.oa-final-cta-box {
    position: relative;
    padding: 65px 65px 30px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #035297 0%,
        #0d6efd 100%
    );
    box-shadow: 0 25px 60px rgba(3,82,151,.18);
}

.oa-cta-circle {
    position: absolute;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    pointer-events: none;
}

.oa-cta-circle-1 {
    width: 420px;
    height: 420px;
    right: -180px;
    top: -210px;
}

.oa-cta-circle-2 {
    width: 260px;
    height: 260px;
    right: -90px;
    bottom: -160px;
}


/* =========================
   CTA CONTENT
========================= */

.oa-final-cta-box .row {
    position: relative;
    z-index: 2;
}

.oa-final-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    margin-bottom: 18px;
    border-radius: 30px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.oa-final-badge i {
    font-size: 10px;
}

.oa-final-cta h2 {
    max-width: 600px;
    margin: 0 0 18px;
    color: #fff;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.oa-final-cta h2 span {
    display: block;
    color: rgba(255,255,255,.72);
}

.oa-final-cta p {
    max-width: 580px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   BUTTONS
========================= */

.oa-final-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.oa-final-primary,
.oa-final-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 19px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .3s ease;
}

.oa-final-primary {
    background: #fff;
    color: #035297 !important;
}

.oa-final-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.oa-final-primary i {
    font-size: 10px;
}

.oa-final-secondary {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
}

.oa-final-secondary:hover {
    background: rgba(255,255,255,.16);
    transform: translateY(-2px);
}


/* =========================
   DASHBOARD VISUAL
========================= */

.oa-cta-dashboard {
    position: relative;
    z-index: 3;
    max-width: 390px;
    margin: 0 auto;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
}

.oa-cta-dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.oa-cta-dashboard-top span {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

.oa-cta-dashboard-top span i {
    margin-right: 6px;
}

.oa-cta-dashboard-top small {
    color: rgba(255,255,255,.7);
    font-size: 8px;
}

.oa-cta-dashboard-top small i {
    margin-right: 3px;
    font-size: 5px;
}


/* Chart */

.oa-cta-chart {
    position: relative;
    height: 145px;
    margin: 20px 0;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(255,255,255,.07) 1px,
            transparent 1px
        );
    background-size: 100% 35px;
}

.oa-chart-line {
    position: absolute;
    left: 3%;
    right: 3%;
    bottom: 15px;
    height: 85px;
    border-top: 2px solid rgba(255,255,255,.9);
    transform: skewY(-13deg) rotate(-2deg);
    border-radius: 50%;
}

.oa-chart-point {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,255,255,.12);
}

.point-1 {
    left: 5%;
    bottom: 28px;
}

.point-2 {
    left: 25%;
    bottom: 48px;
}

.point-3 {
    left: 47%;
    bottom: 58px;
}

.point-4 {
    left: 68%;
    bottom: 87px;
}

.point-5 {
    right: 5%;
    bottom: 112px;
}


/* Metrics */

.oa-cta-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.oa-cta-metrics > div {
    padding: 11px;
    border-radius: 9px;
    background: rgba(255,255,255,.08);
}

.oa-cta-metrics small {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,.55);
    font-size: 8px;
}

.oa-cta-metrics strong {
    display: block;
    color: #fff;
    font-size: 9px;
}

.oa-cta-metrics strong i {
    margin-right: 3px;
    font-size: 7px;
}


/* =========================
   TRUST STRIP
========================= */

.oa-final-trust {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.oa-final-trust span {
    color: rgba(255,255,255,.78);
    font-size: 10px;
    font-weight: 600;
}

.oa-final-trust i {
    margin-right: 5px;
    color: #fff;
    font-size: 9px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .oa-final-cta {
        padding: 75px 0;
    }

    .oa-final-cta-box {
        padding: 50px 40px 28px;
    }

    .oa-final-cta h2 {
        font-size: 36px;
    }

    .oa-cta-dashboard {
        margin-top: 40px;
    }

    .oa-final-trust {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {

    .oa-final-cta {
        padding: 60px 0;
    }

    .oa-final-cta-box {
        padding: 38px 22px 22px;
        border-radius: 20px;
    }

    .oa-final-cta h2 {
        font-size: 29px;
    }

    .oa-final-cta p {
        font-size: 13px;
    }

    .oa-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .oa-final-primary,
    .oa-final-secondary {
        width: 100%;
    }

    .oa-cta-dashboard {
        padding: 16px;
    }

    .oa-cta-chart {
        height: 120px;
    }

    .oa-cta-metrics {
        grid-template-columns: 1fr;
    }

    .oa-final-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .oa-final-trust span {
        font-size: 9px;
    }
}