@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --font-poppins: "Poppins", sans-serif;
    --font-geist: "Geist", sans-serif;
    --primaryColor: #F25E0D;
    --whiteColor: #fff;
    --blackColor: #000;
    --ColorGrey-text: #A6A6A6;
    --colorGrey: #EBEBEB;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-geist);
    font-size: 16px;
    font-weight: 400;
    background: var(--whiteColor);
    color: var(--blackColor);
    font-size: 18px;
    line-height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../img/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flex-col-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gap-x-26 {
    row-gap: 26px;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor);
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--primaryColor);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/* ======= header sticky wrap (status bar + nav) ======= */
.header-sticky-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ======= header-area / status bar ======= */
.header-area {
    padding-block: 9px;
}

.header-area.status-bar-wrap {
    padding-block: 8px 9px;
}

/* OPEN: light grey bar, orange dot */
.header-area.status-bar-wrap.status-bar--open {
    background: var(--colorGrey);
}

.status-bar--open .status-bar__dot {
    background: var(--primaryColor);
}

/* CLOSED: light red bar, red dot */
.header-area.status-bar-wrap.status-bar--closed {
    background: #ecc5c2;
}

.status-bar--closed .status-bar__dot {
    background: #c0392b;
}

.status-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 24px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
}

.status-bar__dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-bar__text {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
}

.status-bar__link {
    text-decoration: none;
    color: inherit;
}
.status-bar__link:hover {
    text-decoration: underline;
    color: inherit;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-link a {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 114.286%;
    text-transform: capitalize;
}

.header-link a:hover {
    color: var(--primaryColor);
}

.lang-menu {
    position: relative;
    user-select: none;
}

.selected-lang {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
}

.lang-menu img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.lang-text {
    margin-left: 10px;
    flex-grow: 1;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.arrow {
    transition: transform 0.3s ease;
    margin-left: 6px;
}

.lang-menu.active .arrow {
    transform: rotate(180deg);
}

.lang-menu ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: fit-content;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 5px;
    padding: 0;
    list-style: none;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.lang-menu ul li a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    text-decoration: none;
    color: #333;
    gap: 12px;
}

.lang-menu ul li a:hover {
    background: #f5f5f5;
}

.lang-menu ul li a img {
    max-width: 24px;
    border-radius: 0;
    height: auto;
}

/* =========== header area end hare ======== */
/* ====== navigation area start hare ====== */
.navbar {
    padding-block: 19px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--whiteColor);
}

.navbar-nav {
    gap: 32px;

    /* pas aan naar smaak: 24px / 28px / 36px */
}

.navbar.nav-fixed {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar-brand,
.offcanvas-title {
    font-family: var(--font-poppins);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 66.667%;
    text-transform: capitalize;
}

.navbar-brand span,
.offcanvas-title span {
    color: var(--primaryColor);
}

.navbar-brand img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-item .nav-link {
    color: var(--blackColor);
    font-family: var(--font-poppins);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 88.889%;
    text-transform: capitalize;
}

.nav-item .nav-link:hover {
    color: var(--primaryColor);
}

/* Mobile menu – orange Font Awesome icons */
.mobile-menu-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mobile-menu-nav .mobile-menu-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 24px;
    justify-content: center;
}
.mobile-menu-nav .mobile-menu-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.action-btn {
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 6px;
    box-shadow: 63px 144px 44px 0 rgba(0, 0, 0, 0.00), 40px 92px 40px 0 rgba(0, 0, 0, 0.01), 23px 52px 34px 0 rgba(0, 0, 0, 0.04), 10px 23px 25px 0 rgba(0, 0, 0, 0.07), 3px 6px 14px 0 rgba(0, 0, 0, 0.08);
    font-family: var(--font-poppins);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 88.889%;
    text-transform: capitalize;
}

.nav-actions {
    padding-left: 32px;
}

.nav-actions .action-btn {
    padding: 12px 24px;
}

.primary-btn {
    background: var(--primaryColor);
    color: var(--whiteColor);
}

.primary-btn:hover {
    background: var(--blackColor);
}

.primary-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.dark-btn {
    background: var(--blackColor);
    color: var(--whiteColor);
}

.dark-btn:hover {
    background: var(--primaryColor);
}

.menu-toggler-btn {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    padding: 0;
}

.menu-toggler-btn span {
    display: block;
    height: 2px;
    background: var(--blackColor);
    transition: 0.3s;
    width: 100%;
}

.menu-toggler-btn span:nth-child(2) {
    width: 70%;
}

.menu-toggler-btn:hover span {
    width: 100% !important;
}

