@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --vbe-rose: #008000;
    --vbe-rose-dark: #008000;
    --vbe-rose-soft: #f8eff2;
    --vbe-sand: #f5f0ea;
    --vbe-dark: #171518;
    --vbe-text: #505565;
    --vbe-muted: #7e8491;
    --vbe-border: #e7e2e5;
    --vbe-soft: #faf8f8;
    --vbe-width: 1220px;
    --vbe-font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vbe-page {
    width: 100%;
    overflow-x: hidden;
    background: #fff;
    color: var(--vbe-text);
    font-family: var(--vbe-font);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

.vbe-page *,
.vbe-page *::before,
.vbe-page *::after {
    box-sizing: border-box;
}

.vbe-page img {
    display: block;
    max-width: 100%;
}

.vbe-container {
    width: 100%;
    max-width: var(--vbe-width);
    margin: 0 auto;
    padding: 0 24px;
}

.vbe-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--vbe-rose);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.vbe-btn {
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--vbe-dark);
    font-size: .87rem;
    font-weight: 650;
    text-decoration: none;
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.vbe-btn-primary {
    background: var(--vbe-rose);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(125, 182, 111, 0.22);
}

.vbe-btn-primary:hover {
    background: var(--vbe-rose-dark);
    transform: translateY(-2px);
}

.vbe-btn-secondary {
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .08);
    color: #fff !important;
}

.vbe-btn-outline {
    border-color: var(--vbe-border);
    background: #fff;
    color: var(--vbe-dark) !important;
}

.vbe-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vbe-actions-center {
    justify-content: center;
}

.vbe-hero {
    position: relative;
    min-height: 720px;
    height: 82vh;
    max-height: 920px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #131013;
}

.vbe-hero-media,
.vbe-hero-overlay {
    position: absolute;
    inset: 0;
}

.vbe-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vbe-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(18, 14, 17, .96) 0%,
            rgba(18, 14, 17, .79) 48%,
            rgba(18, 14, 17, .2) 100%
        );
}

.vbe-hero-inner {
    position: relative;
    z-index: 2;
}

.vbe-hero-copy {
    max-width: 900px;
}

.vbe-kicker {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .84);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.vbe-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-size: clamp(3rem, 5.7vw, 5.5rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -.063em;
}

.vbe-hero-copy > p {
    max-width: 720px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1.03rem;
}

.vbe-hero-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.vbe-hero-tags span {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    color: rgba(255, 255, 255, .62);
    font-size: .68rem;
    font-weight: 600;
}

.vbe-partners {
    padding: 28px 0;
    border-bottom: 1px solid var(--vbe-border);
}

.vbe-partner-row {
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    gap: 45px;
}

.vbe-partner-row > span {
    color: var(--vbe-muted);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vbe-partner-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 60px;
}

.vbe-partner-logos img {
    width: 100%;
    height: 44px;
    object-fit: contain;
}

.vbe-intro h2,
.vbe-agenda h2,
.vbe-online h2,
.vbe-section-head h2,
.vbe-sale h2,
.vbe-marketing h2,
.vbe-dark-head h2,
.vbe-office h2,
.vbe-payments h2,
.vbe-implementation-head h2,
.vbe-cta h2 {
    margin: 0;
    color: var(--vbe-dark);
    font-size: clamp(2.2rem, 4.3vw, 3.6rem);
    line-height: 1.07;
    font-weight: 650;
    letter-spacing: -.052em;
}

.vbe-intro {
    padding: 118px 0 90px;
}

.vbe-intro-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 95px;
}

.vbe-intro-grid > div:last-child {
    padding-top: 38px;
}

.vbe-intro p {
    margin: 0 0 18px;
    color: var(--vbe-muted);
}

.vbe-journey {
    padding-bottom: 112px;
}

.vbe-journey-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.vbe-journey-line::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 2%;
    right: 2%;
    height: 1px;
    background: var(--vbe-border);
}

.vbe-journey-line article {
    position: relative;
    padding-top: 45px;
}

.vbe-journey-line article::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--vbe-rose);
    box-shadow: 0 0 0 7px var(--vbe-rose-soft);
}

.vbe-journey-line span {
    color: var(--vbe-rose);
    font-size: .66rem;
    font-weight: 700;
}

.vbe-journey-line h3 {
    margin: 12px 0 0;
    color: var(--vbe-dark);
    font-size: .95rem;
}

.vbe-journey-line p {
    margin: 7px 0 0;
    color: var(--vbe-muted);
    font-size: .76rem;
}

