/* =========================================================
   BARGELINK SEO PAGE
   Template: seopage.php
   ========================================================= */


/* ---------------------------------------------------------
   VARIABLES / BASE
   --------------------------------------------------------- */

.seo-page {
    --seo-green: #275f56;
    --seo-green-dark: #163932;
    --seo-red: #931d1f;
    --seo-grey: #f3f3f3;
    --seo-dark: #343434;
    --seo-text: #333;
    --seo-white: #fff;
    --seo-border: #275f56;

    width: 100%;
    background: var(--seo-grey);
    color: var(--seo-text);
}

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

.seo-page__article,
.seo-page__content {
    width: 100%;
}

.seo-page__article {
    margin: 0;
    padding: 0;
}


/* ---------------------------------------------------------
   CONTENT WIDTH
   --------------------------------------------------------- */

.seo-container {
    width: min(1180px, calc(100% - 120px));
    margin-inline: auto;
}


/* ---------------------------------------------------------
   TYPOGRAPHY
   --------------------------------------------------------- */

.seo-page h1,
.seo-page h2,
.seo-page h3,
.seo-page h4 {
    margin-top: 0;
    color: var(--seo-green);
    line-height: 1.15;
    text-transform: inherit;
    font-weight: inherit;
}

.seo-page h1 {
    font-size: clamp(32px, 4vw, 54px);
}

.seo-page h2 {
    margin-bottom: 20px;
    font-size: clamp(22px, 2.5vw, 32px);
}

.seo-page h3 {
    margin-bottom: 10px;
    font-size: clamp(18px, 2vw, 24px);
}

.seo-page p {
    margin-top: 0;
    line-height: 1.55;
}

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


/* ---------------------------------------------------------
   BUTTONS
   Shortcodes Ultimate
   --------------------------------------------------------- */

.seo-page .su-button {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-weight: 600;
    text-transform: none;
}

.seo-page .su-button span {
    padding: 11px 22px !important;
}

.seo-page .su-button-style-default {
    border: 0 !important;
}


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

.seo-hero {
    position: relative;
    min-height: 430px;
    margin-bottom: 90px;
    /* overflow: hidden; */
}


/* Background image */

.seo-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.seo-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Container */

.seo-hero .seo-container {
    position: relative;
    z-index: 1;
    min-height: 430px;
}


/* Green card */

.seo-hero__card {
    position: absolute;
    top: 145px;
    left: 0px;

    width: 480px;
    max-width: calc(100% - 80px);

    background: var(--seo-green);
    color: var(--seo-white);

    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.25);
}


/* Text area */

.seo-hero__content {
    padding: 28px 32px 48px;
}

.seo-hero__content h1 {
    margin: 0 0 18px;

    color: var(--seo-white);

    font-size: 32px;
    line-height: 1.15;
}

.seo-hero__content p {
    margin: 0;

    color: var(--seo-white);

    font-size: 16px;
    line-height: 1.75;
}


/* Buttons row */

.seo-hero__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;

    /* background: var(--seo-green-dark); */
}

.seo-hero__buttons .btn {
    background-color: var(--seo-green-dark);
    border-color: var(--seo-green-dark);
    font-weight: 700;
    padding: 12px;
    border-radius: 0;
    font-size: 18px;
}


/* Override Shortcodes Ultimate */

.seo-hero__buttons .su-button {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 100% !important;
    min-height: 48px;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;
}

.seo-hero__buttons .su-button:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.seo-hero__buttons .su-button span {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 100%;
    padding: 14px 15px !important;

    color: var(--seo-white) !important;

    font-size: 16px !important;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: none !important;
}

.seo-hero__buttons .su-button:hover {
    background: rgba(0, 0, 0, 0.12) !important;
}


/* =========================================================
   HERO - TABLET
   ========================================================= */

@media (max-width: 991px) {

    .seo-hero,
    .seo-hero .seo-container {
        min-height: 400px;
    }

    .seo-hero__card {
        top: 55px;
        left: 20px;

        width: 450px;
        max-width: calc(100% - 40px);
    }
}


/* =========================================================
   HERO - MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .seo-hero {
        display: flex;
        flex-direction: column;

        min-height: 0;
        overflow: visible;
    }

    .seo-hero__image {
        position: relative;
        inset: auto;

        height: 280px;
    }

    .seo-hero__image img {
        object-position: center;
    }

    .seo-hero .seo-container {
        width: 100%;
        min-height: 0;
    }

    .seo-hero__card {
        position: relative;
        top: auto;
        left: auto;

        width: 100%;
        max-width: none;

        box-shadow: none;
    }

    .seo-hero__content {
        padding: 28px 20px;
    }

    .seo-hero__content h1 {
        font-size: 27px;
    }
}


/* =========================================================
   HERO - SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .seo-hero__image {
        height: 220px;
    }

    .seo-hero__content h1 {
        font-size: 24px;
    }

    .seo-hero__content h1 br {
        display: none;
    }

    .seo-hero__buttons {
        grid-template-columns: 1fr;
    }

    .seo-hero__buttons .su-button:first-child {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
    }
}

/* =========================================================
   LIVE PLATFORM - STATISTICS
   ========================================================= */

