* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
   
    color: #172033;
    overflow-x: hidden;
    background: #fff;
}

/* =========================
   COMMON
========================= */

.crm-section {
    padding: 80px 0;
    padding-top: 50px;
}

.section-small-title {
    color: #2bb673;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 51px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.5px;
    color: #000000;
}

.section-text {
    line-height: 1.8;
    font-size: 16px;
    letter-spacing: 1px;
}

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

.crm-hero {
    position: relative;
    padding: 235px 0 120px;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgb(88 246 151 / 13%), transparent 28%), radial-gradient(circle at 90% 30%, rgb(31 255 168 / 13%), transparent 30%), linear-gradient(135deg, #f7f9ff 0%, #ffffff 50%, #f6fbff 100%);
}
.crm-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(87, 91, 255, .10);
    border-radius: 50%;
    right: -220px;
    top: -220px;
}

.crm-hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(87, 91, 255, .10);
    border-radius: 50%;
    left: -180px;
    bottom: -180px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid #e4e7f2;
    border-radius: 50px;
    background: #fff;
    color: #00cc6a;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(32, 44, 80, .06);
}
.customer-view-main img {width: 750px;
margin: 0 auto;
display: block;}



.hero-badge span {
    width: 8px;
    height: 8px;
    background: #2bb673;
    border-radius: 50%;
}

.hero-title-1 {
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: 1;
    color: #000000;
    font-size: 51px;
    font-weight: 400 !important;
}

.hero-title-1 span {
    background: linear-gradient(90deg, #00cc6a, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.8;
}

.btn-crm-primary {
    background: #2bb673;
    border: 1px solid #2bb673;
    color: #fff;
    padding: 14px 27px;
    border-radius: 8px;
    font-weight: 700;
    transition: .3s; margin-top: 12px;
    box-shadow: 0 12px 25px rgb(0 0 0 / 22%);
}

.btn-crm-primary:hover {
    background: #1eaa66;
    border-color: #1eaa66;
    color: #fff;
    transform: translateY(-3px);
}

.btn-crm-outline {
    background: #fff;
    border: 1px solid #dce0eb;
    color: #000000;
    padding: 14px 27px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
    margin-top: 10px;
    
}

.btn-crm-outline:hover {
    border-color: #4eac82;
    color: #ffffff;
}

/* =========================
   LOGOS
========================= */

.logo-section {
    padding: 55px 0;
    border-bottom: 1px solid #eef0f5;
}

.logo-title {
    color: #8991a4;
    font-size: 14px;
}

.logo-item {
    color: #a1a7b5;
    font-size: 18px;
    font-weight: 700;
}

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

.dashboard-card {
    padding: 18px;
    border: 1px solid #e9ebf2;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(30, 40, 80, .12);
}

.dashboard-window {
    padding: 20px;
    border-radius: 14px;
    background: #f5f7fb;
}

.window-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #cdd1dc;
}

.fake-sidebar {
    min-height: 300px;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
}

.fake-sidebar i {
    display: block;
    height: 9px;
    margin-bottom: 13px;
    border-radius: 10px;
    background: #e8ebf3;
}

.fake-card {
    min-height: 85px;
    padding: 18px;
    border-radius: 10px;
    background: #fff;
}

.fake-line {
    width: 70%;
    height: 9px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: #e6e9f2;
}

.fake-line.short {
    width: 45%;
}

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

.feature-item {
    padding: 14px 10px;
    border: 1px solid #e7e9f0;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

/* =========================
   DARK SECTION
========================= */

.dark-section {
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
    color: #fff;
}

.dark-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: -300px;
    right: -250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(211 255 234), #00000000 65%);
}

.dark-section .section-title {
    color: #000;
}

.dark-section .section-text {
    color: #000;
}

.command-box {
    position: relative;
    z-index: 2;
    /* padding: 25px;
    border: 1px solid rgb(0 0 0 / 10%); */
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(10px);
}

.command-item {
    height: 100%;
    padding: 22px;
    border: 1px solid rgb(0 0 0 / 8%);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
}

.command-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 10px;
    background: rgb(43 182 115);
    color: #ffffff;
    font-size: 20px;
}

.command-item h5 {
    
    color: #000;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 8px !important;
}