.vbe-agenda,
.vbe-online,
.vbe-client,
.vbe-sale,
.vbe-operations,
.vbe-marketing,
.vbe-stock,
.vbe-office,
.vbe-analytics,
.vbe-payments,
.vbe-implementation {
    padding: 112px 0;
}

.vbe-agenda-grid,
.vbe-online-grid,
.vbe-sale-grid,
.vbe-marketing-grid,
.vbe-office-grid,
.vbe-payments-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 90px;
}

.vbe-agenda p,
.vbe-online p,
.vbe-sale p,
.vbe-marketing p,
.vbe-office p,
.vbe-payments p {
    max-width: 580px;
    margin: 22px 0 0;
    color: var(--vbe-muted);
}

.vbe-agenda-visual {
    padding: 20px;
    border: 1px solid var(--vbe-border);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 28px 60px rgba(35, 27, 31, .08);
}

.vbe-agenda-visual img {
    width: 100%;
    border-radius: 16px;
}

.vbe-clean-list {
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 22px;
    list-style: none;
}

.vbe-clean-list li {
    position: relative;
    padding: 10px 0 10px 18px;
    border-bottom: 1px solid var(--vbe-border);
    font-size: .8rem;
}

.vbe-clean-list li::before {
    content: "";
    position: absolute;
    top: 1.25em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--vbe-rose);
}

.vbe-online-grid {
    grid-template-columns: .95fr 1.05fr;
}

.vbe-mini-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.vbe-mini-grid article {
    padding: 20px;
    border: 1px solid var(--vbe-border);
    border-radius: 14px;
    background: #fff;
}

.vbe-mini-grid strong,
.vbe-mini-grid span {
    display: block;
}

.vbe-mini-grid strong {
    color: var(--vbe-dark);
    font-size: .76rem;
}

.vbe-mini-grid span {
    margin-top: 8px;
    color: var(--vbe-muted);
    font-size: .66rem;
}

.vbe-booking-ui,
.vbe-sale-ui,
.vbe-message-ui {
    padding: 28px;
    border: 1px solid var(--vbe-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(35, 27, 31, .08);
}

.vbe-booking-head {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--vbe-border);
}

.vbe-booking-head small,
.vbe-booking-head strong {
    display: block;
}

.vbe-booking-head small {
    color: var(--vbe-rose);
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
}

.vbe-booking-head strong {
    margin-top: 6px;
    color: var(--vbe-dark);
}

.vbe-booking-service {
    padding: 17px 0;
    border-bottom: 1px solid var(--vbe-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.vbe-booking-service strong,
.vbe-booking-service small {
    display: block;
}

.vbe-booking-service strong {
    color: var(--vbe-dark);
    font-size: .78rem;
}

.vbe-booking-service small {
    color: var(--vbe-muted);
    font-size: .65rem;
}

.vbe-booking-service > span {
    color: var(--vbe-muted);
    font-size: .62rem;
}

.vbe-booking-service.active > span {
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--vbe-rose-soft);
    color: var(--vbe-rose-dark);
}

.vbe-booking-date {
    margin-top: 20px;
    padding: 18px;
    border-radius: 12px;
    background: var(--vbe-rose-soft);
}

.vbe-booking-date span,
.vbe-booking-date strong {
    display: block;
}

.vbe-booking-date span {
    color: var(--vbe-muted);
    font-size: .65rem;
}

.vbe-booking-date strong {
    margin-top: 5px;
    color: var(--vbe-dark);
}

.vbe-section-head {
    margin-bottom: 54px;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: end;
    gap: 60px;
}

.vbe-section-head p {
    margin: 0;
    color: var(--vbe-muted);
}

.vbe-client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--vbe-border);
}

.vbe-client-grid article {
    padding: 32px 25px;
    border-right: 1px solid var(--vbe-border);
    border-bottom: 1px solid var(--vbe-border);
}

.vbe-client-grid article:last-child {
    border-right: 0;
}

.vbe-client-grid span {
    display: block;
    margin-bottom: 42px;
    color: var(--vbe-rose);
    font-size: .68rem;
    font-weight: 700;
}

.vbe-client-grid h3 {
    margin: 0;
    color: var(--vbe-dark);
    font-size: .98rem;
}

.vbe-client-grid p {
    margin: 10px 0 0;
    color: var(--vbe-muted);
    font-size: .76rem;
}

