/*
=========================================================
BRAFA SYSTEMS
Premium Landing Page
Black & White Theme
=========================================================
*/

/* ===================================
   GOOGLE FONT
=================================== */

:root {


    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Main Colors */

    --background: #050505;
    --surface: #101010;
    --surface-2: #181818;

    --text: #ffffff;
    --text-muted: #a1a1a1;

    --border: #2a2a2a;

    /* Compatibility aliases */

    --black: var(--background);
    --black-2: var(--surface);
    --black-3: var(--surface-2);

    --white: #ffffff;
    --white-soft: #f3f3f3;

    --gray: #a1a1a1;
    --gray-light: #d5d5d5;

    /* Layout */

    --container: 1320px;

    --radius: 24px;

    --section-padding: 120px;

    --transition: .35s ease;

}


/* ===================================
   RESET
=================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {

    scroll-behavior: smooth;

}

body {

    background: var(--black);

    color: var(--white);

    font-family: 'Inter', sans-serif;

    overflow-x: hidden;

    line-height: 1.7;

}


/* ===================================
   LINKS
=================================== */

a {

    color: inherit;

    text-decoration: none;

    transition: var(--transition);

}

a:hover {

    color: var(--white);

}


/* ===================================
   IMAGES
=================================== */

img {

    max-width: 100%;

    display: block;

}


/* ===================================
   SECTIONS
=================================== */

section {

    padding: var(--section-padding) 0;

    position: relative;

}


/* ===================================
   CONTAINER
=================================== */

.website-container {

    width: min(100% - 40px, var(--container));

    margin: auto;

}


/* ===================================
   TYPOGRAPHY
=================================== */

h1,
h2,
h3,
h4,
h5,
h6 {

    font-weight: 700;

    line-height: 1.2;

}

h1 {

    font-size: clamp(3rem, 7vw, 5.5rem);

}

h2 {

    font-size: clamp(2.2rem, 5vw, 4rem);

}

h3 {

    font-size: 2rem;

}

p {

    color: var(--gray);

    font-size: 1.05rem;

}


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

.btn-primary-custom {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 28px;

    background: #ffffff;
    color: #111111;

    border: 1px solid #d8d8d8;

    border-radius: 8px 22px 8px 22px;


    font-family: var(--font-body);

    letter-spacing: .35px;

    font-size: 15px;
    font-weight: 600;

    box-shadow: 0 4px 12px rgba(255, 255, 255, .08);

    transition: all .3s ease;

}

.btn-primary-custom:hover {

    background: #f8f8f8;

    color: #000;

    border-color: #ffffff;

    box-shadow: 0 8px 20px rgba(255, 255, 255, .12);

    transform: translateY(-2px);

}


.btn-outline-custom {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: .75rem;

    padding: 16px 36px;

    border-radius: 999px;

    border: 1px solid var(--border);

    color: var(--white);

    transition: var(--transition);

}

.btn-outline-custom:hover {

    background: var(--white);

    color: var(--black);

}


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

.card-dark {

    background: var(--black-2);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    transition: var(--transition);

}

.card-dark:hover {

    transform: translateY(-8px);

    border-color: #3a3a3a;

}


/* ===================================
   SECTION TITLE
=================================== */

.section-title {

    text-align: center;

    margin-bottom: 70px;

}

.section-title span {

    color: var(--gray-light);

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: .9rem;

}

.section-title h2 {

    margin-top: 15px;

}


/* ===================================
   SCROLLBAR
=================================== */

::-webkit-scrollbar {

    width: 8px;

}

::-webkit-scrollbar-track {

    background: #111;

}

::-webkit-scrollbar-thumb {

    background: #555;

    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

    background: #888;

}


/* ===================================
   TEXT SELECTION
=================================== */

::selection {

    background: #ffffff;

    color: #000;

}


/* ===================================
   UTILITIES
=================================== */

.text-gray {

    color: var(--gray);

}

.text-center {

    text-align: center;

}

.mb-30 {

    margin-bottom: 30px;

}

.mb-50 {

    margin-bottom: 50px;

}

.mt-50 {

    margin-top: 50px;

}

/*==================================================
NAVBAR
==================================================*/

.website-navbar {

    height: 90px;

    background: rgba(5, 5, 5, .65);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, .05);

    display: flex;

    align-items: center;

    transition: .35s;

}

.website-navbar .website-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    height: 100%;

}

.website-navbar .navbar-brand {

    display: flex;

    align-items: center;

    margin: 0;

    padding: 0;

    height: 100%;

}

.website-navbar .navbar-collapse>div:last-child {
    margin-left: 60px;
}

.website-navbar .navbar-brand img {

    height: 50px;

    width: auto;

    display: block;

}

.website-navbar .navbar-nav {

    gap: 18px;

}

.website-navbar .nav-link {

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--font-body);

    font-size: 15px;

    font-weight: 600;

    letter-spacing: .2px;

    color: #fff !important;

    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}

.website-navbar .nav-link:hover,
.website-navbar .nav-link.active {

    background: #fff;

    color: #000 !important;

    transform: translateY(-2px);

    border-radius: 8px 22px 8px 22px;

    box-shadow: 0 10px 25px rgba(255, 255, 255, .12);

}

.website-navbar .nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: #ffffff;

    transition: .35s;

}

.website-navbar .nav-link:hover::after {

    width: 100%;

}

.website-navbar .nav-link.active {

    background: #fff;

    color: #000 !important;

    box-shadow: 0 10px 25px rgba(255, 255, 255, .12);

}

.website-navbar .nav-link.active::after {

    width: 100%;

}


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

.hero-section {

    position: relative;

    overflow: hidden;

    background: #050505;

    padding-top: 90px;
    padding-bottom: 40px;

}

.hero-tag {

    display: inline-block;

    padding: 8px 18px;

    border: 1px solid #333;

    border-radius: 999px;

    color: #ffffff;

    font-size: .85rem;

    letter-spacing: 2px;

    background: #111;

}

.hero-title {

    color: #ffffff;

    font-size: clamp(3rem, 6vw, 5.5rem);

    max-width: 700px;

    font-family: var(--font-heading);

    font-weight: 800;

    letter-spacing: -2px;

    line-height: .95;


}

.hero-description {

    font-family: var(--font-body);

    font-size: 1.28rem;

    font-weight: 400;

    line-height: 1.85;

    letter-spacing: .2px;

    color: rgba(255, 255, 255, .82);

    max-width: 620px;

}


@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(35px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

@keyframes cardSlideUp {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.hero-stats {

    display: flex;

    gap: 60px;

}

.hero-stats h3 {

    color: #ffffff;

    font-weight: 700;

}

.hero-stats span {

    color: #9b9b9b;

}

.hero-panel {

    background: #111;

    border: 1px solid #222;

    border-radius: 24px;

    padding: 40px;

    box-shadow: 0 40px 100px rgba(0, 0, 0, .4);

}

.hero-feature {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid #222;

}

.hero-feature:last-child {

    border-bottom: none;

}

.hero-feature i {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #000;

    font-size: 1.2rem;

}

.hero-feature strong {

    display: block;

    font-size: 1.05rem;

}

.hero-feature p {

    margin: 4px 0 0;

}

/*======================================
TOP HERO ROW
======================================*/

.hero-top-row {

    display: grid;

    grid-template-columns: 5fr 7fr;

    gap: 40px;

    margin-bottom: 45px;

}

.hero-services {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

}

.service-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 22px;

    background: #111;

    border: 1px solid #2a2a2a;

    border-radius: 18px;

    transition: .35s;

}

.service-item:hover {

    transform: translateY(-4px);

    border-color: #555;

}

.service-item i {

    width: 24px;

    text-align: center;

    color: #fff;

    font-size: 18px;

}

.service-item span {

    color: #fff;

    font-weight: 500;

}


.service-item:hover,
.dashboard-stat:hover {

    transform: translateY(-6px);

}


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

.dashboard-wrapper {

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dashboard-card {

    background: #111111;

    border: 1px solid #2a2a2a;

    border-radius: 24px;

    padding: 35px;

    min-height: 760px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);


}

.dashboard-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 35px;

}

.dashboard-title {

    color: #ffffff;

    font-size: 1.4rem;

    font-weight: 700;

    margin-bottom: 4px;

}

.dashboard-subtitle {

    color: #9b9b9b;

    margin: 0;

    font-size: .95rem;

}

.dashboard-status {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: .9rem;

}