.seo-live {
    padding: 40px 0;
}

.seo-live__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 80px;
}


/* Card */

.seo-stat {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    min-height: 240px;
    padding: 50px 32px;

    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
}


/* Icon */

.seo-stat__icon {
    width: auto !important;
    height: 70px !important;
    max-width: 110px !important;

    margin: 0 0 auto;

    object-fit: contain;
    object-position: left center;
}


/* Number */

.seo-stat__number {
    margin-top: 25px;

    font-size: 38px;
    font-weight: 500;
    line-height: 1;
}


/* Label */

.seo-stat__label {
    margin-top: 12px;

    font-size: 18px;
    /* font-weight: 600; */
    line-height: 1.2;
}


/* ---------------------------------------------------------
   COLOR VARIANTS
   --------------------------------------------------------- */

.seo-stat--dark {
    background: linear-gradient(180deg,
            #303030 0%,
            #606060 100%);

    color: var(--seo-white);
}

.seo-stat--light {
    background: var(--seo-white);
    color: #555;
}

.seo-stat--green {
    background: var(--seo-green);
    color: var(--seo-white);
}

.seo-stat--red {
    background: linear-gradient(180deg,
            #bd280d 0%,
            #ed330d 100%);

    color: var(--seo-white);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

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


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .seo-live__stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .seo-stat {
        min-height: 190px;
        padding: 22px;
    }

    .seo-stat__icon {
        height: 50px !important;
        max-width: 80px;
    }

    .seo-stat__number {
        font-size: 30px;
    }

    .seo-stat__label {
        font-size: 14px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .seo-live__stats {
        grid-template-columns: 1fr;
    }

    .seo-stat {
        min-height: 170px;
    }
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.seo-how {
    padding: 40px 0;
}

.seo-how__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
    background: var(--seo-white);
}

.seo-how__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 65px;
}

.seo-how__content h2 {
    margin-bottom: 25px;
}

.seo-how__steps {
    counter-reset: how-step;
    margin: 0;
    padding: 0;
    list-style: none;
}

.seo-how__steps li {
    counter-increment: how-step;
    position: relative;
    padding: 0 0 22px 70px;
}

.seo-how__steps li:last-child {
    padding-bottom: 0;
}

.seo-how__steps li::before {
    content: "0" counter(how-step) ".";
    position: absolute;
    top: 2px;
    left: 0;

    color: var(--seo-red);
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}

.seo-how__steps strong {
    display: block;
    margin-bottom: 3px;
    color: var(--seo-dark);
    font-size: 16px;
}

.seo-how__steps span {
    display: block;
    line-height: 1.4;
}

.seo-how__image {
    min-height: 320px;
}

.seo-how__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   MODULES
   ========================================================= */

.seo-modules {
    padding: 40px 0;
}

.seo-section-heading {
    margin-bottom: 38px;
}

.seo-section-heading h2 {
    margin-bottom: 5px;
}

.seo-section-heading p {
    margin-bottom: 0;
}

.seo-modules__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.seo-module {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 105px;
    padding: 24px 24px;
    background: var(--seo-green);
    color: var(--seo-white);
}

.seo-module__title {
    display: block;
    margin-bottom: 10px;
    color: var(--seo-white);
    font-size: 19px;
}

.seo-module__link {
    display: block;
    color: var(--seo-white);
    line-height: 1.5;
    text-decoration: none;
}

.seo-module__link:hover,
.seo-module__link:focus {
    color: var(--seo-white);
    text-decoration: underline;
}

.seo-modules__flex {
    margin-top: 15px;
}

.seo-modules__flex p {
    margin-bottom: 5px;
}

.seo-modules__flex .btn {
    margin-top: 20px;
    background: var(--seo-green);
    border-color: var(--seo-green);
    border-radius: 0;
    padding: 12px;
    font-weight: 700;
}


/* =========================================================
   NO MIDDLEMAN / NEUTRAL SECTION
   ========================================================= */

.seo-neutral {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

.seo-neutral__background {
    position: relative;
    display: flex;
    align-items: center;

    min-height: 400px;
    overflow: hidden;
}


/* Background image */

.seo-neutral__background-image {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100% !important;

    object-fit: cover;
    object-position: center;
}


/* Content container */

.seo-neutral .seo-container {
    position: relative;
    z-index: 1;
}


/* White content box */

.seo-neutral__box {
    width: 480px;
    max-width: 100%;

    padding: 50px 50px 65px;

    background: var(--seo-white);

    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.18);
}


/* Heading */

.seo-neutral__box h2 {
    margin: 0 0 20px;

    color: var(--seo-green-dark);

    font-size: 25px;
    /* font-weight: 700; */
    line-height: 1.15;
}


/* List */

.seo-neutral__list {
    margin: 0;
    padding-left: 20px;
}

.seo-neutral__list li {
    margin-bottom: 7px;

    color: var(--seo-text);

    font-size: 14px;
    line-height: 1.4;
}

.seo-neutral__list li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .seo-neutral__background {
        min-height: 380px;
    }

    .seo-neutral__box {
        width: 370px;
        padding: 35px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .seo-neutral__background {
        display: block;
        min-height: 0;
    }

    .seo-neutral__background-image {
        position: relative;
        inset: auto;

        height: 280px !important;

        object-position: center;
    }

    .seo-neutral .seo-container {
        width: 100%;
    }

    .seo-neutral__box {
        width: 100%;
        max-width: none;

        padding: 30px 20px;

        box-shadow: none;
    }

    .seo-neutral__box h2 {
        font-size: 23px;
    }
}


/* =========================================================
   WHO USES BARGELINK
   ========================================================= */

.seo-users {
    padding: 40px 0;
}

.seo-users__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--seo-white);
}

