:root {
    --gmb-blue: #1769e8;
    --gmb-blue-dark: #0d5dcc;
    --gmb-green: #83ce27;
    --gmb-navy: #071a38;
    --gmb-text: #5f718a;
    --gmb-light: #f6f9fd;
    --gmb-border: #dce6f0;
    --gmb-white: #ffffff;
}

body {
    font-family: "Poppins", sans-serif;
}

.gmb-hero,
.gmb-services-section,
.gmb-why-section,
.gmb-process-section,
.gmb-cta-section {
    font-family: "Poppins", sans-serif;
}

.gmb-hero i,
.gmb-services-section i,
.gmb-why-section i,
.gmb-process-section i,
.gmb-cta-section i {
    font-family: "Font Awesome 6 Free" !important;
    font-style: normal;
}

.gmb-hero {
    position: relative;
    min-height: 520px;
    padding: 150px 0 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(23, 105, 232, .18),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(131, 206, 39, .07),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #071a38 0%,
            #0a2954 55%,
            #0d3d7d 100%
        );
}

.gmb-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 56, .16),
            transparent 60%
        );
}

.gmb-hero-container {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, .82fr);
    gap: 50px;
    align-items: center;
}

.gmb-hero-content {
    max-width: 660px;
}

.gmb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #dfffad;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.gmb-eyebrow::before {
    content: "";
    width: 27px;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        var(--gmb-blue),
        var(--gmb-green)
    );
}

.gmb-hero-content h1 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -2.4px;
}

.gmb-hero-content h1 span {
    display: block;
    color: var(--gmb-green);
}

.gmb-hero-content p {
    max-width: 560px;
    margin: 18px 0 24px;
    color: rgba(255,255,255,.76);
    font-size: 14px;
    line-height: 1.75;
}

.gmb-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.gmb-btn {
    min-height: 46px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.gmb-btn-primary {
    color: #fff;
    background: var(--gmb-blue);
    border: 1px solid var(--gmb-blue);
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.gmb-btn-primary:hover {
    color: #fff;
    background: var(--gmb-blue-dark);
    border-color: var(--gmb-blue-dark);
    transform: translateY(-2px);
}

.gmb-btn-light {
    color: var(--gmb-navy);
    background: #fff;
    border: 1px solid #fff;
}

.gmb-btn-light:hover {
    color: var(--gmb-blue);
    background: #f3f7fb;
    transform: translateY(-2px);
}

.gmb-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 18px;
}

.gmb-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.70);
    font-size: 10px;
    font-weight: 500;
}

.gmb-hero-points i {
    color: var(--gmb-green);
    font-size: 9px;
}

/* PROFILE */

.gmb-hero-side {
    display: flex;
    justify-content: flex-end;
}

.gmb-profile-card {
    width: min(350px, 100%);
    padding: 20px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background: rgba(255,255,255,.065);
    box-shadow: 0 20px 50px rgba(0,0,0,.20);
    backdrop-filter: blur(10px);
}

.gmb-profile-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gmb-business-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(23,105,232,.20);
    color: #fff;
    font-size: 15px;
}

.gmb-profile-top div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gmb-profile-top strong {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

.gmb-profile-top span {
    color: rgba(255,255,255,.52);
    font-size: 8px;
}

.gmb-status {
    margin-left: auto;
    color: #dfffad !important;
    font-size: 8px !important;
    white-space: nowrap;
}

.gmb-status i {
    color: var(--gmb-green);
    font-size: 6px;
    margin-right: 3px;
}

.gmb-search-box {
    min-height: 40px;
    margin-top: 16px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: rgba(255,255,255,.075);
    color: rgba(255,255,255,.56);
    font-size: 9px;
}

.gmb-search-box i {
    color: #8fbcff;
}

.gmb-result-card {
    margin-top: 11px;
    padding: 14px;
    border-radius: 11px;
    background: #fff;
}

.gmb-result-head {
    display: flex;
    align-items: center;
    gap: 9px;
}

.gmb-result-logo {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--gmb-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.gmb-result-head div:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gmb-result-head strong {
    color: var(--gmb-navy);
    font-size: 10px;
}

.gmb-result-head span {
    color: #8492a3;
    font-size: 7px;
}

.gmb-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.gmb-rating strong {
    color: var(--gmb-navy);
    font-size: 10px;
}

.gmb-rating span {
    color: #f3af26;
    font-size: 8px;
}

.gmb-rating small {
    color: #8c98a7;
    font-size: 7px;
}

.gmb-result-actions {
    margin-top: 10px;
    padding-top: 9px;
    border-top: 1px solid #edf1f5;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.gmb-result-actions span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #51657b;
    font-size: 7.5px;
}

.gmb-result-actions i {
    color: var(--gmb-blue);
    font-size: 8px;
}

/* SECTION HEADING */

.gmb-section-head {
    max-width: 730px;
    margin: 0 auto 42px;
    text-align: center;
}

.gmb-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gmb-blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.gmb-section-label::before {
    content: "";
    width: 26px;
    height: 3px;
    border-radius: 20px;
    background: var(--gmb-green);
}

.gmb-section-head h2 {
    margin: 11px 0 13px;
    color: var(--gmb-navy);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -1.7px;
}

.gmb-section-head h2 span {
    display: block;
    color: var(--gmb-blue);
}

.gmb-section-head p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--gmb-text);
    font-size: 14px;
    line-height: 1.75;
}