/* =========== navigation area end hare ============= */
/* ========== hero area stye start hare ============== */
.hero-area {
    background: url(../img/hero-bg1.png) no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom: 6px solid var(--primaryColor);
    color: var(--whiteColor);
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hero-right {
    flex: 1;
    max-width: 554px;

    /* margin-top: auto; */
}

.hero-left {
    flex: 1;
    max-width: 685px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
    padding-block: 20px;
}

.hero-left p {
    color: color-mix(in srgb, var(--ColorGrey-text) 50%, black);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 80% ;
    text-transform: capitalize;
    padding-block: 8px;
}

.hero-left h1 {
    color: var(--whiteColor);
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%;
}

.hero-left h1 span {
    color: var(--primaryColor);
}

.hero-left h2 {
    color: var(--whiteColor);
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%;
}

.hero-left h2 span {
    color: var(--primaryColor);
}

.hero-left .h2-heading {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    max-width: 467px;
}

.hero-left ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-left ul li {
    color: var(--ColorGrey-text);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

/* ======== hro area style end hare ======= */
/* === conversion area style start hare ====== */
.conversion-area {
    padding-block: 20px;
    background: var(--colorGrey);
}

.page-index-nl .conversion-area {
    padding-block: 30px;
    background: var(--colorGrey);
}

.conversion-wrapper {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.conversion-left {
    flex: 1;
    max-width: 532px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.conversion-left p {
    color: var(--ColorGrey-text);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    opacity: 0.8;
}

.section-title {
    color: var(--blackColor);
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%;
}

.section-title span {
    color: var(--primaryColor);
}

.conversion-right {
    flex: 1;
    max-width: 646px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
}

.conversion-right p {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

/* ======= coversion area style end hare ===== */
/* ====== workflow area style start hare ======= */
.workflow-area {
    padding-block: 34px;
    background: var(--colorGrey);
}

.workflow-area-white {
    background: var(--whiteColor);
}

/* CRO Snapshot Audit page: workflow padding + line-height */
.page-cro-snapshot-audit .workflow-area {
    padding-block: 30px;
}

.page-cro-snapshot-audit .workflow-content-card p {
    line-height: 140%;
}

.workflow-wrapper {
    padding-block: 23px;
    display: flex;
    align-items: center;
    gap: 45px;
}

.workflow-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.workflow-left {
    flex: 1;
    aspect-ratio: 1/1;
    max-width: 451px;

    /* background: url(../img/bg-effect.png) no-repeat; */
    background-size: cover;
    border-radius: 35px;

    /* border: 5px solid var(--whiteColor);
   box-shadow: 0 4px 19px 0 rgba(125, 125, 125, 0.06); */
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 25px;
}

.workflow-left::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;

    /* background: linear-gradient(180deg, #FFF 0%, rgba(255, 215, 194, 0.49) 100%); */
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.searchBtn button {
    width: 39.928px;
    height: 39.928px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primaryColor);
}

.workflow-tab-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.workflow-tab-nav a {
    padding: 14.23px 20px;
    border-radius: 100px;
    background: var(--whiteColor);
    box-shadow: 0 4px 4px 0 rgba(255, 160, 108, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-poppins);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 80%;
    text-transform: capitalize;
    max-width: 100%;
    outline: 2px solid transparent;
}

.workflow-tab-nav li:nth-child(1) a {
    width: 148px;
}

.workflow-tab-nav li:nth-child(2) a {
    width: 199px;
}

.workflow-tab-nav li:nth-child(3) a {
    width: 250px;
}

.workflow-tab-nav li:nth-child(4) a {
    width: 303px;
}

.workflow-tab-nav li:nth-child(5) a {
    width: 346px;
}

.workflow-tab-nav a.active {
    outline-color: var(--primaryColor);
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 215, 194, 0.31) 100%);
    border: 2px solid var(--whiteColor);
    color: var(--primaryColor);
}

.workflow-tab-nav::before {
    content: "";
    display: block;
    width: 2px;
    height: 80%;
    background: var(--primaryColor);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    z-index: -1;
}

.workflow-right {
    flex: 1;
}

.workflow-content-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.workflow-content-card .h6-heading {
    color: var(--ColorGrey-text);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 80%;
    text-transform: capitalize;
}

.workflow-content-card p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.workflow-action {
    display: flex;
    align-items: start;
}

.workflow-list {
    list-style: disc;
    padding-left: 30px;
    margin-left: 6px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.workflow-list li::marker {
    color: var(--primaryColor);
}

.workflow-list li {
    line-height: 140%;
}

/* ======= workflow area end hare  =========== */
/* ===== why choose area style start hare ====== */
.why-choose-area {
    padding-block: 64px;
    background: var(--colorGrey);
}

.why-choose-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.why-choose-top .h6-heading {
    color: var(--ColorGrey-text);
    font-family: Geist;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 80%;
    text-transform: capitalize;
}

.why-choose-top h4 {
    color: #000;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.why-choose-top p {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.why-choose-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 992px) {
    .why-choose-wrapper {
        max-width: 1100px;
        margin-inline: auto;
    }
}

.why-choose-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.single-choose-item {
    padding: 32px;
    border-radius: 25px;
    border: 1px solid var(--colorGrey);
    background: var(--whiteColor);
}

.single-choose-item {
    display: flex;
    gap: 16px;
    align-items: start;
}

.single-choose-item .icon {
    display: flex;
    width: 60px;
    height: 60px;
    padding: 9px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
    border-radius: 12px;
    background: var(--colorGrey);
}

.why-choose-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose-content h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.why-choose-content p {
    font-size: 18px;
    line-height: 120%;
}

.why-choose-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ======= why choose area style end hare ====== */
/* ======= features area style start hare ====== */
.features-area {
    padding-block: 64px;
}

.feature-wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

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

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: start;
}

.feature-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-content p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 25px;
}

/* ======== feature area end hare ===== */
/* client review area style start hare */
.client-review-area {
    padding-block: 64px;
    background: var(--colorGrey);
    display: none;
}

.review-top {
    width: 100%;
    max-width: 990px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.review-top p {
    color: var(--ColorGrey-text);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 80%;
    text-transform: capitalize;
}

.client-review-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.review-card {
    padding: 24px;
    padding-top: 32px;
    border-radius: 25px;
    border: 1px solid var(--colorGrey);
    background: #FFF;
    padding-top: 32px;
    padding-right: 44px;
    position: relative;
}

.review-card .user-icon {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--Linear, linear-gradient(180deg, rgba(255, 160, 108, 0.22) 0%, rgba(242, 94, 13, 0.33) 100%));
    border-radius: 50%;
}

.rating-star ul {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 17px;
}

.review-card .client-name {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    padding-top: 18px;
}

.review-card .review-text {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    padding-top: 9px;
}

.review-card .review-post-date {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    opacity: 0.5;
    margin-top: 32px;
}

.review-icon {
    position: absolute;
    right: 30px;
    top: -17px;
}

.review-slider {
    padding-top: 20px;
}

.review-slider-actions {
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.slider-contorls {
    display: flex;
    gap: 40px;
    align-items: center;
}

.slider-contorls button {
    width: 36.648px;
    height: 36.667px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primaryColor);
    color: var(--whiteColor);
    border-radius: 10px;
}

.slider-contorls button:disabled {
    background: var(--blackColor);
}

.review-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--ColorGrey-text);
    border: 2px solid  var(--whiteColor);
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    opacity: 1;
}