.seo-users__image {
    min-height: 300px;
}

.seo-users__image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seo-users__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}

.seo-users__content h2 {
    margin-bottom: 12px;
}

.seo-users__logos {
    margin-top: 20px;
}

.seo-users__logos img {
    width: auto;
    max-width: 100%;
}

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

.seo-faq {
    padding: 40px 0 55px;
}

.seo-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* gap: 35px; */
    align-items: stretch;
}

.seo-faq__content,
.seo-faq__image {
    min-width: 0;
}

.seo-faq__content {
    padding: 60px 90px 0 0;
}

.seo-faq__content h2 {
    margin-bottom: 20px;
}


/* Image */

.seo-faq__image {
    min-height: 300px;
}

.seo-faq__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   FAQ ACCORDION
   ========================================================= */

.seo-accordion {
    width: 100%;
    border-top: 1px solid var(--seo-border);
}

.seo-accordion__item {
    border-bottom: 1px solid var(--seo-border);
}


/* Remove default marker */

.seo-accordion__title {
    position: relative;

    padding: 12px 40px 22px 0;

    color: var(--seo-text);

    font-size: 16px;
    /* font-weight: 600; */
    line-height: 1.4;

    cursor: pointer;

    list-style: none;
}

.seo-accordion__title::-webkit-details-marker {
    display: none;
}


/* Plus icon */

.seo-accordion__title::after {
    content: "+";

    position: absolute;
    top: 50%;
    right: 10px;

    transform: translateY(-50%);

    color: var(--seo-green);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
}


/* Change + to − when open */

.seo-accordion__item[open] .seo-accordion__title::after {
    content: "−";
}


/* Answer */

.seo-accordion__content {
    padding: 0 40px 15px 0;
}

.seo-accordion__content p {
    margin: 0;

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   SIGN UP
   ========================================================= */

.seo-signup {
    padding: 30px 0 55px;
}

.seo-signup h2 {
    margin-bottom: 20px;
}

.seo-signup p {
    margin-top: 20px;
    margin-bottom: 20px;
}

.seo-signup__steps {
    counter-reset: signup-step;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;

    margin: 0;
    padding: 0;
    list-style: none;
}

.seo-signup__step {
    counter-increment: signup-step;
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 115px;
    padding: 56px 25px 22px 25px;

    background: linear-gradient(135deg, #222, #555);
    color: var(--seo-white);
}

.seo-signup__step::before {
    content: "0" counter(signup-step) ".";
    position: absolute;
    top: 24px;
    left: 22px;

    color: var(--seo-white);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.seo-signup__step strong {
    display: block;
    margin-bottom: 4px;
    color: var(--seo-white);
    font-size: 20px;
}

.seo-signup__step span {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    opacity: .8;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .seo-how__content {
        padding: 35px;
    }

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

    .seo-users__content {
        padding: 35px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .seo-container {
        width: calc(100% - 30px);
    }


    /* Intro */

    .seo-intro {
        padding: 30px 0;
    }

    .seo-intro__buttons {
        align-items: flex-start;
        flex-direction: column;
    }


    /* Live */

    .seo-live {
        padding: 30px 0;
    }


    /* How it works */

    .seo-how {
        padding: 20px 0 35px;
    }

    .seo-how__box {
        grid-template-columns: 1fr;
    }

    .seo-how__content {
        padding: 30px 25px;
    }

    .seo-how__image {
        min-height: 240px;
    }


    /* Modules */

    .seo-modules {
        padding: 20px 0 40px;
    }

    .seo-modules__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }


    /* Neutral */

    .seo-neutral__background {
        align-items: flex-end;
        min-height: 450px;
    }

    .seo-neutral__box {
        width: 100%;
        padding: 30px 25px;
    }


    /* Users */

    .seo-users {
        padding: 35px 0 20px;
    }

    .seo-users__grid {
        grid-template-columns: 1fr;
    }

    .seo-users__image {
        min-height: 240px;
    }

    .seo-users__content {
        padding: 30px 25px;
    }


    /* FAQ */

    .seo-faq {
        padding: 25px 0 40px;
    }

    .seo-faq__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .seo-faq__image {
        min-height: 240px;
    }


    /* Signup */

    .seo-signup {
        padding: 25px 0 40px;
    }

    .seo-signup__steps {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .seo-modules__grid {
        grid-template-columns: 1fr;
    }

    .seo-module {
        min-height: auto;
    }

    .seo-how__steps li {
        padding-left: 48px;
    }
}