.command-item p {
    margin: 0;
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* =========================
   AI
========================= */

.ai-dashboard {
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 3px;
    border-radius: 25px;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-right: 35px;
}

.ai-panel {
    width: 100%;
    padding: 25px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(40,50,90,.12);
}

.ai-status {
    padding: 6px 10px;
    border-radius: 20px;
    background: #e9f9f0;
    color: #159957;
    font-size: 11px;
    font-weight: 600;
}

.ai-chart {
    height: 180px;
    display: flex;
    align-items: end;
    gap: 12px;
    padding: 20px 10px;
}

.ai-bar {
    flex: 1;
    border-radius: 7px 7px 0 0;
    background: linear-gradient(to top, #5961f5, #75c9ff);
}

.bar-1 { height: 35%; }
.bar-2 { height: 50%; }
.bar-3 { height: 43%; }
.bar-4 { height: 70%; }
.bar-5 { height: 58%; }
.bar-6 { height: 82%; }
.bar-7 { height: 95%; }

.ai-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 10px;
    background: #f7f7f7;
}

.ai-check {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2bb673;
    color: #fff;
}

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

.light-section {
    background: #f7f7f7;
    padding-top: 80px;
}

.auto-card {
    height: 100%;
    padding: 35px;
    border: 1px solid #e9ebf1;
    border-radius: 18px;
    background: #fff;
    transition: .3s;
}

.auto-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(40,50,90,.10);
}

.auto-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 12px;
    background: #2bb673;
    color: #ffffff;
    font-weight: 800;
}

.auto-card p {

    font-size: 16px;
    line-height: 1.7;
}
.features-title {
text-transform: uppercase;
font-size: 13px;
font-weight: 600;
color: #000000;
margin-bottom: 12px;
letter-spacing: 0.5px;
margin-top: 12px;
}

.feature-list-1 {
list-style: none;
padding: 0;
margin: 0;
display: grid;
gap: 9px;
}		

.feature-list-1 li {
position: relative;
padding-left: 19px;
font-size: 12.5px;
line-height: 1.5;
color: #000;
font-size: 16px;
line-height: 1.7;
}

.auto-card h3 {
    font-size: 21px;
    letter-spacing: 1px;
    font-weight: 500;
}


.feature-list-1 li::before {
content: "";
position: absolute;
width: 6px;
height: 6px;
border-radius: 50%;
background: #20b976;
left: 0;
top: 7px;
}
/* =========================
   ANALYTICS
========================= */

.analytics-box {
padding: 10px;
border-radius: 20px;
background: #ffffff;
color: #fff;
box-shadow: 0 25px 60px rgba(15, 25, 50, .20);
}

.analytics-stat {
    padding: 15px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
}

.analytics-stat small {
    display: block;
    margin-bottom: 7px;
    color: #9ba3b7;
}

.analytics-graph {
    position: relative;
    height: 170px;
    border-left: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
    overflow: hidden;
}

.graph-line {
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #6570ff;
    transform: rotate(-8deg);
}

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

.product-card {
    height: 100%;
    padding: 28px;
    border: 1px solid #e8eaf1;
    border-radius: 16px;
    background: #fff;
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(40,50,80,.09);
}

.product-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: #eef0ff;
    color: #5961f5;
    font-size: 21px;
}

.product-card p {
    color: #747c8e;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================
   TESTIMONIAL
========================= */

.testimonial {
    height: 100%;
    padding: 35px;
    border: 1px solid #e7e9f0;
    border-radius: 18px;
    background: #fff;
}

.stars {
    margin-bottom: 20px;
    color: #f6b73c;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #555e72;
    font-size: 16px;
    line-height: 1.8;
}

.author-avatar {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #5961f5;
    color: #fff;
    font-weight: 700;
}

.author-info span {
    display: block;
    color: #8990a1;
    font-size: 12px;
}

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

.why-card {
    padding: 28px 20px;
    text-align: center;
}

.why-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: #f0f1ff;
    color: #5961f5;
    font-size: 23px;
}