/*==================================
Dashboard Video
==================================*/

.dashboard-video {

    margin-bottom: 28px;

}

.dashboard-lock-video {

    width: 100%;

    height: 240px;

    display: block;

    object-fit: cover;

    border-radius: 18px;

    border: 1px solid #2a2a2a;

    background: #0f0f0f;

    overflow: hidden;

}

.showcase-video {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.showcase-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 36px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .88),
            rgba(0, 0, 0, .20),
            rgba(0, 0, 0, .55));

}

.showcase-header h3 {

    color: #fff;

    font-size: 32px;

    margin-bottom: 8px;

}

.showcase-header p {

    color: #cfcfcf;

}


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

.showcase-modules {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.module-row {

    display: flex;

    align-items: center;

    gap: 16px;

    background: rgba(20, 20, 20, .75);

    backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 14px;

    padding: 18px 22px;

    transition: .3s;

}

.module-row:hover {

    transform: translateX(8px);

    background: rgba(35, 35, 35, .9);

}

.module-row i {

    width: 24px;

    color: #fff;

}

.module-row span {

    flex: 1;

    color: #fff;

}

.module-row strong {

    color: #fff;

}

.status-dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow: 0 0 12px #22c55e;

}

.dashboard-showcase {

    position: relative;

    height: 650px;

    overflow: hidden;

    border-radius: 24px;

    border: 1px solid #2b2b2b;

    background: #000;

}

.showcase-content {
    position: absolute;
    inset: 0;
    padding: 35px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, .45) 0%,
            rgba(0, 0, 0, .10) 35%,
            rgba(0, 0, 0, .85) 100%);
    z-index: 1;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.showcase-header h2 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 32px;
}

.showcase-header p {
    color: #d0d0d0;
}

.showcase-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.live-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.live-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.live-stat small {
    color: #a5a5a5;
    margin-top: 6px;
    font-size: 12px;
}

.showcase-spacer {
    flex: 1;
}

.module-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dashboard-stats {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;

}

.dashboard-stat {

    background: #141414;

    border: 1px solid #2b2b2b;

    border-radius: 18px;

    padding: 22px;

    text-align: center;

    transition: .3s;

}

.dashboard-stat:hover {

    transform: translateY(-4px);

    border-color: #555;

}

.live-stat {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

}

.dashboard-stat h3 {

    color: #fff;

    font-size: 30px;

    margin-bottom: 6px;

}

.dashboard-stat span {

    color: #ffffff;

    font-size: 14px;

}

.dashboard-modules {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.module-item {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 16px 20px;

    border: 1px solid #262626;

    border-radius: 14px;

    background: #151515;

}

.module-item i {

    color: #fff;

    width: 26px;

}

.module-item span {

    flex: 1;

    margin-left: 15px;

    color: #fff;

}

.module-item strong {

    color: #d0d0d0;

    font-size: .9rem;

}

.hero-row {

    padding-top: 0;

    align-items: center;

}

/*==================================================
TRUSTED BY
==================================================*/

.trusted-section {

    padding: 100px 0;

    background: #ffffff;

}

.trusted-heading {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 60px;

}

.trusted-label {

    display: inline-block;

    color: #6b7280;

    letter-spacing: 3px;

    font-size: .85rem;

    margin-bottom: 15px;

    font-weight: 600;

    text-transform: uppercase;

}

.trusted-heading h2 {

    color: #111111;

    margin-bottom: 20px;

}

.trusted-heading p {

    color: #6b7280;

    max-width: 700px;

    margin: 0 auto;

}

.trusted-property-name {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 180px;

    height: 70px;

    color: #fff;

    font-size: 20px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    opacity: .85;

    text-align: center;

}

/*==========================
SLIDER
==========================*/
.trusted-slider {

    position: relative;

    display: flex;

    overflow: hidden;

    width: 100%;

    background: #5a5a5a;

    padding: 35px 0;

}

.trusted-slider-wrapper {

    position: relative;

    width: 100vw;

    left: 50%;

    margin-left: -50vw;

    overflow: hidden;

    box-sizing: border-box;

}

.trusted-track {

    display: flex;

    align-items: center;

    flex-shrink: 0;

    min-width: 100%;

    animation: trustedScroll 20s linear infinite;

}

.trusted-slider:hover .trusted-track {

    animation-play-state: paused;

}

.trusted-slider:hover .trusted-track {

    animation-play-state: paused;

}

.trusted-logo-item {

    width: 220px;

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}

.trusted-logo-item img {

    max-width: 140px;

    max-height: 70px;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: .85;

    transition: .35s;

}

.trusted-logo-item:hover img {

    filter: none;

    opacity: 1;

    transform: scale(1.08);

}

@keyframes trustedScroll {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-100%);

    }

}

@keyframes trustedFadeUp {

    from {

        opacity: 0;

        transform: translateY(35px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/*==================================================
SERVICES
==================================================*/

.services-section {

    padding: 120px 0;

    background: #000;

}

.services-heading {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 70px;

}

.services-label {

    display: inline-block;

    margin-bottom: 16px;

    color: #8a8a8a;

    letter-spacing: 3px;

    font-size: .85rem;

    text-transform: uppercase;

}

.services-heading h2 {

    color: #fff;

    margin-bottom: 20px;

    font-size: 52px;

    font-weight: 700;

}

.services-heading p {

    color: #a8a8a8;

    font-size: 18px;

    line-height: 1.8;

}

.services-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}

.service-card {

    background: #111;

    border: 1px solid #242424;

    border-radius: 28px;

    padding: 45px;

    transition: .35s;

}

.service-card:hover {

    transform: translateY(-8px);

    border-color: #555;

}

.service-icon {

    width: 70px;

    height: 70px;

    border-radius: 18px;

    background: #fff;

    color: #000;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    margin-bottom: 30px;

}

.service-card h3 {

    color: #fff;

    margin-bottom: 18px;

    font-size: 28px;

}

.service-card p {

    color: #a8a8a8;

    line-height: 1.8;

    margin-bottom: 30px;

}

.service-list {

    list-style: none;

    padding: 0;

    margin: 0;

}

.service-list li {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #fff;

    padding: 12px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .06);

}

.service-list li:last-child {

    border-bottom: none;

}

.service-list i {

    color: #fff;

    font-size: 14px;

}

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

.how-section {

    background: #fff;

    padding: 140px 0;

}

.how-heading {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 80px;

}

.how-label {

    display: inline-block;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #888;

    margin-bottom: 18px;

    font-size: .85rem;

}

.how-heading h2 {

    color: #111;

    margin-bottom: 20px;

}

.how-heading p {

    color: #666;

    font-size: 18px;

    line-height: 1.8;

}

/*------------------------------*/

.workflow-booking {

    display: flex;

    justify-content: center;

}

.workflow-cloud {

    display: flex;

    justify-content: center;

}

.workflow-line {

    position: relative;

    width: 2px;

    height: 80px;

    background: #d9d9d9;

    margin: 0 auto;

    overflow: hidden;

    transform: scaleY(0);

    transform-origin: top;

    transition: transform .8s ease;

}

.workflow-line.show {

    transform: scaleY(1);

}

.workflow-dot {

    position: absolute;

    left: 50%;

    top: -14px;

    width: 12px;

    height: 12px;

    margin-left: -6px;

    border-radius: 50%;

    background: #000000;

    box-shadow:
        0 0 10px rgba(255, 255, 255, .9),
        0 0 25px rgba(255, 255, 255, .7);

    opacity: 0;

}

@keyframes workflowFlow {

    0% {

        top: -14px;

        opacity: 0;

    }

    10% {

        opacity: 1;

    }

    90% {

        opacity: 1;

    }

    100% {

        top: 84px;

        opacity: 0;

    }

}

.workflow-line.show .workflow-dot {

    animation: workflowFlow 2.6s linear infinite;

}

/*------------------------------*/

.workflow-card {

    border-radius: 28px;

    padding: 40px;

    transition: .35s;

}

.workflow-card:hover {

    transform: translateY(-8px);

}

.booking-card {

    width: 380px;

    background: #ffffff;

    border: 1px solid #dcdcdc;

    text-align: center;

}

.cloud-card {

    width: 700px;

    background: #111;

    color: #fff;

    border: 1px solid #2d2d2d;

}

.cloud-card p {

    color: #bdbdbd;

}

.cloud-card ul {

    list-style: none;

    padding: 0;

    margin-top: 30px;

}

.cloud-card li {

    display: flex;

    gap: 12px;

    align-items: center;

    padding: 12px 0;

    color: #fff;

}

.cloud-card li i {

    color: #fff;

}

/*------------------------------*/

.workflow-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.output-card {

    background: #fff;

    border: 1px solid #ddd;

    text-align: center;

}

.output-card p {

    color: #777;

}

/*------------------------------*/

.workflow-icon {

    width: 80px;

    height: 80px;

    border-radius: 22px;

    background: #111;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 32px;

    margin: 0 auto 30px;

}

.cloud-card .workflow-icon {

    background: #fff;

    color: #111;
}

.large {

    width: 90px;

    height: 90px;

    font-size: 36px;
}

/*=========================================
FEATURES
=========================================*/

.features-section {

    padding: 140px 0;

    background: #fff;

}

.features-heading {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 100px;

}

.features-label {

    display: inline-block;

    margin-bottom: 18px;

    color: #777;

    letter-spacing: 3px;

    text-transform: uppercase;

    font-size: .85rem;

}

.features-heading h2 {

    margin-bottom: 20px;

    color: #111;

}

.features-heading p {

    color: #666;

    font-size: 18px;

    line-height: 1.8;

}


/*=========================================
ROWS
=========================================*/

.feature-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;

    margin-bottom: 120px;

}