.vbe-sale-ui header {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--vbe-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vbe-sale-ui header small,
.vbe-sale-ui header strong {
    display: block;
}

.vbe-sale-ui header small {
    color: var(--vbe-rose);
    font-size: .62rem;
    text-transform: uppercase;
}

.vbe-sale-ui header strong {
    color: var(--vbe-dark);
}

.vbe-sale-ui header > span {
    color: var(--vbe-muted);
    font-size: .65rem;
}

.vbe-sale-line {
    padding: 18px 0;
    border-bottom: 1px solid var(--vbe-border);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.vbe-sale-line strong,
.vbe-sale-line small {
    display: block;
}

.vbe-sale-line strong {
    color: var(--vbe-dark);
    font-size: .76rem;
}

.vbe-sale-line small {
    color: var(--vbe-muted);
    font-size: .65rem;
}

.vbe-sale-line b {
    color: var(--vbe-dark);
    font-size: .76rem;
}

.vbe-sale-total {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.vbe-sale-total span {
    color: var(--vbe-muted);
    font-size: .7rem;
}

.vbe-sale-total strong {
    color: var(--vbe-rose);
    font-size: 1.5rem;
}

.vbe-operation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--vbe-border);
}

.vbe-operation-grid article {
    padding: 32px 28px;
    border-right: 1px solid var(--vbe-border);
    border-bottom: 1px solid var(--vbe-border);
}

.vbe-operation-grid article:nth-child(3n) {
    border-right: 0;
}

.vbe-operation-grid span {
    display: block;
    margin-bottom: 42px;
    color: var(--vbe-rose);
    font-size: .68rem;
    font-weight: 700;
}

.vbe-operation-grid h3 {
    margin: 0;
    color: var(--vbe-dark);
    font-size: 1rem;
}

.vbe-operation-grid p {
    margin: 10px 0 0;
    color: var(--vbe-muted);
    font-size: .76rem;
}

.vbe-campaign-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.vbe-campaign-tags span {
    padding: 8px 12px;
    border: 1px solid var(--vbe-border);
    border-radius: 999px;
    background: #fff;
    color: var(--vbe-dark);
    font-size: .68rem;
    font-weight: 600;
}

.vbe-message-ui small,
.vbe-message-ui strong {
    display: block;
}

.vbe-message-ui > small {
    color: var(--vbe-rose);
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
}

.vbe-message-ui > strong {
    margin-top: 7px;
    color: var(--vbe-dark);
    font-size: 1.2rem;
}

.vbe-message-ui > p {
    padding: 20px 0;
    border-bottom: 1px solid var(--vbe-border);
    font-size: .76rem;
}

.vbe-message-ui > div {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    color: var(--vbe-muted);
    font-size: .7rem;
}

.vbe-message-ui b {
    color: var(--vbe-dark);
}

.vbe-message-ui button {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    background: var(--vbe-rose);
    color: #fff;
    font-family: inherit;
    font-weight: 700;
}

.vbe-stock {
    background: var(--vbe-dark);
}

.vbe-dark-head {
    max-width: 820px;
    margin-bottom: 54px;
}

.vbe-dark-head h2 {
    color: #fff;
}

.vbe-dark-head p {
    max-width: 700px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .6);
}

.vbe-stock-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.vbe-stock-features > div {
    min-height: 105px;
    padding: 24px 20px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
}

.vbe-stock-features > div:nth-child(4n) {
    border-right: 0;
}

.vbe-dashboard {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.vbe-dashboard div {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .045);
}

.vbe-dashboard small,
.vbe-dashboard strong,
.vbe-dashboard span {
    display: block;
}

.vbe-dashboard small {
    color: rgba(255, 255, 255, .45);
    font-size: .64rem;
}

.vbe-dashboard strong {
    margin-top: 10px;
    color: #fff;
    font-size: 1.6rem;
}

.vbe-dashboard span {
    color: rgba(255, 255, 255, .45);
    font-size: .65rem;
}

.vbe-office-grid {
    grid-template-columns: 1.05fr .95fr;
}

.vbe-office-features {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--vbe-border);
}

.vbe-office-features > div {
    min-height: 78px;
    padding: 19px;
    border-right: 1px solid var(--vbe-border);
    border-bottom: 1px solid var(--vbe-border);
    color: var(--vbe-dark);
    font-size: .75rem;
    font-weight: 600;
}

.vbe-office-features > div:nth-child(2n) {
    border-right: 0;
}

.vbe-office-image img {
    width: 100%;
    max-height: 550px;
    object-fit: contain;
}

.vbe-analytics-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--vbe-border);
}

.vbe-analytics-list div {
    padding: 22px 0;
    border-bottom: 1px solid var(--vbe-border);
    display: grid;
    grid-template-columns: 52px 1fr;
}

.vbe-analytics-list span {
    color: var(--vbe-rose);
    font-size: .65rem;
    font-weight: 700;
}