.why-card p {
    color: #777f90;
    font-size: 13px;
    line-height: 1.7;
}

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

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #000000;
    border-bottom: 1px solid #bdbdbd;
}
.final-cta::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -200px;
    top: -200px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.final-cta h2 {
    position: relative;
    font-size: clamp(35px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: 1px;
    color: #000000;
    font-size: 51px;
    font-weight: 400 !important;
}
.final-cta p {
    position: relative;
    max-width: 650px;
    margin: auto;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.8;
}

.btn-white {
    position: relative;
    display: inline-block;
    padding: 15px 28px;
    border-radius: 8px;
    background: #fff;
    color: #4652df;
    font-weight: 700;
    transition: .3s;
}

.btn-white:hover {
    color: #4652df;
    transform: translateY(-3px);
}

/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all .8s ease;
    margin-top: 12px;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 767px) {

    .crm-section {
        padding: 75px 0;
    }

    .crm-hero {
        padding: 180px 0 85px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 15px;
    }

    .section-title {
        font-size: 34px;
    }

    .ai-dashboard {
        min-height: auto;
        padding: 18px;
    }

    .fake-sidebar {
        min-height: 250px;
    }

    .logo-item {
        font-size: 15px;
    }

}

@media (max-width: 575px) {

    .hero-title {
        font-size: 36px;
    }

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

    .dashboard-card {
        padding: 10px;
    }

    .dashboard-window {
        padding: 12px;
    }

    .ai-panel {
        padding: 18px;
    }

    .ai-chart {
        gap: 6px;
    }

    .command-box {
        padding: 15px;
    }

    .auto-card,
    .product-card,
    .testimonial {
        padding: 25px;
    }

}



.customer-view-section {
    position: relative;
    overflow: hidden;
    background: #ffffff !important;
    color: #fff;
    padding: 95px 0 95px;
    min-height: 1000px;
    background: radial-gradient(circle at 10% 20%, rgb(88 246 151 / 13%), transparent 28%), radial-gradient(circle at 90% 30%, rgb(31 255 168 / 13%), transparent 30%), linear-gradient(135deg, #f7f9ff 0%, #ffffff 50%, #f6fbff 100%);
    border-top: 1px solid #d7d7d7;
}



/* Heading
-------------------------------- */

.customer-view-heading {
position: relative;
z-index: 5;
max-width: 900px;
margin: 0 auto 45px;
}

.customer-view-heading h2 {
    font-size: 51px;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #000000;
}
.customer-view-heading p {
    max-width: 800px;
    margin: auto;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 500;
    color: #000;
}

/* Main visual
-------------------------------- */

.customer-view-main {
position: relative;
height: 550px;
max-width: 1100px;
margin: 0 auto;
}


/* Grid */

.customer-grid {
position: absolute;
inset: 0;
background-image:
linear-gradient(
    to right,
    rgba(0,0,0,.13) 1px,
    transparent 1px
),
linear-gradient(
    to bottom,
    rgba(0,0,0,.13) 1px,
    transparent 1px
);

background-size: 135px 82px;
opacity: .75;
}


/* Person */

.customer-person {
position: absolute;
left: 30px;
bottom: 0;
width: 390px;
z-index: 4;
}

.customer-person img {
width: 100%;
display: block;
}


/* Common Cards */

.crm-card {
position: absolute;
z-index: 8;
background: #fff;
color: #111;
border-radius: 14px;
padding: 15px 17px;
box-shadow: 0 10px 30px rgba(0,0,0,.06);
font-size: 11px;
}

.card-title {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 12px;
font-size: 14px;
}

.title-icon {
font-size: 20px;
line-height: 1;
}


/* Contact */

.contact-card {
left: 405px;
top: 45px;
width: 290px;
min-height: 100px;
display: flex;
align-items: center;
gap: 12px;
}

.profile-icon {
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
order: 2;
}

.profile-icon img {
width: 100%;
height: 100%;
object-fit: cover;
}

.card-content h6 {
margin: 0 0 5px;
font-size: 12px;
}

.card-content strong {
display: block;
font-size: 10px;
}

.card-content p {
margin: 4px 0 0;
font-size: 9px;
}

.card-content p span {
color: #00a878;
}


/* Activity */

.activity-card {
right: 15px;
top: 45px;
width: 285px;
min-height: 160px;
}


/* Stage */

.stage-card {
left: 405px;
top: 153px;
width: 290px;
min-height: 145px;
}


/* Campaign */

.campaign-card {
right: 15px;
top: 212px;
width: 285px;
min-height: 180px;
}


/* Desk */

.desk-card {
left: 405px;
top: 300px;
width: 290px;
min-height: 100px;
}


/* Notes */

.notes-card {
left: 0;
bottom: 0;
width: 390px;
min-height: 150px;
}

.note-user {
display: flex;
gap: 8px;
align-items: center;
}

.mini-avatar {
width: 22px;
height: 22px;
border-radius: 50%;
background: #777;
flex-shrink: 0;
}

.note-user p {
margin: 0;
font-size: 10px;
}

.note-user small {
font-size: 8px;
}

.notes-card input {
width: 100%;
margin-top: 12px;
border: 1px solid #ddd;
border-radius: 5px;
padding: 7px 10px;
font-size: 9px;
}


/* Deal */

.deal-card {
left: 405px;
bottom: 0;
width: 585px;
min-height: 150px;
}

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

.deal-grid div {
display: flex;
justify-content: space-between;
gap: 8px;
border-bottom: 1px solid #eee;
padding-bottom: 5px;
}

.deal-grid span {
color: #777;
}

.deal-grid b {
font-weight: 600;
}


/* Tables */

.crm-table {
width: 100%;
}

.table-head,
.table-row {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr;
gap: 8px;
padding: 6px 8px;
}

.table-head {
background: #ffe2a8;
border-radius: 15px;
font-weight: 600;
font-size: 9px;
}

.table-row {
border-bottom: 1px solid #eee;
font-size: 9px;
}


/* Desk statistics */

.desk-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}