.feature-row.reverse {

    flex-direction: row-reverse;

}


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

.feature-content {

    flex: 1;

}

.feature-tag {

    display: inline-block;

    padding: 8px 18px;

    background: #111;

    color: #fff;

    border-radius: 30px;

    margin-bottom: 20px;

    font-size: 14px;

}

.feature-content h3 {

    margin-bottom: 20px;

    color: #111;

}

.feature-content p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 25px;

}

.feature-content ul {

    list-style: none;

    padding: 0;

}

.feature-content li {

    margin-bottom: 16px;

    color: #444;

}

.feature-content li i {

    color: #111;

    margin-right: 10px;

}


/*=========================================
IMAGE
=========================================*/

.feature-image {

    flex: 1;

}

.feature-placeholder {

    height: 420px;

    border-radius: 24px;

    border: 2px dashed #d5d5d5;

    background: #fafafa;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #999;

    font-size: 22px;

    font-weight: 600;

}

/*=========================================
WHY BRAFA
=========================================*/

.why-section {

    padding: 140px 0;

    background: #111;

    color: #fff;

}


/*=========================================
HEADING
=========================================*/

.why-heading {

    max-width: 760px;

    margin: 0 auto 90px;

    text-align: center;

}

.why-label {

    display: inline-block;

    margin-bottom: 18px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #999;

    font-size: .85rem;

}

.why-heading h2 {

    color: #fff;

    margin-bottom: 20px;

}

.why-heading p {

    color: #b8b8b8;

    font-size: 18px;

    line-height: 1.8;

}


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

.why-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

    margin-bottom: 100px;

}


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

.why-item {

    padding: 40px;

    border: 1px solid #2a2a2a;

    border-radius: 24px;

    background: #181818;

    transition: .35s;

}

.why-item:hover {

    transform: translateY(-8px);

    border-color: #fff;

}


/*=========================================
ICON
=========================================*/

.why-icon {

    width: 70px;

    height: 70px;

    border-radius: 18px;

    background: #fff;

    color: #111;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 28px;

    margin-bottom: 25px;

}

.why-item h4 {

    color: #fff;

    margin-bottom: 18px;

}

.why-item p {

    color: #b5b5b5;

    line-height: 1.8;

}


/*=========================================
STATS
=========================================*/

.why-stats {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    padding-top: 70px;

    border-top: 1px solid #2a2a2a;

}

.stat {

    text-align: center;

}

.stat h3 {

    color: #fff;

    font-size: 52px;

    margin-bottom: 10px;

}

.stat span {

    color: #9d9d9d;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 13px;

}



/*======================================
PRICING
======================================*/

.pricing-section {

    padding: 140px 0;

    background: #fff;

}

.pricing-heading {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 90px;

}

.pricing-label {

    display: inline-block;

    margin-bottom: 15px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #888;

    font-size: .85rem;

}

.pricing-heading h2 {

    margin-bottom: 20px;

    color: #000;

}

.pricing-heading p {

    color: #666;

    line-height: 1.8;

}


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

.pricing-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

}

.pricing-card {

    background: #fff;

    border: 1px solid #ddd;

    border-radius: 28px;

    padding: 55px;

    position: relative;

    transition: .35s;

    color: black;

}

.pricing-card:hover {

    transform: translateY(-10px);

}

.featured {

    background: #111;

    color: #fff;

    transform: scale(1.05);

}

.popular {

    position: absolute;

    top: -18px;

    left: 50%;

    transform: translateX(-50%);

    background: #ffe600;

    color: #111;

    padding: 8px 20px;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}

.plan-name {

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 25px;

}

.plan-price {

    display: flex;

    align-items: flex-start;

    margin-bottom: 10px;

}

.currency {

    font-size: 20px;

    margin-top: 15px;

    margin-right: 10px;

}

.amount {

    font-size: 72px;

    font-weight: 800;

    line-height: 1;

}

.plan-period {

    color: #777;

    margin-bottom: 35px;

}

.featured .plan-period {

    color: #bbb;

}

/*======================================
TIER TABLE
======================================*/

.tier-table {

    margin: 35px 0;

}

.tier-table div {

    display: flex;

    justify-content: space-between;

    padding: 16px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .15);

}

.tier-table strong {

    font-size: 18px;

}

/*======================================
FEATURES
======================================*/

.plan-features {

    list-style: none;

    padding: 0;

    margin: 35px 0;

}

.plan-features li {

    margin-bottom: 18px;

}

.plan-features i {

    margin-right: 12px;

}

/*======================================
BUTTON
======================================*/

.pricing-btn {

    display: block;

    text-align: center;

    padding: 18px;

    border-radius: 16px;

    background: #111;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

}

.dark {

    background: #fff;

    color: #111;

}


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

.faq-section {

    padding: 140px 0;

    background: #111;

    color: #fff;

}

/*=========================================
HEADING
=========================================*/

.faq-heading {

    max-width: 720px;

    margin: 0 auto 70px;

    text-align: center;

}

.faq-label {

    display: inline-block;

    margin-bottom: 18px;

    color: #999;

    letter-spacing: 3px;

    text-transform: uppercase;

    font-size: .85rem;

}

.faq-heading h2 {

    color: #fff;

    margin-bottom: 20px;

}

.faq-heading p {

    color: #b5b5b5;

    line-height: 1.8;

}

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

.faq-container {

    max-width: 900px;

    margin: auto;

}

.faq-item {

    border-bottom: 1px solid #2d2d2d;

    padding: 22px 0;

}