.vbe-analytics-list strong {
    color: var(--vbe-dark);
    font-size: .8rem;
}

.vbe-payments-grid {
    grid-template-columns: 1fr 420px;
}

.vbe-payment-logos {
    padding-left: 45px;
    border-left: 1px solid var(--vbe-border);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 32px;
}

.vbe-payment-logos img {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

.vbe-types {
    padding: 88px 0;
}

.vbe-type-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vbe-type-list span {
    padding: 10px 15px;
    border: 1px solid var(--vbe-border);
    border-radius: 999px;
    color: var(--vbe-dark);
    font-size: .78rem;
    font-weight: 600;
}

.vbe-implementation {
    background: var(--vbe-dark);
}

.vbe-implementation-head {
    max-width: 820px;
    margin-bottom: 58px;
}

.vbe-implementation-head h2 {
    color: #fff;
}

.vbe-implementation-list {
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.vbe-implementation-list article {
    padding: 34px 28px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.vbe-implementation-list article:last-child {
    border-right: 0;
}

.vbe-implementation-list span {
    display: block;
    margin-bottom: 50px;
    color: #008000;
    font-size: .68rem;
    font-weight: 700;
}

.vbe-implementation-list h3 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
}

.vbe-implementation-list p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: .78rem;
}

.vbe-cta {
    padding: 110px 0;
}

.vbe-cta-inner {
    max-width: 920px;
    margin: auto;
    padding: 64px 48px;
    border-top: 1px solid var(--vbe-border);
    border-bottom: 1px solid var(--vbe-border);
    text-align: center;
}

.vbe-cta-inner p {
    max-width: 680px;
    margin: 21px auto 0;
    color: var(--vbe-muted);
}

@media (max-width: 980px) {
    .vbe-intro-grid,
    .vbe-agenda-grid,
    .vbe-online-grid,
    .vbe-section-head,
    .vbe-sale-grid,
    .vbe-marketing-grid,
    .vbe-office-grid,
    .vbe-payments-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vbe-intro-grid > div:last-child {
        padding-top: 0;
    }

    .vbe-journey-line {
        grid-template-columns: repeat(2, 1fr);
    }

    .vbe-journey-line::before {
        display: none;
    }

    .vbe-client-grid,
    .vbe-stock-features,
    .vbe-dashboard,
    .vbe-implementation-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .vbe-client-grid article:nth-child(2n),
    .vbe-stock-features > div:nth-child(2n) {
        border-right: 0;
    }

    .vbe-payment-logos {
        padding: 35px 0 0;
        border-top: 1px solid var(--vbe-border);
        border-left: 0;
    }
}

@media (max-width: 720px) {
    .vbe-container {
        padding: 0 18px;
    }

    .vbe-hero {
        min-height: 650px;
        height: 82vh;
        align-items: flex-end;
    }

    .vbe-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(18, 14, 17, .12),
                rgba(18, 14, 17, .62) 42%,
                rgba(18, 14, 17, .97)
            );
    }

    .vbe-hero-inner {
        padding-bottom: 70px;
    }

    .vbe-hero h1 {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .vbe-partner-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vbe-partner-logos {
        grid-template-columns: 1fr;
    }

    .vbe-intro,
    .vbe-agenda,
    .vbe-online,
    .vbe-client,
    .vbe-sale,
    .vbe-operations,
    .vbe-marketing,
    .vbe-stock,
    .vbe-office,
    .vbe-analytics,
    .vbe-payments,
    .vbe-implementation,
    .vbe-cta {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .vbe-journey-line,
    .vbe-client-grid,
    .vbe-operation-grid,
    .vbe-stock-features,
    .vbe-dashboard,
    .vbe-analytics-list,
    .vbe-implementation-list {
        grid-template-columns: 1fr;
    }

    .vbe-client-grid article,
    .vbe-client-grid article:nth-child(2n),
    .vbe-operation-grid article,
    .vbe-operation-grid article:nth-child(3n),
    .vbe-stock-features > div,
    .vbe-implementation-list article {
        border-right: 0;
    }

    .vbe-clean-list,
    .vbe-office-features,
    .vbe-mini-grid {
        grid-template-columns: 1fr;
    }

    .vbe-office-features > div {
        border-right: 0;
    }

    .vbe-cta-inner {
        padding: 50px 20px;
    }
}

@media (max-width: 520px) {
    .vbe-actions {
        flex-direction: column;
    }

    .vbe-actions .vbe-btn {
        width: 100%;
    }

    .vbe-hero-tags {
        display: none;
    }

    .vbe-payment-logos {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vbe-btn {
        transition: none;
    }
}