.desk-stats div {
display: flex;
flex-direction: column;
gap: 7px;
}

.desk-stats small {
font-weight: 600;
}

.desk-stats strong {
font-size: 11px;
}


/* Bottom Features
-------------------------------- */

.customer-features {
position: relative;
z-index: 10;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 55px;
padding: 0 15px;
}

.feature-item {
display: flex;
align-items: center;
gap: 10px;
}

.feature-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2bb673;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-align: left;
    letter-spacing: 0.5px;
}


/* =========================
Tablet
========================= */

@media (max-width: 991.98px) {

.customer-view-section {
padding: 70px 0 50px;
}

.customer-view-heading h2 {
font-size: 38px;
}

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

.customer-view-main {
height: 700px;
transform: scale(.85);
transform-origin: top center;
margin-bottom: -100px;
}

.customer-features {
grid-template-columns: 1fr;
gap: 20px;
}

}


/* =========================
Mobile
========================= */

@media (max-width: 767.98px) {

.customer-view-section {
padding: 55px 15px 45px;
}

.customer-view-heading {
margin-bottom: 30px;
}

.customer-view-heading h2 {
font-size: 30px;
letter-spacing: -.5px;
}

.customer-view-heading p {
font-size: 14px;
line-height: 1.6;
}

.customer-view-main {
height: auto;
min-height: 900px;
transform: none;
margin: 0;
}

.customer-grid {
opacity: .35;
background-size: 90px 70px;
}


/* Person */

.customer-person {
position: relative;
left: auto;
bottom: auto;
width: 250px;
margin: 0 auto 20px;
}


/* Cards become normal flow */

.crm-card {
position: relative;
left: auto !important;
right: auto !important;
top: auto !important;
bottom: auto !important;
width: 100% !important;
margin-bottom: 15px;
}

.contact-card,
.activity-card,
.stage-card,
.campaign-card,
.desk-card,
.notes-card,
.deal-card {
min-height: auto;
}

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

.customer-features {
margin-top: 25px;
padding: 0;
}

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

}		



.hr-payroll-section {
    background: #ffffff;
    padding: 80px 0 65px;
    overflow: hidden;
    border-bottom: 1px solid #d7d7d7;
    border-top: 1px solid #d7d7d7;
}

/* Heading */
.hr-title {
font-size: 42px;
line-height: 1.2;
font-weight: 700;
color: #111;
margin: 0 0 18px;
letter-spacing: -1px;
}

.hr-description {
max-width: 700px;
margin: 0 auto 15px;
font-size: 16px;
line-height: 1.6;
color: #252b35;
}

.hr-learn-more {
    color: #2bb673;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.hr-learn-more span {
transition: all 0.3s ease;
}

.hr-learn-more:hover span {
margin-left: 6px;
}

/* Image */
.hr-image-wrapper {
text-align: center;
margin: 33px auto 0;
}