.faq-item summary {

    list-style: none;

    cursor: pointer;

    font-size: 22px;

    font-weight: 600;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.faq-item summary::-webkit-details-marker {

    display: none;

}

.faq-item summary::after {

    content: "+";

    font-size: 28px;

    transition: .3s;

}

.faq-item[open] summary::after {

    content: "−";

}

.faq-item p {

    margin-top: 20px;

    color: #b8b8b8;

    line-height: 1.8;

    max-width: 90%;

}


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

.cta-section {

    padding: 140px 0;

    background: #fff;

}

.cta-content {

    max-width: 900px;

    margin: auto;

    text-align: center;

}

.cta-label {

    display: inline-block;

    margin-bottom: 20px;

    color: #888;

    letter-spacing: 3px;

    text-transform: uppercase;

    font-size: .85rem;

}

.cta-content h2 {

    font-size: 64px;

    line-height: 1.15;

    margin-bottom: 30px;

    color: #111;

}

.cta-content p {

    max-width: 700px;

    margin: 0 auto 50px;

    font-size: 20px;

    line-height: 1.8;

    color: #666;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    margin-bottom: 50px;

}

.btn-dark {

    display: inline-block;

    padding: 18px 40px;

    background: #111;

    color: #fff;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.btn-dark:hover {

    background: #000;

    color: #fff;

}

.btn-light {

    display: inline-block;

    padding: 18px 40px;

    background: #fff;

    color: #111;

    border: 2px solid #111;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.btn-light:hover {

    background: #111;

    color: #fff;

}

.cta-features {

    display: flex;

    justify-content: center;

    gap: 35px;

    flex-wrap: wrap;

}

.cta-features span {

    color: #666;

    font-size: 16px;

}

.cta-features i {

    color: #111;

    margin-right: 8px;

}


/*=========================================
FOOTER
=========================================*/

.website-footer {

    background: #111;

    color: #fff;

    padding: 90px 0 35px;

}

.footer-top {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 60px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.footer-brand h3 {

    margin-bottom: 25px;

    color: #fff;

}

.footer-brand p {

    color: #aaa;

    line-height: 1.9;

    margin-bottom: 30px;

    max-width: 420px;

}

.footer-social {

    display: flex;

    gap: 15px;

}

.footer-social a {

    width: 42px;

    height: 42px;

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    text-decoration: none;

    transition: .3s;

}

.footer-social a:hover {

    background: #fff;

    color: #111;

}

.footer-column h5 {

    margin-bottom: 25px;

    color: #fff;

}

.footer-column ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-column li {

    margin-bottom: 16px;

    color: #aaa;

}

.footer-column a {

    color: #aaa;

    text-decoration: none;

    transition: .3s;

}

.footer-column a:hover {

    color: #fff;

}

.footer-column i {

    width: 22px;

}

.footer-bottom {

    margin-top: 35px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #888;

    font-size: 14px;

}

.footer-links {

    display: flex;

    gap: 30px;

}

.footer-links a {

    color: #888;

    text-decoration: none;

}

.footer-links a:hover {

    color: #fff;

}

.hero-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: center;
}

/*=========================================
Responsive
=========================================*/

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


    /* Navbar CSS */

    .website-navbar {

        height: auto;

        padding: 18px 0;

    }

    .website-navbar .website-container {

        display: block;

    }

    .website-navbar .navbar-toggler {

        padding: 8px;

    }

    .website-navbar .navbar {

        padding: 0;

    }

    .website-navbar .navbar-toggler {

        margin: 0;

    }

    .website-navbar .navbar-collapse {

        margin-top: 20px;

        width: 100%;

        background: #111;

        border: 1px solid #222;

        border-radius: 20px;

        padding: 30px;

    }

    .website-navbar .navbar-nav {

        gap: 0;

        width: 100%;

    }

    .website-navbar .nav-item {

        width: 165px;

    }

    .website-navbar .nav-link {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 100%;

        height: 46px;

        padding: 0;

        border-radius: 8px 22px 8px 22px;

    }

    .website-navbar .nav-link::after {

        display: none;

    }

    .website-navbar .btn-primary-custom {

        margin-top: 20px;

        width: 100%;

        justify-content: center;

    }


    /* Hero Section Css */

    .hero-top-row {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

    .dashboard-showcase {
        height: 560px;
    }

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

    .hero-stats {
        gap: 40px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-right {
        margin-top: 50px;
    }

    /* Trusted By section */

    .trusted-section {
        padding: 80px 0;
    }

    .trusted-heading {
        margin-bottom: 45px;
    }

    .trusted-logo-item {
        width: 180px;
    }

    .trusted-logo-item img {
        max-width: 120px;
    }


    /* Services Section */

    .services-section {
        padding: 100px 0;
    }

    .services-heading {
        margin-bottom: 60px;
    }

    .services-heading h2 {
        font-size: 42px;
    }

    .services-grid {
        gap: 24px;
    }

    .service-card {
        padding: 36px;
    }

    /* How It Works */

    .how-section {
        padding: 100px 0;
    }

    .how-heading {
        margin-bottom: 70px;
    }

    .journey-diagram {
        gap: 50px;
    }

    .journey-line {
        width: 100px;
    }

    .journey-services {
        gap: 20px;
    }

    .journey-icon {
        width: 80px;
        height: 80px;
        font-size: 30px;
    }

    /* Features Section */

    .features-section {
        padding: 110px 0;
    }

    .features-heading {
        margin-bottom: 70px;
    }

    .feature-row {
        gap: 50px;
        margin-bottom: 80px;
    }

    .feature-placeholder {
        height: 340px;
    }

    /* Why Brafa Section */

    .why-section {
        padding: 110px 0;
    }

    .why-heading {
        margin-bottom: 70px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-item {
        padding: 32px;
    }

    .why-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Pricing Section */

    .pricing-section {
        padding: 110px 0;
    }

    .pricing-heading {
        margin-bottom: 70px;
    }

    .pricing-wrapper {
        gap: 30px;
    }

    .pricing-card {
        padding: 40px;
    }

    .amount {
        font-size: 60px;
    }

    /* FAQ Section */

    .faq-section {
        padding: 110px 0;
    }

    .faq-heading {
        margin-bottom: 60px;
    }

    .faq-container {
        max-width: 800px;
    }

    /* CTA Section */

    .cta-section {
        padding: 110px 0;
    }

    .cta-content {
        max-width: 760px;
    }

    .cta-content h2 {
        font-size: 52px;
    }

    .cta-content p {
        font-size: 18px;
    }

    .cta-buttons {
        gap: 16px;
    }

    /* Footer Section */

    .website-footer {
        padding: 80px 0 30px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand p {
        max-width: 100%;
    }

}


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

    /* Navbar CSS */

    .website-navbar {

        padding: 14px 0;

    }

    .website-navbar .navbar-brand img {

        height: 38px;

    }

    .website-navbar .navbar-collapse {

        padding: 24px;

    }

    .website-navbar .nav-link {

        font-size: 16px;

    }

    /* Hero Section Css */

    .hero-section {
        padding-top: 90px;
    }

    .hero-row {

        text-align: center;

    }

    .hero-row .col-lg-5 {

        margin-bottom: 40px;

    }

    .hero-title {
        text-align: center;
    }

    .hero-description {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-services {
        grid-template-columns: 1fr;
    }

    .dashboard-showcase {
        height: 480px;
    }

    .showcase-header {
        flex-direction: column;
        gap: 20px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }

    /* Trusted by section */

    .trusted-heading h2 {
        font-size: 2rem;
    }

    .trusted-heading p {
        font-size: 16px;
    }

    .trusted-slider {
        padding: 24px 0;
        border-radius: 20px;
    }

    .trusted-logo-item {
        width: 150px;
        height: 65px;
    }

    .trusted-logo-item img {
        max-width: 100px;
    }

    /* Services Section */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-heading h2 {
        font-size: 36px;
    }

    .services-heading p {
        font-size: 16px;
    }

    .service-card {
        padding: 32px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 24px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    /* How It Works */

    .how-heading h2 {
        font-size: 2rem;
    }

    .how-heading p {
        font-size: 16px;
    }

    .journey-diagram {
        gap: 30px;
    }

    .journey-line {
        width: 60px;
    }

    .journey-services {
        gap: 15px;
    }

    .journey-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .service-node h5 {
        font-size: 18px;
    }

    /* Features Section */

    .features-heading h2 {
        font-size: 2rem;
    }

    .features-heading p {
        font-size: 16px;
    }

    .feature-row,
    .feature-row.reverse {

        flex-direction: column;

        gap: 40px;

        margin-bottom: 70px;

    }

    .feature-content,
    .feature-image {

        width: 100%;

    }

    .feature-placeholder {

        height: 300px;

    }

    .feature-content h3 {

        font-size: 28px;

    }

    /* Why Brafa Section */

    .why-heading h2 {
        font-size: 2rem;
    }

    .why-heading p {
        font-size: 16px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .why-item h4 {
        font-size: 22px;
    }

    .stat h3 {
        font-size: 42px;
    }

    /* Pricing Section */

    .pricing-heading h2 {
        font-size: 2rem;
    }

    .pricing-heading p {
        font-size: 16px;
    }

    .pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .pricing-card {
        padding: 36px;
    }

    .featured {
        transform: none;
    }

    .popular {
        top: -15px;
    }

    .amount {
        font-size: 56px;
    }

    .plan-name {
        font-size: 28px;
    }

    /* FAQ Section */

    .faq-heading h2 {
        font-size: 2rem;
    }

    .faq-heading p {
        font-size: 16px;
    }

    .faq-item summary {
        font-size: 20px;
    }

    .faq-item p {
        font-size: 15px;
        max-width: 100%;
    }

    /* CTA Section */

    .cta-content h2 {
        font-size: 42px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons a {
        width: 320px;
        max-width: 100%;
    }

    .cta-features {
        gap: 25px;
    }

    /* Footer Section */

    .footer-brand h3 {
        font-size: 28px;
    }

    .footer-column h5 {
        font-size: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

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

    /* Navbar CSS */

    .website-navbar {

        padding: 12px 0;

    }

    .website-navbar .navbar-brand img {

        height: 34px;

    }

    .website-navbar .navbar-collapse {

        padding: 20px;

        border-radius: 16px;

    }

    .website-navbar .btn-primary-custom {

        padding: 14px 22px;

    }

    /* Hero Section Css */

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {

        max-width: 100%;

    }

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

    .hero-buttons a {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .hero-section {

        padding-bottom: 20px;

    }

    .dashboard-showcase {
        height: 320px;
    }

    .dashboard-card {

        padding: 20px;

    }

    .showcase-content {
        padding: 20px;
    }

    .showcase-header h2 {
        font-size: 26px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    /* Trusted by section */
    .trusted-section {
        padding: 60px 0;
    }

    .trusted-heading {
        margin-bottom: 35px;
    }

    .trusted-label {
        font-size: .75rem;
        letter-spacing: 2px;
    }

    .trusted-heading h2 {
        font-size: 1.7rem;
    }

    .trusted-heading p {
        font-size: 15px;
    }

    .trusted-slider {
        padding: 18px 0;
        border-radius: 16px;
    }

    .trusted-logo-item {
        width: 120px;
        height: 55px;
    }

    .trusted-logo-item img {
        max-width: 85px;
    }

    .trusted-track {
        animation-duration: 30s;
    }

    /* Services Section */

    .services-section {
        padding: 70px 0;
    }

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

    .services-heading h2 {
        font-size: 30px;
    }

    .services-heading p {
        font-size: 15px;
    }

    .services-label {
        font-size: .75rem;
        letter-spacing: 2px;
    }

    .service-card {
        padding: 24px;
        border-radius: 20px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .service-card p {
        font-size: 15px;
    }

    .service-list li {
        font-size: 15px;
        padding: 10px 0;
    }

    .service-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    /* How It Works */

    .how-section {
        padding: 70px 0;
    }

    .how-heading {
        margin-bottom: 40px;
    }

    .how-label {
        font-size: .75rem;
        letter-spacing: 2px;
    }

    .how-heading h2 {
        font-size: 1.7rem;
    }

    .how-heading p {
        font-size: 15px;
    }

    /* Top Flow */

    .journey-diagram {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 50px;
    }

    .journey-line {
        width: 2px;
        height: 40px;
    }

    /* Bottom Services */

    .journey-services {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .journey-services::before {
        display: none;
    }

    .service-node {
        width: 100%;
        max-width: 320px;
    }

    .node-line {
        display: none;
    }

    .journey-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
        margin-bottom: 18px;
    }

    /* Features Section */

    .features-section {

        padding: 70px 0;

    }

    .features-heading {

        margin-bottom: 40px;

    }

    .features-label {

        font-size: .75rem;

        letter-spacing: 2px;

    }

    .features-heading h2 {

        font-size: 1.7rem;

    }

    .features-heading p {

        font-size: 15px;

    }

    .feature-content h3 {

        font-size: 24px;

    }

    .feature-content p {

        font-size: 15px;

    }

    .feature-content li {

        font-size: 15px;

    }

    .feature-placeholder {

        height: 240px;

        font-size: 18px;

    }

    /* Why Brafa Section */

    .why-section {
        padding: 70px 0;
    }

    .why-heading {
        margin-bottom: 40px;
    }

    .why-label {
        font-size: .75rem;
        letter-spacing: 2px;
    }

    .why-heading h2 {
        font-size: 1.7rem;
    }

    .why-heading p {
        font-size: 15px;
    }

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

    .why-item {
        padding: 24px;
    }

    .why-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .why-item h4 {
        font-size: 20px;
    }

    .why-item p {
        font-size: 15px;
    }

    .why-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 50px;
    }

    .stat h3 {
        font-size: 36px;
    }

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

    /* Pricing Section */

    .pricing-section {
        padding: 70px 0;
    }

    .pricing-heading {
        margin-bottom: 40px;
    }

    .pricing-label {
        font-size: .75rem;
        letter-spacing: 2px;
    }

    .pricing-heading h2 {
        font-size: 1.7rem;
    }

    .pricing-heading p {
        font-size: 15px;
    }

    .pricing-card {
        padding: 24px;
        border-radius: 20px;
    }

    .plan-name {
        font-size: 24px;
    }

    .currency {
        font-size: 18px;
    }

    .amount {
        font-size: 48px;
    }

    .plan-period {
        font-size: 14px;
    }

    .tier-table strong {
        font-size: 16px;
    }

    .tier-table div {
        padding: 14px 0;
    }

    .plan-features li {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .pricing-btn {
        padding: 16px;
    }

    /* FAQ Section */

    .faq-section {
        padding: 70px 0;
    }

    .faq-heading {
        margin-bottom: 40px;
    }

    .faq-label {
        font-size: .75rem;
        letter-spacing: 2px;
    }

    .faq-heading h2 {
        font-size: 1.7rem;
    }

    .faq-heading p {
        font-size: 15px;
    }

    .faq-item {
        padding: 18px 0;
    }

    .faq-item summary {
        font-size: 18px;
        line-height: 1.5;
        gap: 20px;
    }

    .faq-item summary::after {
        font-size: 22px;
        flex-shrink: 0;
    }

    .faq-item p {
        font-size: 15px;
        margin-top: 16px;
    }

    /* CTA Section */

    .cta-section {
        padding: 70px 0;
    }

    .cta-label {
        font-size: .75rem;
        letter-spacing: 2px;
    }

    .cta-content h2 {
        font-size: 1.9rem;
    }

    .cta-content p {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .cta-buttons {
        gap: 15px;
        margin-bottom: 35px;
    }

    .cta-buttons a {
        width: 100%;
    }

    .btn-dark,
    .btn-light {
        padding: 16px 24px;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-features span {
        font-size: 15px;
    }

    /* Footer Section */

    .website-footer {
        padding: 60px 0 25px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto 25px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h5 {
        margin-bottom: 18px;
    }

    .footer-column li {
        margin-bottom: 12px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom {
        margin-top: 25px;
        font-size: 13px;
    }

}

/* Small Phones */
@media (max-width: 400px) {

    /* Navbar */

    .website-navbar .navbar-brand img {

        height: 30px;

    }

    .website-navbar .navbar-toggler {

        font-size: 18px;

    }

    .website-navbar .nav-link {

        font-size: 15px;

    }

    /* Hero Section Css */

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-tag {
        font-size: .75rem;
    }

    .service-item {
        padding: 16px;
    }

    .showcase-header h2 {
        font-size: 22px;
    }

    .dashboard-showcase {
        height: 340px;
    }

    /* Services Section */

    .services-heading h2 {
        font-size: 26px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    /* How It Works */

    .how-heading h2 {
        font-size: 1.5rem;
    }

    .journey-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .service-node h5 {
        font-size: 18px;
    }

    .service-node span {
        font-size: 14px;
    }

    /* Features Section */

    .feature-content h3 {

        font-size: 22px;

    }

    .feature-placeholder {

        height: 200px;

        border-radius: 18px;

        font-size: 16px;

    }

    /* Why Brafa Section */

    .why-heading h2 {
        font-size: 1.5rem;
    }

    .why-item {
        padding: 20px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stat h3 {
        font-size: 32px;
    }

    /* Pricing Section */

    .pricing-heading h2 {
        font-size: 1.5rem;
    }

    .pricing-card {
        padding: 20px;
    }

    .plan-name {
        font-size: 22px;
    }

    .amount {
        font-size: 42px;
    }

    .popular {
        font-size: 11px;
        padding: 6px 16px;
    }

    /* FAQ Section */

    .faq-heading h2 {
        font-size: 1.5rem;
    }

    .faq-item summary {
        font-size: 17px;
    }

    .faq-item p {
        font-size: 14px;
    }

    /* CTA Section */

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 14px;
    }

    .btn-dark,
    .btn-light {
        padding: 15px 20px;
        font-size: 15px;
    }

    /* Footer Section */

    .footer-brand h3 {
        font-size: 24px;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-column h5 {
        font-size: 18px;
    }

    .footer-column li {
        font-size: 14px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 991.98px) {

    .website-navbar .navbar-collapse {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height .35s ease, opacity .25s ease;
    }

    .website-navbar .navbar-collapse.show {
        max-height: 600px;
        opacity: 1;
    }

}

/*======================================
GENERAL SCROLL REVEALS
======================================*/

.scroll-reveal {

    opacity: 0;

    transform: translateY(60px);

    transition:
        opacity .8s ease,
        transform .8s ease;

    will-change: opacity, transform;

}

.scroll-reveal.show {

    opacity: 1;

    transform: translateY(0);

}

.delay-1 {
    transition-delay: .10s;
}

.delay-2 {
    transition-delay: .25s;
}

.delay-3 {
    transition-delay: .40s;
}

.delay-4 {
    transition-delay: .55s;
}

.delay-5 {
    transition-delay: .70s;
}

/*======================================
SERVICE CARD REVEALS
======================================*/

.reveal-left,
.reveal-right,
.reveal-bottom-left,
.reveal-bottom-right {

    opacity: 0;

    transition:
        transform 1s cubic-bezier(.22, 1, .36, 1),
        opacity 1s ease;

    will-change: transform, opacity;

}

.reveal-left {

    transform: translateX(-120px);

}

.reveal-right {

    transform: translateX(120px);

}

.reveal-bottom-left {

    transform: translate(-90px, 90px);

}

.reveal-bottom-right {

    transform: translate(90px, 90px);

}

.reveal-left.show,
.reveal-right.show,
.reveal-bottom-left.show,
.reveal-bottom-right.show {

    opacity: 1;

    transform: translate(0, 0);

}

.reveal-delay-1 {
    transition-delay: .08s;
}

.reveal-delay-2 {
    transition-delay: .16s;
}

.reveal-delay-3 {
    transition-delay: .24s;
}

.reveal-delay-4 {
    transition-delay: .32s;
}

/*======================================
DASHBOARD STAT REVEALS
======================================*/

.stat-reveal {

    opacity: 0;

    transform: translateY(70px) scale(.92);

    transition:
        transform .9s cubic-bezier(.22, 1, .36, 1),
        opacity .9s ease;

    will-change: transform, opacity;

}

.stat-reveal.show {

    opacity: 1;

    transform: translateY(0) scale(1);

}

.stat-delay-1 {
    transition-delay: .08s;
}

.stat-delay-2 {
    transition-delay: .16s;
}

.stat-delay-3 {
    transition-delay: .24s;
}

.stat-delay-4 {
    transition-delay: .32s;
}

/*======================================
TRUSTED SLIDER REVEAL
======================================*/

.trusted-slider-reveal {

    opacity: 0;

    transform: translateY(80px) scale(.97);

    transition:
        transform 1s cubic-bezier(.22, 1, .36, 1),
        opacity 1s ease;

    will-change: transform, opacity;

}

.trusted-slider-reveal.show {

    opacity: 1;

    transform: translateY(0) scale(1);

}

/*======================================
SERVICES REVEALS
======================================*/

.service-card-left,
.service-card-right {

    opacity: 0;

    transition:
        transform .9s cubic-bezier(.22, 1, .36, 1),
        opacity .9s ease;

    will-change: transform, opacity;

}

.service-card-left {

    transform: translateX(-120px);

}

.service-card-right {

    transform: translateX(120px);

}

.service-card-left.show,
.service-card-right.show {

    opacity: 1;

    transform: translateX(0);

}

/*==============================
Service Item Animation
==============================*/

.service-card .service-item {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .6s ease,
        transform .6s ease;

}

.service-card.show .service-item {

    opacity: 1;

    transform: translateY(0);

}

.service-card.show .service-item:nth-child(1) {

    transition-delay: .12s;

}

.service-card.show .service-item:nth-child(2) {

    transition-delay: .24s;

}

.service-card.show .service-item:nth-child(3) {

    transition-delay: .36s;

}

.service-card.show .service-item:nth-child(4) {

    transition-delay: .48s;

}


/*======================================
BOOKING CARD
======================================*/

.workflow-booking-card {

    opacity: 0;

    transform: translateY(-70px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22, 1, .36, 1);

    will-change: opacity, transform;

}

.workflow-booking-card.show {

    opacity: 1;

    transform: translateY(0);

}

/*======================================
VERTICAL LINES
======================================*/

.workflow-line {

    transform: scaleY(0);

    transform-origin: top center;

    transition: transform .8s ease;

    will-change: transform;

}

.workflow-line.show {

    transform: scaleY(1);

}

/*======================================
BRAFA CLOUD
======================================*/

.workflow-cloud-card {

    opacity: 0;

    transform: scale(.85);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22, 1, .36, 1);

    will-change: opacity, transform;

}

.workflow-cloud-card.show {

    opacity: 1;

    transform: scale(1);

}

/*======================================
CHECKLIST
======================================*/

.workflow-cloud-card li {

    opacity: 0;

    transform: translateX(-20px);

    transition:
        opacity .45s ease,
        transform .45s ease;

}

.workflow-cloud-card.show li {

    opacity: 1;

    transform: translateX(0);

}

.workflow-cloud-card.show li:nth-child(1) {

    transition-delay: .10s;

}

.workflow-cloud-card.show li:nth-child(2) {

    transition-delay: .22s;

}

.workflow-cloud-card.show li:nth-child(3) {

    transition-delay: .34s;

}

.workflow-cloud-card.show li:nth-child(4) {

    transition-delay: .46s;

}

/*======================================
OUTPUT CARDS
======================================*/

.workflow-output {

    opacity: 0;

    transform: translateY(60px);

    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.22, 1, .36, 1);

    will-change: opacity, transform;

}

.workflow-output.show {

    opacity: 1;

    transform: translateY(0);

}

.workflow-output.reveal-delay-1 {

    transition-delay: .10s;

}

.workflow-output.reveal-delay-2 {

    transition-delay: .22s;

}

.workflow-output.reveal-delay-3 {

    transition-delay: .34s;

}

.workflow-output.reveal-delay-4 {

    transition-delay: .46s;

}

/*======================================
ICON POP
======================================*/

@keyframes workflowIconPop {

    0% {

        transform: scale(.75);

    }

    60% {

        transform: scale(1.12);

    }

    100% {

        transform: scale(1);

    }

}

.workflow-booking-card.show .workflow-icon,
.workflow-cloud-card.show .workflow-icon,
.workflow-output.show .workflow-icon {

    animation: workflowIconPop .55s ease;

}

/*======================================
CARD HOVER
======================================*/

.workflow-card {

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.workflow-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

}

.workflow-card:hover .workflow-icon {

    transform: scale(1.08) rotate(4deg);

}

.workflow-icon {

    transition:
        transform .35s ease,
        background .35s ease;

}

/*======================================
CLOUD HOVER
======================================*/

.cloud-card:hover {

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45);

}

.cloud-card:hover .workflow-icon {

    transform: scale(1.08);

}

/*======================================
OUTPUT HOVER
======================================*/

.output-card:hover {

    border-color: #111;

}

/*==================================================
FEATURES
==================================================*/

.features-section {

    padding: 140px 0;

    background: #ffffff;

    overflow: hidden;

}

.features-heading {

    max-width: 760px;

    margin: 0 auto 100px;

    text-align: center;

}

.features-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 22px;

    border: 1px solid #dcdcdc;

    border-radius: 999px;

    font-size: .75rem;

    font-weight: 700;

    letter-spacing: .18em;

    text-transform: uppercase;

    margin-bottom: 24px;

}

.features-heading h2 {

    font-size: 3.2rem;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 24px;

}

.features-heading p {

    font-size: 1.15rem;

    line-height: 1.8;

    color: #666;

}

.feature-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;

    margin-bottom: 180px;

}

.feature-row:last-child {

    margin-bottom: 0;

}

.feature-row.reverse {

    direction: rtl;

}

.feature-row.reverse>* {

    direction: ltr;

}

.feature-tag {

    display: inline-block;

    margin-bottom: 20px;

    padding: 8px 18px;

    border-radius: 999px;

    background: #111;

    color: #fff;

    font-size: .78rem;

    font-weight: 600;

    letter-spacing: .08em;

    text-transform: uppercase;

}

.feature-content h3 {

    font-size: 2.5rem;

    line-height: 1.15;

    margin-bottom: 24px;

    font-weight: 800;

}

.feature-content p {

    color: #666;

    font-size: 1.08rem;

    line-height: 1.9;

    margin-bottom: 35px;

}

.feature-content ul {

    padding: 0;

    margin: 0;

    list-style: none;

}

.feature-content li {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 18px;

    font-size: 1rem;

}

.feature-content li i {

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #111;

    color: #fff;

    font-size: .8rem;

}

.feature-image {

    display: flex;

    flex-direction: column;

    align-items: center;

}

.feature-dashboard {

    position: relative;

    width: 100%;

    max-width: 620px;

    height: 560px;

}

.dashboard-window {

    position: absolute;

    inset: 40px;

    background: #fff;

    border-radius: 30px;

    border: 1px solid #ececec;

    overflow: hidden;

    box-shadow:

        0 40px 90px rgba(0, 0, 0, .08),

        0 15px 35px rgba(0, 0, 0, .05);

}

.dashboard-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 24px;

    border-bottom: 1px solid #efefef;

    background: #fafafa;

}

.dashboard-dots {

    display: flex;

    gap: 8px;

}

.dashboard-dots span {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #d7d7d7;

}

.dashboard-title {

    font-size: .9rem;

    font-weight: 600;

}

.dashboard-body {

    padding: 40px;

}

.dashboard-stat {

    text-align: center;

    margin-bottom: 35px;

}

.stat-number {

    display: block;

    font-size: 3.5rem;

    font-weight: 800;

    line-height: 1;

}

.stat-label {

    display: block;

    margin-top: 12px;

    color: #777;

}

.dashboard-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;

}

.mini-stat {

    padding: 22px;

    border-radius: 18px;

    border: 1px solid #ececec;

    text-align: center;

    background: #fcfcfc;

}

.mini-value {

    display: block;

    font-size: 1.8rem;

    font-weight: 700;

    color: #000;

}

.mini-label {

    display: block;

    margin-top: 6px;

    font-size: .85rem;

    color: #777;

}

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 16px;

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 20px;

    padding: 18px 22px;

    box-shadow:

        0 25px 55px rgba(0, 0, 0, .08);

}

.floating-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #111;

    color: #fff;

}

.floating-card small {

    display: block;

    color: #535353;

    margin-bottom: 4px;

}

.floating-card strong {

    display: block;

    font-size: 1rem;

    color: #000;

}

.passcode-card {

    top: 5px;

    left: -25px;

}

.battery-card {

    top: 135px;

    right: -25px;

}

.status-card {

    bottom: 90px;

    left: -10px;

}

.activity-card {

    bottom: 10px;

    right: -30px;

}

/*==================================================
BOOKING AUTOMATION
==================================================*/

.sync-dashboard {

    position: relative;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 50px;

    width: 100%;

    max-width: 650px;

    min-height: 520px;

    margin: auto;

}

.sync-column {

    display: flex;

    flex-direction: column;

    gap: 28px;

    z-index: 2;

}

.sync-card {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 18px 20px;

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 18px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .06);

    transition: .35s;

}

.sync-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .12);

}

.sync-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #111;

    color: #fff;

    font-size: 1.1rem;

    flex-shrink: 0;

}

.sync-card strong {

    display: block;

    font-size: 1rem;

    font-weight: 700;

    color: #000;

}

.sync-card small {

    display: block;

    color: #777;

    margin-top: 3px;

    font-size: .82rem;

}

.sync-center {

    position: relative;

    text-align: center;

    z-index: 3;

}

.sync-cloud {

    width: 130px;

    height: 130px;

    border-radius: 50%;

    background: #111;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto;

    font-size: 2.7rem;

    box-shadow:

        0 25px 60px rgba(0, 0, 0, .15);

}

.sync-center h4 {

    margin-top: 20px;

    font-size: 1.35rem;

    font-weight: 700;

}

.sync-center p {

    color: #666;

    margin-top: 8px;

}

.sync-line {

    position: absolute;

    top: 50%;

    height: 2px;

    background: #d8d8d8;

    transform: translateY(-50%);

}

.sync-line-left {

    left: 150px;

    width: 150px;

}

.sync-line-right {

    right: 150px;

    width: 150px;

}

.sync-card {

    animation: syncFloat 6s ease-in-out infinite;

}

.sync-card:nth-child(2) {

    animation-delay: .6s;

}

.sync-card:nth-child(3) {

    animation-delay: 1.2s;

}

.sync-cloud {

    animation: cloudFloat 5s ease-in-out infinite;

}

@keyframes syncFloat {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-8px);

    }

    100% {

        transform: translateY(0);

    }

}

@keyframes cloudFloat {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

    100% {

        transform: translateY(0);

    }

}

@media(max-width:991px) {

    .sync-dashboard {

        grid-template-columns: 1fr;

        gap: 40px;

        text-align: center;

    }

    .sync-column {

        align-items: center;

    }

    .sync-line {

        display: none;

    }

}

.data-packet {

    position: absolute;

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #fff;

    border: 2px solid #111;

    box-shadow:

        0 0 15px rgba(0, 0, 0, .25);

    z-index: 10;

}

.packet-1 {

    top: 110px;

    animation: flowLeft 4s linear infinite;

}

.packet-2 {

    top: 250px;

    animation: flowLeft 4s linear infinite 1.2s;

}

.packet-3 {

    top: 390px;

    animation: flowLeft 4s linear infinite 2.4s;

}

.packet-4 {

    top: 110px;

    animation: flowRight 4s linear infinite .8s;

}

.packet-5 {

    top: 250px;

    animation: flowRight 4s linear infinite 2s;

}

.packet-6 {

    top: 390px;

    animation: flowRight 4s linear infinite 3.2s;

}

@keyframes flowLeft {

    0% {

        left: 130px;

        opacity: 0;

    }

    10% {

        opacity: 1;

    }

    85% {

        left: 305px;

        opacity: 1;

    }

    100% {

        left: 320px;

        opacity: 0;

    }

}

@keyframes flowRight {

    0% {

        left: 335px;

        opacity: 0;

    }

    10% {

        opacity: 1;

    }

    85% {

        left: 520px;

        opacity: 1;

    }

    100% {

        left: 540px;

        opacity: 0;

    }

}

.sync-cloud {

    animation:

        cloudFloat 5s ease-in-out infinite,

        cloudPulse 2s ease-in-out infinite;

}

@keyframes cloudPulse {

    0% {

        box-shadow:

            0 25px 60px rgba(0, 0, 0, .15);

    }

    50% {

        box-shadow:

            0 25px 60px rgba(0, 0, 0, .15),

            0 0 0 14px rgba(17, 17, 17, .08);

    }

    100% {

        box-shadow:

            0 25px 60px rgba(0, 0, 0, .15);

    }

}

.sync-status {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 20px;

    font-size: .85rem;

    color: #666;

}

.sync-dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #111;

    animation: syncBlink 1s infinite;

}

@keyframes syncBlink {

    50% {

        opacity: .25;

    }

}


/*==================================================
BILLING WORKFLOW
==================================================*/

.billing-workflow {

    position: relative;

    width: 100%;

    max-width: 650px;

    height: 620px;

    margin: auto;

}

.billing-node {

    position: absolute;

    width: 220px;

    padding: 22px;

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 22px;

    text-align: center;

    box-shadow:
        0 25px 55px rgba(0, 0, 0, .08);

    transition: .35s;

    z-index: 5;

}

.billing-node:hover {

    transform: translateY(-6px);

    box-shadow:
        0 40px 80px rgba(0, 0, 0, .12);

}

.billing-icon {

    width: 60px;

    height: 60px;

    margin: 0 auto 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: #111;

    color: #fff;

    font-size: 1.4rem;

}

.billing-node h5 {

    margin-bottom: 6px;

    font-size: 1.2rem;

    font-weight: 700;

    color: #000;

}

.billing-node small {

    color: #777;

    font-size: .9rem;

}

/*==================================================
NODE POSITIONS
==================================================*/

.payment-node {

    top: 0;

    left: 50%;

    transform: translateX(-50%);

}

.brafa-node {

    top: 190px;

    left: 50%;

    transform: translateX(-50%);

}

.billing-bottom {

    position: absolute;

    width: 100%;

    bottom: 95px;

    display: flex;

    justify-content: space-between;

}

.billing-bottom .billing-node {

    position: relative;

    width: 200px;

}

/*==================================================
SUCCESS
==================================================*/

.billing-success {

    position: absolute;

    bottom: 20px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 700;

    font-size: 1.05rem;

    color: #000;

}

.billing-success i {

    color: #111;

    font-size: 1.5rem;

}

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

.billing-line {

    position: absolute;

    background: #d8d8d8;

    z-index: 1;

}

.line-top {

    width: 2px;

    height: 95px;

    top: 115px;

    left: 50%;

    transform: translateX(-50%);

}

.line-left {

    width: 2px;

    height: 95px;

    top: 335px;

    left: 175px;

}

.line-right {

    width: 2px;

    height: 95px;

    top: 335px;

    right: 175px;

}

/* Horizontal split */

.billing-workflow::before {

    content: "";

    position: absolute;

    top: 335px;

    left: 175px;

    width: 300px;

    height: 2px;

    background: #d8d8d8;

}

/*==================================================
PACKETS
==================================================*/

.billing-packet {

    position: absolute;

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #fff;

    border: 2px solid #111;

    box-shadow: 0 0 15px rgba(0, 0, 0, .25);

    z-index: 10;

}

.packet-a {

    animation: packetDown 4s linear infinite;

}

.packet-b {

    animation: packetLeft 4s linear infinite 1.3s;

}

.packet-c {

    animation: packetRight 4s linear infinite 2.6s;

}

/*==================================================
PACKET ANIMATIONS
==================================================*/

@keyframes packetDown {

    0% {

        top: 115px;

        left: 50%;

        opacity: 0;

    }

    10% {

        opacity: 1;

    }

    100% {

        top: 300px;

        left: 50%;

        opacity: 0;

    }

}

@keyframes packetLeft {

    0% {

        top: 335px;

        left: 50%;

        opacity: 0;

    }

    25% {

        opacity: 1;

    }

    100% {

        top: 430px;

        left: 175px;

        opacity: 0;

    }

}

@keyframes packetRight {

    0% {

        top: 335px;

        left: 50%;

        opacity: 0;

    }

    25% {

        opacity: 1;

    }

    100% {

        top: 430px;

        left: 475px;

        opacity: 0;

    }

}

/*==================================================
FLOATING
==================================================*/

.payment-node {

    animation: billingFloat 6s ease-in-out infinite;

}

.brafa-node {

    animation: billingFloat 6s ease-in-out infinite .7s;

}

.billing-bottom .billing-node:first-child {

    animation: billingFloat 6s ease-in-out infinite 1.4s;

}

.billing-bottom .billing-node:last-child {

    animation: billingFloat 6s ease-in-out infinite 2.1s;

}

@keyframes billingFloat {

    0% {

        translate: 0 0;

    }

    50% {

        translate: 0 -8px;

    }

    100% {

        translate: 0 0;

    }

}

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

@media(max-width:991px) {

    .billing-workflow {

        height: auto;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 30px;

    }

    .billing-node,
    .payment-node,
    .brafa-node {

        position: relative;

        left: auto;

        top: auto;

        transform: none;

        width: 100%;

        max-width: 320px;

    }

    .billing-bottom {

        position: relative;

        display: flex;

        flex-direction: column;

        gap: 30px;

        bottom: auto;

    }

    .billing-line,
    .billing-workflow::before,
    .billing-packet {

        display: none;

    }

    .billing-success {

        position: relative;

        left: auto;

        bottom: auto;

        transform: none;

        margin-top: 20px;

        color: #000;

    }

}


.sync-intro {

    text-align: center;

    margin-bottom: 50px;

}

.sync-label {

    display: inline-block;

    padding: 8px 18px;

    border: 1px solid #ddd;

    border-radius: 999px;

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: .18em;

    text-transform: uppercase;

    margin-bottom: 18px;

    color: #000;

}

.sync-intro h4 {

    font-size: 1.9rem;

    font-weight: 700;

    margin-bottom: 16px;

    color: #000;

}

.sync-intro p {

    max-width: 500px;

    margin: auto;

    color: #666;

    line-height: 1.8;

}


/*==================================================
BILLING INTRO
==================================================*/

.billing-intro {

    text-align: center;

    margin-bottom: 50px;

}

.billing-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 8px 18px;

    border: 1px solid #ddd;

    border-radius: 999px;

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: .18em;

    text-transform: uppercase;

    margin-bottom: 18px;

    color: #000;

}

.billing-intro h4 {

    font-size: 1.8rem;

    font-weight: 700;

    color: #111;

    margin-bottom: 16px;

}

.billing-intro p {

    max-width: 520px;

    margin: auto;

    color: #666;

    line-height: 1.8;

    font-size: .95rem;

}

/*=========================================
WHY STATS ANIMATION
=========================================*/

.stat {

    transition: .35s ease;

}

.stat:hover {

    transform: translateY(-8px);

}

.stat h3 {

    transition: transform .35s ease;

}

.stat:hover h3 {

    transform: scale(1.08);

}


/*======================================
PRICING CARD REVEALS
======================================*/

.pricing-card {

    opacity: 0;

    transition:
        transform .9s cubic-bezier(.22, 1, .36, 1),
        opacity .9s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    will-change: transform, opacity;

}

.pricing-card.show {

    opacity: 1;

}

/*======================================
FEATURE LIST
======================================*/

.plan-features .feature-item {

    opacity: 0;

    transform: translateX(-24px);

    transition:
        opacity .45s ease,
        transform .45s ease;

}

.pricing-card.show .feature-item {

    opacity: 1;

    transform: translateX(0);

}

.pricing-card.show .feature-item:nth-child(1) {
    transition-delay: .10s;
}

.pricing-card.show .feature-item:nth-child(2) {
    transition-delay: .18s;
}

.pricing-card.show .feature-item:nth-child(3) {
    transition-delay: .26s;
}

.pricing-card.show .feature-item:nth-child(4) {
    transition-delay: .34s;
}

.pricing-card.show .feature-item:nth-child(5) {
    transition-delay: .42s;
}

.pricing-card.show .feature-item:nth-child(6) {
    transition-delay: .50s;
}

.pricing-card.show .feature-item:nth-child(7) {
    transition-delay: .58s;
}

.pricing-card.show .feature-item:nth-child(8) {
    transition-delay: .66s;
}

/*======================================
TIER TABLE
======================================*/

.tier-row {

    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity .45s ease,
        transform .45s ease;

}

.pricing-card.show .tier-row {

    opacity: 1;

    transform: translateY(0);

}

.pricing-card.show .tier-row:nth-child(1) {

    transition-delay: .12s;

}

.pricing-card.show .tier-row:nth-child(2) {

    transition-delay: .24s;

}

.pricing-card.show .tier-row:nth-child(3) {

    transition-delay: .36s;

}

.pricing-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 30px 80px rgba(0, 0, 0, .18);

}