/* SERVICES */

.gmb-services-section {
    padding: 85px 0;
    background: #fff;
}

.gmb-services-section .container {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto;
}

.gmb-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 16px;
}

.gmb-service-card {
    position: relative;
    min-width: 0;
    padding: 27px;
    background: #fff;
    border: 1px solid var(--gmb-border);
    border-radius: 15px;
    box-shadow: 0 7px 22px rgba(7,26,56,.035);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.gmb-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23,105,232,.28);
    box-shadow: 0 17px 35px rgba(7,26,56,.08);
}

.gmb-card-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 11px;
    background: #edf5ff;
    color: var(--gmb-blue);
    font-size: 17px;
}

.gmb-card-number {
    position: absolute;
    top: 21px;
    right: 21px;
    color: #c7d2de;
    font-size: 10px;
    font-weight: 700;
}

.gmb-service-card h3 {
    margin: 0 0 9px;
    color: var(--gmb-navy);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.gmb-service-card p {
    margin: 0 0 17px;
    color: var(--gmb-text);
    font-size: 13px;
    line-height: 1.75;
}

.gmb-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gmb-blue);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
}

.gmb-service-card a i {
    transition: transform .2s ease;
}

.gmb-service-card a:hover i {
    transform: translateX(4px);
}

/* WHY */

.gmb-why-section {
    position: relative;
    padding: 85px 0;
    background: var(--gmb-light);
    overflow: hidden;
}

.gmb-why-container {
    position: relative;
    z-index: 2;
    width: min(1100px, calc(100% - 36px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.gmb-why-content h2 {
    margin: 11px 0 15px;
    color: var(--gmb-navy);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -1.7px;
}

.gmb-why-content h2 span {
    display: block;
    color: var(--gmb-blue);
}

.gmb-why-content p {
    max-width: 490px;
    margin: 0 0 23px;
    color: var(--gmb-text);
    font-size: 14px;
    line-height: 1.8;
}

.gmb-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 43px;
    padding: 0 16px;
    color: var(--gmb-blue);
    background: #fff;
    border: 1px solid #d4e0ec;
    border-radius: 8px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: .25s ease;
}

.gmb-outline-btn:hover {
    color: #fff;
    background: var(--gmb-blue);
    border-color: var(--gmb-blue);
    transform: translateY(-2px);
}

.gmb-benefit-list {
    border-top: 1px solid var(--gmb-border);
}

.gmb-benefit {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gmb-border);
}

.gmb-benefit > span {
    color: var(--gmb-green);
    font-size: 10px;
    font-weight: 700;
}

.gmb-benefit h3 {
    margin: 0 0 5px;
    color: var(--gmb-navy);
    font-size: 16px;
    font-weight: 600;
}

.gmb-benefit p {
    margin: 0;
    color: var(--gmb-text);
    font-size: 12.5px;
    line-height: 1.7;
}

/* PROCESS */

.gmb-process-section {
    padding: 85px 0;
    background: #fff;
}

.gmb-process-grid {
    width: min(1100px, calc(100% - 36px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 15px;
}

.gmb-process-card {
    position: relative;
    padding: 25px 21px;
    background: var(--gmb-light);
    border: 1px solid var(--gmb-border);
    border-radius: 14px;
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.gmb-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(7,26,56,.07);
}

.gmb-process-card > span {
    position: absolute;
    top: 17px;
    right: 17px;
    color: #c7d2de;
    font-size: 9px;
    font-weight: 700;
}

.gmb-process-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 10px;
    background: #fff;
    color: var(--gmb-blue);
    font-size: 16px;
}

.gmb-process-card h3 {
    margin: 0 0 6px;
    color: var(--gmb-navy);
    font-size: 16px;
    font-weight: 600;
}

.gmb-process-card p {
    margin: 0;
    color: var(--gmb-text);
    font-size: 12px;
    line-height: 1.7;
}

/* CTA */

.gmb-cta-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            #071a38 0%,
            #0b2d60 56%,
            #1769e8 100%
        );
}

.gmb-cta-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.045) 1px,
            transparent 1px
        );
    background-size: 50px 50px;
}