.hr-image-wrapper img {
width: 100%;
max-width: 850px;
height: auto;
display: block;
margin: auto;
border-radius: 10px;
}

/* Bottom Features */
.hr-highlight {
display: flex;
align-items: flex-start;
gap: 12px;
align-items: center;
}

.hr-highlight p {
margin: 0;
color: #202631;
font-size: 15px;
line-height: 1.55;
}

/* Check */
.hr-check {
    width: 25px;
    height: 25px;
    min-width: 25px;
    border-radius: 50%;
    background: #2bb673;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hr-check i {
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
}


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

.hr-payroll-section {
padding: 65px 0 55px;
}

.hr-title {
font-size: 36px;
}

.hr-image-wrapper {
margin-top: 45px;
}
}


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

.hr-payroll-section {
padding: 50px 0;
}

.hr-title {
font-size: 30px;
letter-spacing: -0.5px;
}

.hr-description {
font-size: 15px;
}

.hr-image-wrapper {
margin-top: 35px;
}

.hr-highlight {
padding: 0 10px;
}

.hr-highlight p {
font-size: 14px;
}
}


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

.hr-title {
font-size: 27px;
}

.hr-description {
font-size: 14px;
}

.hr-image-wrapper {
margin-top: 30px;
}
}	



.modules-area {
padding: 80px 0;
background: #ffffff;
overflow: hidden;
padding-bottom: 80px;
}

/* IMAGE */
.module-visual {
position: relative;
height: 100%;
min-height: 620px;
overflow: hidden;
border-radius: 28px;
overflow: hidden;
border: 1px solid #e5ebe8;
}

.module-visual img {
    width: auto;
    height: 100%;
    height: 810px;
    object-fit: cover;
    display: block;
    box-shadow: none;
    overflow: hidden;
    border-radius: 30px;
}


.module-visual-content {
position: absolute;
z-index: 2;
left: 35px;
right: 35px;
bottom: 35px;
color: #fff;
}

.module-visual-content small {
display: inline-block;
padding: 7px 14px;
border-radius: 50px;
background: rgba(255,255,255,.16);
backdrop-filter: blur(8px);
font-size: 11px;
letter-spacing: 1px;
margin-bottom: 14px;
}

.module-visual-content h2 {
font-size: 34px;
line-height: 1.2;
font-weight: 500;
margin-bottom: 12px;
}

.module-visual-content p {
max-width: 440px;
margin: 0;
font-size: 15px;
line-height: 1.7;
color: rgba(255,255,255,.85);
}


/* CONTENT ITEM */
.module-item {
position: relative;
min-height: 295px;
height: 100%;
padding: 28px;
background: #fff;
border: 1px solid #e5ebe8;
border-radius: 22px;
overflow: hidden;
transition: all .35s ease;
box-shadow: 0 10px 30px rgba(20,50,40,.04);
}

.module-item:hover {
transform: translateY(-7px);
border-color: #bcebd9;
box-shadow: 0 20px 45px rgba(20,50,40,.10);
}

/* TOP RIGHT SHAPE */
.module-item::before {
content: "";
position: absolute;
top: 0;
right: 0;
width: 72px;
height: 72px;
background: #d9f8ed;
border-radius: 0 22px 0 72px;
transition: all .35s ease;
}

.module-item:hover::before {
width: 95px;
height: 95px;
}

/* NUMBER */
.module-index {
position: absolute;
z-index: 3;
top: 27px;
right: 28px;
font-size: 13px;
font-weight: 600;
color: #08a96b;
}

/* ICON */
.module-symbol {
position: relative;
z-index: 2;
width: 53px;
height: 53px;
border-radius: 15px;
background: #edf9f4;
color: #0ab275;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
margin-bottom: 24px;
transition: all .35s ease;
}

.module-item:hover .module-symbol {
background: #0ab275;
color: #fff;
transform: rotate(-5deg);
}

.module-heading {
font-size: 21px;
font-weight: 500;
color: #17243c;
margin-bottom: 9px;
}

.module-text {
    /* color: #6b6b6b; */
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 17px;
    letter-spacing: 1px;
}

.module-label {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 9px;
    letter-spacing: 0.5px;
}

.module-points {
list-style: none;
padding: 0;
margin: 0;
}