.amount {

    transition:
        transform .35s ease,
        letter-spacing .35s ease;

}

.pricing-card:hover .amount {

    transform: scale(1.06);

    letter-spacing: -2px;

}

.pricing-btn {

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        color .3s ease;

}

.pricing-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);

}

.popular {

    transition:
        transform .35s ease;

}

.featured:hover .popular {

    transform: translateX(-50%) scale(1.08);

}

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

.cta-content {

    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22, 1, .36, 1);

}

.cta-content.show {

    opacity: 1;

    transform: none;

}

.cta-btn {

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}

.cta-btn:hover {

    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);

}

.cta-feature {

    opacity: 0;

    transform: translateY(15px);

    transition:
        opacity .45s ease,
        transform .45s ease;

}

.cta-content.show .cta-feature {

    opacity: 1;

    transform: none;

}

.cta-content.show .cta-feature:nth-child(1) {

    transition-delay: .15s;

}

.cta-content.show .cta-feature:nth-child(2) {

    transition-delay: .28s;

}

.cta-content.show .cta-feature:nth-child(3) {

    transition-delay: .41s;

}

.cta-feature i {

    transition:
        transform .3s ease;

}

.cta-feature:hover i {

    transform: scale(1.2);

}

.cta-label {

    transition:
        letter-spacing .35s ease,
        transform .35s ease;

}

.cta-content.show .cta-label {

    letter-spacing: 2px;

}

.cta-content:hover .cta-label {

    transform: translateY(-2px);

}

@keyframes ctaFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-6px);

    }

}

.cta-content.show {

    animation: ctaFloat 6s ease-in-out infinite;

}

.footer a {

    transition:
        color .3s ease,
        transform .3s ease;

}

.footer a:hover {

    transform: translateX(4px);

}

.footer-social a {

    transition:
        transform .3s ease;

}

.footer-social a:hover {

    transform: translateY(-4px) scale(1.1);

}

.footer-logo {

    transition:
        transform .35s ease;

}

.footer-logo:hover {

    transform: scale(1.03);

}