.review-pagination .swiper-pagination-bullet-active {
    background: var(--primaryColor);
}

/* client review area styl end hare */
/* faq area style start hare */
.faq-area {
    padding-top: 80px;
    padding-bottom: 148px;
    background: var(--colorGrey);
}

.faq-area-white {
    background: var(--whiteColor);
    padding-bottom: 64px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
}

.faq-top-card {
    width: 100%;
    max-width: 762px;
    text-align: center;
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.faq-top-card .h6-heading {
    color: var(--ColorGrey-text);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 80%;
    text-transform: capitalize;
}

.faq-top-card p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.faq-top-card p a {
    text-decoration: underline;
}

.faq-main {
    width: 100%;
    max-width: 928px;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid var(--blackColor);
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button {
    font-size: 18px;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    color: var(--blackColor);
    background-color: var(--whiteColor);
}

/* FAQ body typography + bullets (global UL has no bullets) */
.faq-area .accordion-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    line-height: 140%;
    background: #F5F5F5;
    border-radius: 12px;
    padding: 18px 20px;
}

.faq-area .accordion-body p {
    line-height: inherit;
}

.faq-area .accordion-body ul.faq-bullet-list {
    list-style: disc;
    padding-left: 30px;
    margin-left: 6px;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.faq-area .accordion-body ul.faq-bullet-list li::marker {
    color: var(--primaryColor);
}

.faq-area .accordion-body ul.faq-bullet-list li {
    line-height: inherit;
}

/* ===========faq area end hare ========== */
/* cro scan area style start hare */
.cro-scan-area {
    padding-bottom: 42px;
}

.cro-scan-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 30px 70px;
    border-radius: 25px;
    border-bottom: 6px solid var(--primaryColor);
    background: var(--blackColor);
    text-align: center;
    color: var(--whiteColor);
    align-items: center;
}

.title-white {
    color: var(--whiteColor);
}

.cro-scan-wrapper .h6-heading {
    color: var(--ColorGrey-text);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 80%;
    text-transform: capitalize;
}

.cro-scan-wrapper h4 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    max-width: 1008px;
}