.module-points li {
    position: relative;
    padding-left: 17px;
    margin-bottom: 7px;
    color: #000000;
    font-size: 16px;
    letter-spacing: 1px;
}

.module-points li::before {
content: "";
position: absolute;
width: 5px;
height: 5px;
left: 0;
top: 8px;
border-radius: 50%;
background: #10b77b;
}

/* BOTTOM ANIMATION */
.module-line {
position: absolute;
bottom: 0;
left: 28px;
height: 3px;
width: 0;
background: #0ab275;
transition: width .4s ease;
}

.module-item:hover .module-line {
width: calc(100% - 56px);
}


@media (max-width: 991px) {
.module-visual,
.module-visual img {
    min-height: 450px;
}
}

@media (max-width: 575px) {
.modules-area {
    padding: 55px 15px;
}

.module-visual,
.module-visual img {
    min-height: 400px;
}

.module-visual-content {
    left: 25px;
    right: 25px;
    bottom: 25px;
}

.module-visual-content h2 {
    font-size: 27px;
}

.module-item {
    min-height: auto;
    padding: 25px;
}
}		


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

.pms-pricing-section {
    padding: 235px 20px 110px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 5%, rgb(234 255 247) 0%, rgb(255 255 255) 24%, rgba(248, 251, 255, .95) 55%, #ffffff 100%);
    border-bottom: 1px solid #d0d0d0;
}
  
  
  .pms-container {
      max-width: 1280px;
      margin: 0 auto;
  }
  
  
  /* ==========================================
     HEADING
  ========================================== */
  
  .pricing-heading {
      max-width: 850px;
      margin: 0 auto;
      text-align: center;
  }
  
  .pricing-heading h1 {
    margin: 0;
    color: #050505;
    font-size: 50px;
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: 0.5px;
  }
  
  .pricing-heading h1 span {
    display: block;
    color: #00b87e;
  }
  
  .pricing-heading p {
    max-width: 670px;
    margin: 20px auto 0;
    color: #333333;
    font-size: 16px;
    line-height: 1.7;
  }
  
  /* ==========================================
     BENEFITS
  ========================================== */
  
  .pricing-benefits {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 32px;
      margin-top: 30px;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #26364a;
    font-size: 18px;
    font-weight: 500;
  }
  
  .benefit-check {
    width: 19px;
    height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #64bf9d;
    color: #64bf9d;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
  }
  
  /* ==========================================
     BILLING TABS
  ========================================== */
  
  .billing-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    margin-bottom: 80px;
}
  
  .billing-tabs {
    display: inline-flex;
    padding: 4px;
    background: #00b779;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(23, 50, 79, .15);
  }
  .billing-tab {
      border: 0;
      outline: none;
      background: transparent;
      color: #ffffff;
      padding: 8px 20px;
      border-radius: 25px;
      font-family: inherit;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all .3s ease;
  }
  
  .billing-tab:hover {
      color: #ffffff;
  }
  
  .billing-tab.active {
      color: #17324f;
      background: #ffffff;
      box-shadow: 0 2px 7px rgba(0, 0, 0, .14);
  }
  
  .billing-message {
      color: #2473d9;
      font-size: 12px;
      font-weight: 600;
      min-width: 180px;
  }
  
  .annual-message {
      display: none;
  }
  
  
  /* ==========================================
     PRICING GRID
  ========================================== */
  
  .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items: stretch;
  }
  
  
  /* ==========================================
     PRICING CARD
  ========================================== */
  
  .pricing-card {
      position: relative;
      display: flex;
      flex-direction: column;
  
      background: #ffffff;
      border: 1px solid #dce2e8;
      border-radius: 18px;
  
      padding: 38px 30px 34px;
  
      box-shadow:
          0 12px 35px rgba(33, 58, 91, .07);
  
      transition:
          transform .3s ease,
          box-shadow .3s ease,
          border-color .3s ease;
  }
  
  .pricing-card:hover {
      transform: translateY(-7px);
      border-color: #cbd5e1;
  
      box-shadow:
          0 20px 45px rgba(33, 58, 91, .12);
  }
  
  
  /* ==========================================
     POPULAR CARD
  ========================================== */
  
  .pricing-card.popular {
      border: 2px solid #111827;
      transform: translateY(-10px);
  
      box-shadow:
          0 20px 45px rgba(33, 58, 91, .14);
  }
  
  .pricing-card.popular:hover {
      transform: translateY(-15px);
  }
  
  .popular-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    border-radius: 20px;
    background: #19d99c;
    color: #000000;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
  }
  
  /* ==========================================
     PLAN TITLE
  ========================================== */
  
  .plan-title {
    color: #20242c;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 11px;
  }
  
  .plan-description {
    min-height: 43px;
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.5px;
  }
  
  
  /* ==========================================
     PRICE
  ========================================== */
  
  .price-area {
      min-height: 116px;
      margin-top: 22px;
  }
  
  .price-content {
      animation: priceChange .3s ease;
  }
  
  .annual-content {
      display: none;
  }
  
  .free-text {
      color: #111111;
      font-size: 18px;
      font-weight: 500;
      line-height: 1.5;
  }
  .old-price {
    color: #383838;
    font-size: 13px;
    text-decoration: line-through;
    margin-left: 2px;
    margin-right: 6px;
}
  
  .currency {
      color: #252525;
      font-size: 18px;
      font-weight: 700;
      margin-left: 2px;
  }
  
  .current-price {
      display: flex;
      align-items: baseline;
      gap: 5px;
      margin-top: 1px;
  }
  
  .current-price .amount {
    color: #1d222b;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -.5px;
  }
  .current-price .month {
      color: #697382;
      font-size: 13px;
      font-weight: 500;
  }
  
  
  /* ==========================================
     SUBSCRIBE BUTTON
  ========================================== */
  
  .subscribe-btn {
    width: 100%;
    border: 0;
    outline: none;
    padding: 14px 20px;
    border-radius: 9px;
    background: #00b779;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
  }
  
  .subscribe-btn:hover {
    background: #009566;
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(23, 107, 197, .22);
  }
  
  /* ==========================================
     DIVIDER
  ========================================== */
  
  .card-divider {
      width: 100%;
      height: 1px;
      background: #e2e6eb;
      margin: 24px 0 22px;
  }
  
  
  /* ==========================================
     INCLUDES
  ========================================== */
  
  .includes-title {
    margin-bottom: 15px;
    color: #000000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
  }
  
  .feature-list {
      padding: 0;
      margin: 0;
      list-style: none;
  }
  
  .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    color: #090909;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
  }
  .feature-icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e6fff7;
    color: #00b779;
    font-size: 12px;
    font-weight: 800;
  }
  
  
  /* ==========================================
     COMPLETE FEATURES
  ========================================== */
  
  .complete-features {
      margin-top: 48px;
      text-align: center;
  }
  
  .complete-features a {
    color: #0b0b0b;
    font-size: 20px;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color .2s ease;
    text-decoration: none;
  }
  
  .complete-features a:hover {
    color: #5cc2a3;
  }
  .complete-features span {
    margin-left: 6px;
    color: #000000;
    font-size: 20px;
  }
  
  
  /* ==========================================
     BOTTOM FEATURE SECTION
  ========================================== */
  
  .why-section {
  max-width: 100%;
  margin: 40px auto 0;
  }
  .why-heading {
      text-align: center;
      margin-bottom: 40px;
  }
  
  .why-heading h2 {
    color: #0b0d11;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  .why-heading p {
      margin: 0;
      color: #697586;
      font-size: 15px;
  }
  
  .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
  }
  
  .why-card {
      padding: 32px 26px;
      text-align: center;
  
      background: rgba(255, 255, 255, .85);
  
      border: 1px solid #e0e5eb;
      border-radius: 18px;
  
      box-shadow: 0 10px 30px rgba(25, 49, 80, .06);
  
      transition: all .3s ease;
  }
  
  .why-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 35px rgba(25, 49, 80, .1);
  }
  
 .why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    background: #edf9f4;
    color: #0ab275;
    font-size: 28px;
}
 .why-card h3 {
    margin-bottom: 0;
    color: #14171d;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
  
  .why-card p {
    margin: 0;
    color: #000000;
    font-size: 15px;
    line-height: 1.7;
  }
  
  
  /* ==========================================
     PRICE ANIMATION
  ========================================== */
  
  @keyframes priceChange {
  
      from {
          opacity: 0;
          transform: translateY(7px);
      }
  
      to {
          opacity: 1;
          transform: translateY(0);
      }
  
  }
  
  
  /* ==========================================
     ANNUAL ACTIVE STATE
  ========================================== */
  
  .pms-pricing-section.annual-active
  .monthly-content {
      display: none;
  }
  
  .pms-pricing-section.annual-active
  .annual-content {
      display: block;
  }
  
  .pms-pricing-section.annual-active
  .monthly-message {
      display: none;
  }
  
  .pms-pricing-section.annual-active
  .annual-message {
      display: inline;
  }
  
  
  /* ==========================================
     TABLET
  ========================================== */
  
  @media (max-width: 1000px) {
  
      .pricing-heading h1 {
          font-size: 45px;
      }
  
      .pricing-grid {
          grid-template-columns: repeat(2, 1fr);
          max-width: 850px;
          margin: 0 auto;
      }
  
      .pricing-card.popular {
          transform: none;
      }
  
      .pricing-card.popular:hover {
          transform: translateY(-7px);
      }
  
      .why-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  
  }
  
  
  /* ==========================================
     MOBILE
  ========================================== */
  
  @media (max-width: 700px) {
  
      .pms-pricing-section {
          padding: 60px 15px 80px;
      }
  
      .pricing-heading h1 {
          font-size: 37px;
          letter-spacing: -1.5px;
      }
  
      .pricing-heading p {
          font-size: 14px;
      }
  
      .pricing-benefits {
          flex-direction: column;
          gap: 12px;
      }
  
      .billing-area {
          flex-direction: column;
          margin-bottom: 45px;
      }
  
      .billing-message {
          min-width: auto;
      }
  
      .pricing-grid {
          grid-template-columns: 1fr;
          max-width: 540px;
      }
  
      .pricing-card {
          padding: 32px 24px;
      }
  
      .pricing-card.popular {
          order: -1;
      }
  
      .why-grid {
          grid-template-columns: 1fr;
      }
  
      .why-section {
          margin-top: 75px;
      }
  
  }
  
  
  /* ==========================================
     SMALL MOBILE
  ========================================== */
  
  @media (max-width: 400px) {
  
      .pricing-heading h1 {
          font-size: 31px;
      }
  
      .pricing-card {
          padding: 28px 20px;
      }
  
      .free-text {
          font-size: 16px;
      }
  
      .old-price {
          font-size: 14px;
      }
  
      .currency {
          font-size: 16px;
      }
  
      .current-price .amount {
          font-size: 27px;
      }
  
      .billing-tab {
          padding: 8px 16px;
      }
  
  }
  
  
  @media(max-width:1440px){

    .section-title {
        font-size: 38px;
        font-weight: 400;
        line-height: 1.15;
        letter-spacing: 0.5px;
        color: #000000;
    }
    .section-title {
        font-size: 38px;
        font-weight: 400;
        line-height: 1.15;
        letter-spacing: 0.5px;
        color: #000000;
    }
    
    .feature-item {
        padding: 14px 10px;
        border: 1px solid #e7e9f0;
        border-radius: 10px;
        background: #fff;
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0.5px;
    }
    .final-cta h2 {
        position: relative;
        font-size: clamp(35px, 5vw, 56px);
        font-weight: 800;
        letter-spacing: 1px;
        color: #000000;
        font-size: 38px;
        font-weight: 400 !important;
    }
    
    .final-cta {
        position: relative;
        overflow: hidden;
        padding: 70px 0;
        background: linear-gradient(135deg, #ffffff, #ffffff);
        color: #000000;
    }
    .why-card {
        padding: 32px 14px;
        text-align: center;
        background: rgba(255, 255, 255, .85);
        border: 1px solid #e0e5eb;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(25, 49, 80, .06);
        transition: all .3s ease;
    }
    .customer-view-heading h2 {
        font-size: 38px;
        line-height: 1.15;
        font-weight: 400;
        margin-bottom: 20px;
        letter-spacing: 1px;
        color: #000000;
    }
    .module-visual img {
        width: auto;
        height: 100%;
        height: 836px;
        object-fit: cover;
        display: block;
        box-shadow: none;
        overflow: hidden;
        border-radius: 30px;
    }
    }
    .final-cta .btn.btn-white {
       
        background-color: #2bb673;
        color: #FFF;
    }
    	