.gmb-cta-container {
    position: relative;
    z-index: 2;
    width: min(1100px, calc(100% - 36px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.gmb-cta-content {
    max-width: 680px;
}

.gmb-cta-content > span {
    color: #dfffad;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.gmb-cta-content h2 {
    margin: 8px 0 9px;
    color: #fff;
    font-size: clamp(34px,4vw,50px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -1.7px;
}

.gmb-cta-content h2 em {
    color: var(--gmb-green);
    font-style: normal;
}

.gmb-cta-content p {
    max-width: 570px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.7;
}

.gmb-cta-actions {
    display: flex;
    gap: 9px;
    flex-shrink: 0;
}

/* TABLET */

@media (max-width: 980px) {

    .gmb-hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gmb-hero-content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .gmb-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .gmb-hero-actions,
    .gmb-hero-points {
        justify-content: center;
    }

    .gmb-hero-side {
        width: min(370px,100%);
        margin: 0 auto;
    }

    .gmb-services-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .gmb-why-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gmb-process-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .gmb-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* MOBILE */

@media (max-width: 700px) {

    .gmb-hero {
        min-height: auto;
        padding: 75px 0 45px;
    }

    .gmb-hero-container,
    .gmb-services-section .container,
    .gmb-why-container,
    .gmb-process-grid,
    .gmb-cta-container {
        width: min(100% - 28px, 1120px);
    }

    .gmb-hero-container {
        gap: 25px;
        text-align: left;
    }

    .gmb-hero-content {
        max-width: 100%;
    }

    .gmb-eyebrow {
        font-size: 8px;
        letter-spacing: 1.1px;
        margin-bottom: 14px;
    }

    .gmb-hero-content h1 {
        font-size: 36px;
        line-height: 1.06;
        letter-spacing: -1.4px;
    }

    .gmb-hero-content p {
        margin: 15px 0 21px;
        font-size: 13px;
        line-height: 1.65;
    }

    .gmb-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .gmb-btn {
        width: 100%;
        min-height: 45px;
        box-sizing: border-box;
        font-size: 11px;
    }

    .gmb-hero-points {
        justify-content: flex-start;
        gap: 8px 13px;
        margin-top: 17px;
    }

    .gmb-hero-points span {
        font-size: 8.5px;
    }

    .gmb-profile-card {
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
        padding: 16px;
    }

    .gmb-profile-top strong {
        font-size: 10px;
    }

    .gmb-profile-top span {
        font-size: 7px;
    }

    .gmb-search-box {
        min-height: 38px;
        font-size: 8px;
    }

    .gmb-result-card {
        padding: 12px;
    }

    .gmb-services-section,
    .gmb-why-section,
    .gmb-process-section {
        padding: 55px 0;
    }

    .gmb-section-head {
        margin-bottom: 27px;
    }

    .gmb-section-label {
        font-size: 8px;
        letter-spacing: 1.2px;
    }

    .gmb-section-head h2,
    .gmb-why-content h2 {
        font-size: 30px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .gmb-section-head p,
    .gmb-why-content p {
        font-size: 12px;
        line-height: 1.7;
    }

    .gmb-services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gmb-service-card {
        padding: 21px;
        border-radius: 12px;
    }

    .gmb-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 15px;
        font-size: 15px;
    }

    .gmb-service-card h3 {
        font-size: 16px;
    }

    .gmb-service-card p {
        font-size: 12px;
        line-height: 1.65;
    }

    .gmb-benefit {
        grid-template-columns: 30px 1fr;
        gap: 10px;
        padding: 17px 0;
    }

    .gmb-benefit h3 {
        font-size: 14px;
    }

    .gmb-benefit p {
        font-size: 11.5px;
        line-height: 1.65;
    }

    .gmb-process-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gmb-process-card {
        padding: 20px;
    }

    .gmb-process-card h3 {
        font-size: 15px;
    }

    .gmb-process-card p {
        font-size: 11.5px;
    }

    .gmb-cta-section {
        padding: 48px 0;
    }

    .gmb-cta-container {
        gap: 22px;
    }

    .gmb-cta-content h2 {
        font-size: 30px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .gmb-cta-content p {
        font-size: 12px;
        line-height: 1.65;
    }

    .gmb-cta-actions {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .gmb-cta-actions .gmb-btn {
        width: 100%;
    }
}

/* SMALL MOBILE */

@media (max-width: 380px) {

    .gmb-hero {
        padding-top: 70px;
    }

    .gmb-hero-content h1 {
        font-size: 33px;
    }

    .gmb-hero-content p {
        font-size: 12px;
    }

    .gmb-section-head h2,
    .gmb-why-content h2,
    .gmb-cta-content h2 {
        font-size: 27px;
    }

    .gmb-profile-card {
        max-width: 310px;
    }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .gmb-btn,
    .gmb-service-card,
    .gmb-process-card,
    .gmb-outline-btn {
        transition: none;
    }
}