.scan-success-msg {
    background: #d4edda;
    border: 1px solid #155724;
    border-radius: 8px;
    color: #155724;
    padding: 14px 20px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.4;
}

.cro-scan-wrapper form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.cro-scan-wrapper form .form-field-wrapper {
    position: relative;
    margin-bottom: 0;
}

.cro-scan-wrapper form input {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.11);
    color: var(--whiteColor);
    padding: 13px 23px;
    width: 100%;
    transition: 0.3s;
}

.cro-scan-wrapper form input:focus {
    border-color: var(--whiteColor);
}

.cro-scan-wrapper form input.error {
    border-color: #F25E0D;
}

.field-error-msg {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #F25E0D;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    color: #000;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.field-error-msg.show {
    display: block;
}

.field-error-msg::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #F25E0D;
}

.field-error-msg::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
}

.field-error-msg .error-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #F25E0D;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
}

.field-error-msg .error-icon::before {
    content: '!';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 12px;
}

.scan-bottom-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.scan-bottom-card ul {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scan-bottom-card ul li {
    line-height: 120%;
}

.scan-bottom-card span {
    color: var(--ColorGrey-text);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

/* cro scan area end hare */
/* footer style start hare */
.footer-area {
    padding-top: 64px;
    padding-bottom: 28px;
    background: linear-gradient(180deg, rgba(255, 160, 108, 0.00) 0%, rgba(242, 94, 13, 0.33) 100%);
}

.footer-top {
    display: flex;
    gap: 20px;
}

.footer-left-block {
    width: 40%;
}

.footer-logo a {
    display: block;
    color: var(--blackColor);
    font-size: 46px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%;
}

.footer-logo a span {
    color: var(--primaryColor);
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-left-block p {
    font-size: 18px;
    line-height: 120%;
}

.footer-right-block {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}

.footer-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.footer-links a {
    font-size: 18px;
    line-height: 120%;
}

.footer-links a:hover {
    color: var(--primaryColor);
}

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

.footer-social a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    line-height: 120%;
}

.footer-social a:hover {
    color: var(--primaryColor);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.footer-bottom-links a:hover {
    color: var(--primaryColor);
}

.footer-sep {
    opacity: 0.6;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* =========================
 SERVICES PAGE STYLE 
=========================== */
.service-hero {
    padding-block: 66px;
}

/* our role area style start hare */
.our-role-area {
    padding-block: 64px;
    background: var(--whiteColor);
}

.our-role-area strong {
    text-decoration: underline;
}

.our-role-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.our-role-wrapper .section-top {
    max-width: 841px;
    width: 100%;
    margin-inline: auto;
}

.section-top .h6-heading {
    color: var(--ColorGrey-text);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 80%;
    text-transform: capitalize;
}

.section-top p {
    font-size: 18px;
    line-height: 120%;
}

.our-role-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 1057px;
    margin-inline: auto;
}

.single-role {
    padding-top: 30px;
    padding-inline: 45px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--ColorGrey-text);
    display: flex;
    align-items: start;
    gap: 21px;
}

.role-border-right {
    border-right: 1px solid var(--ColorGrey-text);
}

.single-role .icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-role p {
    flex: 1;
    max-width: 407px;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
}

/* oue role area end hare */
/* goal area style start hare */
.goal-area {
    padding-block: 64px;
}

.goal-wrapper {
    display: flex;
    align-items: center;
}

.gaol-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 62px;
    border-right: 1px solid var(--colorGrey);
    flex: 1;
    max-width: 841px;
}

.gaol-left .h6-heading {
    color: var(--ColorGrey-text);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    opacity: 0.8;
}

.goal-right {
    padding-inline: 97px;
}

/* goal area style end hare */
/* we don't do area style start hare */
.we-dont-do-area {
    padding-top: 64px;
    padding-bottom: 36px;
    background: var(--colorGrey);
}

.we-dont-wrapper .section-top {
    gap: 16px;
}

.we-dont-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dont-do-list {
    padding: 26px;
    padding-bottom: 30px;
    border-radius: 25px;
    background: var(--whiteColor);
    width: 100%;
    max-width: 550px;
    margin-inline: auto;
}

.dont-do-list ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.dont-do-list ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dont-do-list ul li span {
    flex: 1;
    font-size: 18px;
    line-height: 120%;
}

.dont-inner {
    margin-top: 46px;
    background: rgba(242, 94, 13, 0.2);
    padding-block: 45px;
}

.dont-inner h2 {
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

/* why don't do area style end hare */
/* independence area styel start hare */
.independence-area {
    padding-block: 64px;
    background: var(--colorGrey);
}

.independence-left {
    flex: 1;
    max-width: 471px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
}

.independence-acion {
    padding-top: 16px;
}

.independence-left h3 {
    margin-top: 33px;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.independence-wrapper {
    display: flex;
    gap: 68px;
}

.independence-right {
    flex: 1;
    padding: 40px 45px;
    border-radius: 25px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-independence-item {
    display: flex;
    gap: 32px;
    align-items: start;
}

.single-independence-item .serial-number {
    width: 71px;
    height: 71px;
    background: rgba(242, 94, 13, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primaryColor);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.inner-independence-wp {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.inner-independence-wp h5 {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.independence-separet {
    height: 1px;
    background: var(--colorGrey);
    max-width: 84%;
    width: 100%;
    margin-left: auto;
}

/* ========== Independence area style end hare ========= */
/* hero area */
.what-cro-hero {
    padding-top: 67px;
    padding-bottom: 89px;
}

.title-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sub-title {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.sub-title span {
    color: var(--primaryColor);
}

/* Keep CRO initials highlighted in hero text */
.what-cro-hero .h2-heading span {
    color: var(--primaryColor);
}

/* hero area end hare */
/* need cro area start hare */
.need-cro-area {
    padding-block: 60px;
    background: var(--colorGrey);
}

.cro-list-wp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 56px;
}

.single-cro-item {
    padding: 28px 30px;
    border-radius: 25px;
    border: 1px solid var(--colorGrey);
    background: var(--whiteColor);
}

.single-cro-item {
    display: flex;
    align-items: center;
    gap: 19px;
}

.single-cro-item .icon {
    display: flex;
    width: 65px;
    height: 65px;
    padding: 9px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    background: linear-gradient(180deg, rgba(255, 160, 108, 0.22) 0%, rgba(242, 94, 13, 0.33) 100%);
}

.single-cro-item p {
    flex: 1;
    max-width: 231px;
    font-weight: 500;
}

.cro-actions {
    padding-top: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* need cro area end hare */
/* why importent area style start hare */
.why-cro-importent {
    padding-top: 64px;
    padding-bottom: 107px;
    background: var(--colorGrey);
}

.cro-importent-wrapper {
    display: flex;
    align-items: center;
    gap: 34px;
}

.cro-importent-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    align-items: start;
}

.cro-importent-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-cro-importent .cro-importent-content p,
.why-cro-importent .cro-importent-content li {
    line-height: 180%;
}

.cro-importent-content ul {
    list-style: disc;
    padding-left: 20px;
}

.cro-importent-actions {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.cro-importent-right {
    flex: 1;
}

.cro-importent-right img {
    width: 100%;
    display: block;
    border-radius: 25px;
    box-shadow: 0 4px 19px 0 rgba(125, 125, 125, 0.06);
}

/* Desktop: make image column narrower + add more spacing */
@media (min-width: 992px) {
    .cro-importent-wrapper {
        gap: 90px;
    }

    .cro-importent-right {
        flex: 0 0 38%;
        max-width: 38%;
    }

    .cro-importent-left {
        flex: 1 1 auto;
    }
}

/* why cro importent area style end hare */
/* tools area style start hare */
.tools-area {
    padding-block: 64px;
    background: var(--blackColor);
    color: var(--whiteColor);
    border-bottom: 6px solid var(--primaryColor);
}

.tools-top {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tools-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.tools-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 33px;
}

.tools-item {
    padding: 28px 32px;
    border-radius: 25px;
    background: rgba(217, 217, 217, 0.12);
    display: flex;
    flex-direction: column;
    gap: 21px;
    min-height: 465px;
}

.tools-item .icon {
    display: flex;
    width: 76px;
    height: 76px;
    padding: 9px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    background: rgba(166, 166, 166, 0.50);
}

.tools-item-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tools-item-top h4 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.tools-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.tools-item ul {
    padding-left: 20px;
    list-style: disc;
}

.tools-item ul li {
    line-height: 200%;
}

.tools-item.tools-cro {
    border-radius: 25px;
    border: 1px solid var(--primaryColor);
    background: linear-gradient(0deg, rgba(242, 94, 13, 0.17) 0%, rgba(183, 114, 76, 0.50) 100%);
}

.tools-item.tools-cro .icon {
    background: var(--primaryColor);
}

.tools-item ul li svg {
    margin-left: auto;
}

.tools-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
    text-align: center;
    width: 100%;
    max-width: 1089px;
    margin-inline: auto;
}

.tools-bottom h4 {
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

/* tools area end hare */
/* case study area style start hare */
.case-study-area {
    padding-block: 64px;
}

.audit-before-after {
    padding-top: 56px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 33px;
}

.audit-item {
    padding: 37px;
    padding-top: 46px;
    border-radius: 25px;
    background: var(--colorGrey);
}

.audit-item h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.audit-item h2 span {
    color: var(--primaryColor);
}

.audit-inner-wp {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

.audit-inner-content {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.audit-inner-content h3 {
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    display: flex;
    min-width: 93px;
    min-height: 64px;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.audit-graph {
    padding: 32px;
    padding-bottom: 40px;
    border-radius: 25px;
    border: 1px solid var(--ColorGrey-text);
    background: var(--whiteColor);
    margin-top: 40px;
}

.audit-after.audit-item {
    background: #FFDFCD;
}

.notice-ratio h3::before {
    content: "";
    display: block;
    width: 97px;
    height: 60px;
    background: url(../img/audit-ractangle.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: -18px;
    top: -1px;
}

.case-study-action {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

/* ===================
 Free Scan Page style 
=================== */
.free-scan-hero .hero-wrapper {
    padding-block: 50px;
    min-height: 620px;
}

/* free cro scan area style start hare */
.free-scan-area .cro-scan-wrapper {
    background: var(--whiteColor);
    color: var(--blackColor);
    border: none;
}

.free-scan-area form input {
    background: #e8e8e8;
    color: var(--blackColor);
    border: 1px solid #b0b0b0;
}

.free-scan-area form input::placeholder {
    color: #666;
}

.free-scan-area form input:focus {
    background: #ffffff;
    border-color: var(--blackColor);
}

.free-scan-feature {
    display: flex;
    align-items: center;
    gap: 32px;
}

.single-free-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.single-free-feature p {
    flex: 1;
}

.alert {
    background: #ffaba3;
}

/* ========= free cro scan area end hare ======= */
/* ====== how it work area style start hare ======= */
.how-work-area {
    padding-top: 76px;
    padding-bottom: 60px;
    background: var(--colorGrey);
}

.how-work-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.how-work-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
    padding-inline: 4px;
}

.single-work-item {
    padding: 32px;
    border-radius: 25px;
    border: 1px solid var(--colorGrey);
    background: #FFF;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-work-item .serial-number {
    width: 71px;
    height: 71px;
    background: rgba(242, 94, 13, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primaryColor);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.single-work-item h4 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.single-work-item p {
    line-height: 160%;
}

.single-work-item span {
    display: block;
    color: var(--ColorGrey-text);
}

.free-scan-faq {
    padding-bottom: 50px;
    background: var(--whiteColor);
}

.faq-area-grey {
    background: var(--colorGrey) !important;
}

/* ========================
 AUDIT PLAN PAGE 
========================== */
/* audit plan area */
.audit-plan-area {
    padding-top: 56px;
    padding-bottom: 100px;
    background: var(--colorGrey);
}

.audit-plan-top {
    padding: 40px 47px;
    border-radius: 25px;
    background: var(--whiteColor);
    display: flex;
    align-items: center;
    gap: 50px;
}

.plan-top-left {
    flex: 1;
    max-width: 285px;
    border-right: 1px solid var(--colorGrey);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-top-left .h6-heading {
    color: var(--ColorGrey-text);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.plan-top-right {
    flex: 1;
}

.plan-top-right p {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.plan-section-title {
    padding-top: 0px;
    padding-bottom: 50px;
    text-align: center;
}

.plan-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.single-plan {
    padding: 32px;
    border-radius: 25px;
    background: var(--whiteColor);
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: auto;
    max-height: none;
    overflow: visible;
    padding-bottom: 24px;
}

.single-plan.popular-plan {
    gap: 10px;
}

.package-benefit-card2 {
    height: auto !important;
    min-height: unset !important;
    padding-bottom: 16px;
    position: relative;
}

.package-benefit-card2::before {
    display: none;
}

.single-plan.plan-free {
    align-self: start;
}

.single-plan.plan-premium .package-benefit {
    max-height: 480px;
    overflow-y: auto;
}

.single-plan.plan-free .package-benefit {
    max-height: none;
    overflow: visible;
}

.single-plan.plan-free .package-benefit-card::before {
    display: none;
}

.single-plan.plan-free .package-bottom {
    margin-top: 24px;
}

.single-plan.plan-free .package-benefit {
    max-height: 260px;

    /* kies waarde die visueel klopt */
}

.package-title {
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.package-benefit {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    flex: 1;
    max-height: none;
    overflow: visible;
    overflow-y: auto;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    padding-bottom: 0;
}

.package-benefit-card {
    position: relative;
    flex: 1;
    max-height: 429px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.package-benefit-card::before {
    content: "";
    width: 100%;
    height: 95px;
    background: rgba(255, 250, 247, 0.73);
    filter: blur(9.5px);
    position: absolute;
    left: 0;
    bottom: 120px;
    z-index: 1;
    pointer-events: none;
}

.package-benefit li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-block: 8px;
}

.package-benefit li span {
    flex: 1;
}

.package-bottom {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: auto;
    text-align: center;
    position: relative;
    z-index: 3;
    padding-top: 0;
}

.package-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    z-index: 3;
}

.current-price {
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.before-price {
    color: var(--ColorGrey-text);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-decoration-line: line-through;
}

.single-plan.popular-plan {
    position: relative;
    border: 3px solid rgba(255, 160, 108, 0.22);
    background: radial-gradient(98.36% 104.94% at 12.75% 1.89%, #FFDFCE 0%, #FFF 100%);
}

.single-plan.popular-plan .package-benefit-card {
    padding-bottom: 0;
    margin-bottom: 0;
}

.single-plan.popular-plan .package-benefit-card::before {
    bottom: 60px;
}

.single-plan.popular-plan .package-benefit {
    padding-bottom: 0;
}

.single-plan.popular-plan .package-bottom {
    padding-top: 20px;
    margin-top: auto;
}

.popular-plan-card {
    position: absolute;
    left: 50%;
    top: -33px;
    padding: 7px 10px;
    background: var(--primaryColor);
    transform: translateX(-50%);
    width: 80%;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-align: center;
    border-radius: 25px 25px 0 0;
}

.package-benefit {
    scrollbar-width: thin;
    scrollbar-color: rgba(242, 94, 13, 0.25) transparent;
}

.package-benefit::-webkit-scrollbar {
    width: 4px;
}

.package-benefit::-webkit-scrollbar-track {
    background: transparent;
}

.package-benefit::-webkit-scrollbar-thumb {
    background-color: rgba(242, 94, 13, 0.25);
    border-radius: 4px;
}

/* snapshot cro work area */
.snapshot-audit-work {
    background: var(--whiteColor);
}

.work-bottom-area {
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.work-bottom-text {
    font-size: 18px;
    font-style: italic;
    max-width: 800px;
    line-height: 160%;
}

.work-bottom-link {
    font-size: 16px;
    color: var(--ColorGrey-text);
    max-width: 600px;
    line-height: 140%;
}

/* snapshot work area style end hare */
/* campaings area start hare */
.compaing-area {
    padding-top: 65px;
    display: flex;
    flex-direction: column;
    gap: 46px;
    background: linear-gradient(180deg, rgba(255, 160, 108, 0.10) 0%, rgba(242, 94, 13, 0.33) 100%);
}

.compaing-wrapper {
    max-width: 734px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.campaing-bottom {
    padding-block: 26px;
    background: rgba(242, 94, 13, 0.2);
}

.campaing-bottom h3 {
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.snap-audit-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 33px;
    width: 100%;
    padding-top: 24px;
    text-align: left;
}

.snap-audit-feature-item {
    padding: 40px 33px;
    border-radius: 25px;
    background: var(--colorGrey);
}

.snap-audit-feature-item h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.snap-audit-feature-item P {
    padding-top: 21px;
}

.snap-audit-feature-item ul {
    margin-top: 29px;
    padding: 23px 27px;
    border-radius: 25px;
    background: var(--whiteColor);
}

.snap-audit-feature-item ul li {
    display: flex;
    align-items: center;
    padding-block: 12px;
    gap: 8px;
}

.snap-audit-feature-item ul li span {
    flex: 1;
}

/* recommendations area */
.recommendations-area {
    background: var(--whiteColor);
    padding-top: 10px;
}

.recommendations-area .single-role {
    flex-direction: column;
    gap: 13px;
}

.audit-delivery-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.audit-delivery-content h4 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.audit-delivery-content p {
    font-weight: 400;
}

/* recommendations area style */
.recommandation-area {
    padding-top: 64px;
    padding-block: 54px;
    border-bottom: 6px solid var(--primaryColor);
    background: linear-gradient(180deg, rgba(255, 160, 108, 0.10) 0%, rgba(242, 94, 13, 0.33) 100%);
}

/* Mission section: grey background + large quote icons */
.mission-quote-section {
    background: var(--colorGrey) !important;
}

.mission-quote-wrapper {
    gap: 12px;
}

.mission-quote-block {
    position: relative;
    padding: 12px 64px 12px 64px;
    max-width: 895px;
}

.mission-quote-section .mission-quote-block h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
}

.mission-quote-section .quote-icon {
    position: absolute;
    opacity: 0.25;
    pointer-events: none;
}

.mission-quote-section .quote-icon img {
    width: 48px;
    height: 48px;
}

.mission-quote-section .quote-icon-open {
    top: 0;
    left: 0;
}

.mission-quote-section .quote-icon-close {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

.recommandation-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
}

.recommandation-wrapper p {
    max-width: 895px;
}

.recommandation-wrapper ul {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recommandation-wrapper ul li {
    padding-block: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recommandation-wrapper ul li span {
    flex: 1;
}

.cro-scan-wrapper h4 span {
    color: var(--primaryColor);
}

.view-snapshot-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.view-snapshot-btn .whatsapp-btn {
    background: var(--whiteColor);
    color: var(--blackColor);
}

/* ==================
contact page style 
======================== */
.contact-form-card {
    padding: 28px 32px;
    padding-bottom: 35px;
    border-radius: 25px;
    background: #252525;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.contact-form-card h4 {
    color: var(--whiteColor);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.contact-form-card form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form-card form input {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.11);
    padding: 14px 19px;
    color: var(--whiteColor);
    font-size: 18px;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-card form select {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background-color: #3B3B3B;
    padding: 14px 19px;
    color: var(--ColorGrey-text);
    font-size: 18px;
    background-image: url(../img/select-input-arrow-white.png);
}

.contact-form-card form input:focus {
    border-color: #fff;
}

.contact-form-card form textarea {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.11);
    padding: 14px 19px;
    color: var(--whiteColor);
    font-size: 18px;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    min-height: calc((14px * 2) + (18px * 2) + 28px); /* 2x height of input */
    font-family: inherit;
}

.contact-form-card form textarea:focus {
    border-color: #fff;
    outline: none;
}

.contact-form-card form textarea.error {
    border-color: #F25E0D;
}

.contact-form-card form .form-field-wrapper {
    position: relative;
}

.contact-form-card form .form-field-textarea-wrapper {
    grid-column: 1 / -1; /* Span full width if in grid */
}

.contact-form-card .scan-success-msg {
    margin-bottom: 0;
    margin-top: 0;
}

/* about us area stlyle start */
.about-us-area {
    padding-top: 93px;
    padding-bottom: 100px;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 45px;
}

.about-left {
    flex: 1;
    max-width: 451px;
}

.about-left img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 25px;
}

.about-right {
    flex: 1;
    max-width: 606px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-right p {
    line-height: 140%;
}

.about-right .social-link {
    display: flex;
    align-items: center;
    gap: 16px;
}

.recommandation-wrapper h4 {
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    max-width: 895px;
}

/* ======================
 terms page style 
====================== */
.terms-wrapper {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
}

.terms-wrapper .h6-heading {
    color: var(--ColorGrey-text);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 80%;
    text-transform: capitalize;
}

.terms-wrapper p {
    color: var(--ColorGrey-text);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.terms-main {
    padding-block: 70px;
}

.privacy-container {
    display: flex;
    align-items: start;
    gap: 60px;
}

.privacy-container .tab-nav {
    flex: 1;
    max-width: 351px;
    padding: 30px;
    border-radius: 25px;
    background: var(--colorGrey);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-content-wrapper {
    flex: 1;
}

.privacy-container .tab-nav li {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    cursor: pointer;
}

.privacy-container .tab-nav li.active {
    color: var(--primaryColor);
}

.tab-panel {
    display: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: #000;
}

.tab-panel.active {
    display: block;
}

.tab-panel h2 {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
}

.tab-panel h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 8px;
}

.tab-panel p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 10px;
}

.tab-panel ul {
    padding-left: 20px;
    list-style: disc;
    font-size: 14px;
    line-height: 1.65;
}

.selected-lang .arrow {
    max-width: 16px;
}

.selected-lang .arrow img {
    width: 100%;
    height: fit-content;
}

.package-benefit li img {
    max-width: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ADDED */
.conversion-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.conversion-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 18px;
    line-height: 120%;
}

.conversion-list i {
    color: var(--primaryColor);
    margin-top: 2px;
}
