/* Hero Section Layout start */
.vz-b-hero-section {
    padding-top: 13px;
    padding-bottom: 12px;
    background-color: var(--bg-body);
}

.vz-b-hero-section .container{
    padding-right: 25px;
    padding-left: 25px;
}

.vz-b-hero-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vz-b-hero-content {
    flex: 1;
}

.vz-b-badge {
    display: inline-block;
    background-color: rgba(0, 64, 124, 0.05);
    color: var(--blue-dark);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    line-height: 20px;
}

.vz-b-main-heading {
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 16px;
    color: var(--black-color);
}

.vz-b-main-heading span {
    color: var(--blue-light);
}

.vz-b-sub-heading {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 24px;
    font-weight: 400;
}

.vz-b-sub-heading strong {
    color: var(--black-color);
    font-weight: 700;
}

.vz-b-info-card {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4.44px 26.66px 0px #00000040;
    border: 0.5px solid #C8C8C8
}

.vz-b-info-card p {
    font-size: 15px;
    line-height: 24px;
    color: #0E2A47;
    margin-bottom: 0;
}

.vz-b-info-card strong {
    color: var(--blue-light);
    font-weight: 600;
}

.vz-b-hero-visual {
    flex: 1;
    width: 100%;
}

.vz-b-dashboard-mockup {
    background: linear-gradient(180deg, #0E2A47 0%, #1A4580 50%, #0E2A47 100%);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.vz-b-dashboard-mockup::before {
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    right: 19px;
    top: 19px;
    opacity: 1;
}

.vz-b-mockup-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.vz-b-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vz-b-user-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background: linear-gradient(180deg, #4DA3FF 0%, #1E5EFF 100%);
}

.vz-b-user-av-wrap {
    position: relative;
}

.vz-b-user-av-wrap::after {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(180deg, #0891B2 0%, #06B6D4 100%);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(32px);
    z-index: -1;
}

.vz-b-user-details h3 {
    color: var(--white-color);
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 0px;
}

.vz-b-user-details p {
    color: var(--white-color);
    font-size: 14px;
    margin-bottom: 0px;
    line-height: 20px;
}

.vz-b-user-details span {
    color: #88C5FF;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.vz-b-quote-bubble {
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A3C9FF;
}

.vz-b-quote-bubble svg {
    width: 24px;
    height: 24px;
}

.vz-b-testimonial-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vz-b-testimonial-box::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 0;
    width: 4px;
    height: 100%;
    border-radius: 50px;
    background-color: #FDC700;
}


.vz-b-testimonial-content p {
    color: var(--white-color);
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
}

.vz-b-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
}

.vz-b-stat-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 13px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.vz-b-stat-item:hover {
    transform: translateY(-2px);
    background-color: #2A4266;
}

.vz-b-stat-icon {
    position: absolute;
    top: 20px;
    right: 14px;
    color: #7AAFFF;
    opacity: 0.6;
}

.vz-b-stat-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.vz-b-stat-value {
    color: var(--white-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 33px;
}

.vz-b-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

/* Hero Section Layout end */

/* Feature Cards (Bottom Row) start */
.vz-feature-cards {
    padding-top: 12px;
    padding-bottom: 24px;
    background-color: var(--bg-body);
}
.vz-feature-cards .container{
    padding-right: 25px;
    padding-left: 25px;
}

.vz-feature-cards-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.vz-feature-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0px 4px 6px -4px #0000001A, 0px 10px 15px -3px #0000001A;
    position: relative;
    border: 1px solid var(--border-gray, #F1F3F5);
    border-left: 2px solid var(--blue-light);
}


.vz-feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.vz-icon-container {
    width: 44px;
    height: 44px;
    background: rgba(229, 242, 255, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-light);
}

.vz-icon-container svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.vz-feature-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #0E2A47;
}

.vz-feature-text {
    color: var(--primary-color);
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
}

/* Feature Cards (Bottom Row) end*/

/* Promo CTA Section start */
.vz-promo-section {
    background: linear-gradient(180deg, #E6F0FF 0%, var(--white-color) 100%);
    padding: 13px 20px 40px;
    text-align: start;
}

.vz-promo-section .container{
    padding-right: 25px;
    padding-left: 25px;
}

.vz-promo-heading {
    font-size: 28px;
    line-height: 42px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.vz-promo-heading .highlight {
    color: var(--blue-light);
}

.vz-promo-subtext {
    font-size: 16px;
    line-height: 26px;
    color: var(--primary-color);
    max-width: 650px;
    margin-bottom: 32px;
}

.vz-promo-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: start;
    margin-bottom: 30px;
}

.vz-promo-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--blue-light);
    color: #fff;
    padding: 12px 36px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 500;
    line-height: 24px;
    font-size: 16px;
    box-shadow: 0px 20px 25px -5px #0000001A;
    width: 100%;
    max-width: 100%;
}

.vz-promo-btn-primary svg {
    width: 18px;
    height: 18px;
    transition: all 0.4s;
}

.vz-promo-btn-primary:hover svg {
    transform: translateX(6px);
}

.vz-promo-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--blue-light);
    padding: 11px 25px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid var(--blue-light);
    box-shadow: 0px 4px 6px -1px #0000001A;
    transition: all 0.2s;
    width: 100%;
    max-width: 100%;
}

.vz-promo-btn-outline:hover {
    background: #F0F7FF;
}

.vz-promo-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
    max-width: 816px;
    margin: 0 auto;
    justify-content: space-between;
}

.vz-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 21px;
    color: #4B5563;
    font-weight: 500;
}

.vz-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: #E0EFFF;
    color: var(--blue-light);
    border-radius: 12px;
}

/* Promo CTA Section end */

/* evaluation framework start */
.vz-evaluation-framework {
    padding: 12px 0 16px;
    background-color: var(--white-color);
}

.vz-evaluation-framework .container{
    padding-right: 25px;
    padding-left: 25px;
}

.vz-evaluation-framework .vz-evaluation-framework-title {
    margin-bottom: 32px;
}

.vz-evaluation-framework .vz-evaluation-framework-title h3 {
    color: #0E2A47;
    font-weight: 700;
    font-size: 24px;
    line-height: 35px;
    text-align: left;
    margin-bottom: 12px;
}

.vz-evaluation-framework .vz-evaluation-framework-title p {
    color: var(--primary-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
}


.vz-evaluation-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
}

.vz-eval-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #C2C2C2;
    box-shadow: 0px 4px 6px -4px #0000001A, 0px 10px 15px -3px #0000001A;
    display: flex;
    flex-direction: column;
}

.vz-eval-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%) border-box;
}

.vz-eval-icon-wrap {
    position: relative;
    flex-shrink: 0;
}

.vz-eval-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-dark);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    box-shadow: 0px 2px 4px 0px #0000000D inset;
}

.vz-eval-icon svg {
    width: 28px;
    height: 28px;
}

.vz-eval-badge {
    position: absolute;
    top: -11px;
    right: -11px;
    width: 26px;
    height: 26px;
    background: #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    color: var(--black-color);
}

.vz-eval-title-wrap h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 4px;
    line-height: 24px;
}

.vz-eval-title-wrap p {
    font-size: 13px;
    color: rgba(74, 85, 101, 0.9);
    margin: 0;
    line-height: 18px;
}

.vz-eval-bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 20px;
    max-width: 846px;
    margin-bottom: 20px;
}

.vz-eval-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vz-eval-bullet svg {
    width: 16px;
    height: 16px;
    color: #5A5A5A;
    flex-shrink: 0;
}

.vz-eval-bullet span {
    font-size: 14px;
    color: #364153;
    font-weight: 400;
    line-height: 22px;
}

.vz-eval-highlight {
    background: #F8FAFC;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vz-eval-dot {
    width: 6px;
    height: 6px;
    background: #111827;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.vz-eval-highlight p {
    font-size: 12px;
    line-height: 18px;
    color: var(--primary-color);
    margin: 0;
}

.vz-eval-highlight strong {
    color: var(--black-color);
    font-weight: 600;
}

.vz-eval-action {
    display: flex;
    margin-top: 20px;
}

.vz-eval-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-light);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 14px;
    text-decoration: none;
    transition: background 0.2s ease;
    box-shadow: 0px 2px 4px -2px #0000001A, 0px 4px 6px -1px #0000001A;
    width: 100%;
    justify-content: center;
}

.vz-eval-btn-primary:hover {
    background: #005BB5;
}

.vz-eval-btn-primary svg {
    width: 14px;
    height: 14px;
}

/* evaluation framework end */

/* Trusted Section CSS start */
.vz-trusted-section {
    padding: 20px 10px;
    background-color: #EEF4FA;
}

.vz-trusted-section .container{
    padding-right: 25px;
    padding-left: 25px;
}

.vz-trusted-section-container {
    background: linear-gradient(180deg, #1E5A8E 0%, #0F2942 100%);
    border-radius: 22px;
    padding: 24px 16px;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    max-width: 1082px;
    margin: 0 auto;
    position: relative;
}

.vz-trusted-section-container::before {
    content: '';
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background-color: #06B6D4;
    filter: blur(120.31999969482422px);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.2;
}

.vz-trusted-header {
    position: relative;
    display: flex;
    flex-direction: column;
}

.vz-trusted-rating-bar {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
    order: 2;
}

.vz-trusted-avatars {
    display: flex;
    align-items: center;
}

.vz-trusted-avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: -8px;
}

.vz-trusted-avatars img:first-child {
    margin-left: 0;
}

.vz-trusted-stars {
    display: flex;
    gap: 4px;
}

.vz-trusted-stars svg {
    width: 20px;
    height: 20px;
}

.vz-trusted-rating-text {
    font-size: 15px;
    color: var(--white-color);
    font-weight: 700;
}

.vz-trusted-rating-text span {
    font-weight: 400;
    color: #e1e1e1;
}

.vz-trusted-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 28px;
}

.vz-trusted-heading-hl {
    color: #0EA5E9;
}

.vz-trusted-subheading {
    font-size: 12px;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 735px;
    margin: 0 auto 14px;
}

.vz-trusted-stats-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
}

.vz-trusted-stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    max-width: calc(33.33% - 9.33px);
    text-align: left;
    flex-direction: column;
}

.vz-trusted-stat-icon {
    width: 33px;
    height: 33px;
    border-radius: 11px;
    background: linear-gradient(180deg, #1E5EFF 0%, #4DA3FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.vz-trusted-stat-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--white-color);
}

.vz-trusted-stat-info {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.vz-trusted-stat-value {
    font-size: 17px;
    font-weight: 800;
    margin: 0;
    line-height: 23px;
    color: var(--white-color);
}

.vz-trusted-stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 13px;
}

/* Trusted Section CSS end */

/* Shortlist Section CSS  start */
.vz-shortlist-section {
    padding: 30px 0 17px;
    background-color: var(--white-color);
}

.vz-shortlist-section .container{
    padding-right: 25px;
    padding-left: 25px;
}

.vz-shortlist-header {
    text-align: left;
    margin-bottom: 12px;
}

.vz-shortlist-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0E2A47;
    margin-bottom: 12px;
    line-height: 36px;
}

.vz-shortlist-header p {
    font-size: 16px;
    color: var(--primary-color);
    max-width: 860px;
    margin: 0 auto;
    line-height: 24px;
}

.vz-shortlist-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}

.vz-sl-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0px 4px 24px -4px #0000001A, 0px 10px 24px -3px #0000001A;
    border: 0.91px solid #ECECEC;
    display: flex;
    flex-direction: unset;
    flex-wrap: wrap;
    align-items: center;
}

.vz-sl-icon {
    width: 39px;
    height: 39px;
    background-color: rgba(229, 242, 255, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    color: var(--blue-light);
}

.vz-sl-icon svg {
    width: 20px;
    height: 20px;
}

.vz-sl-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0E2A47;
    margin-bottom: 0px;
    line-height: 26px;
    margin-left: 10px;
    width: calc(100% - 50px);
}

.vz-sl-card p {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 26px;
    margin-bottom: 14px;
    flex-grow: 1;
    margin-top: 11px;
}

.vz-sl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--blue-light);
    color: var(--white-color);
    text-decoration: none;
    padding: 8px;
    border-radius: 16px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease;
    line-height: 20px;
    box-shadow: 0px 2px 4px -2px #0000001A, 0px 4px 6px -1px #0000001A;
    width: 100%;
}

.vz-sl-btn:hover {
    background-color: #005bb5;
}

.vz-sl-btn svg {
    width: 16px;
    height: 16px;
}

/* Shortlist Section CSS  end */


/* FAQ Section start */
.vz-faq-section {
    padding: 10px 0 20px;
    background-color: var(--white-color);
}

.vz-faq-section .container{
    padding-right: 25px;
    padding-left: 25px;
}

.vz-faq-title {
    font-size: 22px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 13px;
    text-align: left;
    line-height: 33px;
    letter-spacing: -0.4px;
}

.vz-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 1230px;
    margin: 0 auto;
}

.vz-faq-card {
    background: var(--white-color);
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
    display: flex;
    flex-direction: column;
}


.vz-faq-grid .vz-faq-left .vz-faq-card:nth-child(4n + 1) {
    border-left: 6px solid #2C7730;
}

.vz-faq-grid .vz-faq-left .vz-faq-card:nth-child(4n + 2) {
    border-left: 6px solid #F2D02B;
}

.vz-faq-grid .vz-faq-left .vz-faq-card:nth-child(4n + 3) {
    border-left: 6px solid #E7000B;
}

.vz-faq-grid .vz-faq-left .vz-faq-card:nth-child(4n + 4) {
    border-left: 6px solid #45EDB0;
}

.vz-faq-grid .vz-faq-right .vz-faq-card:nth-child(4n + 1) {
    border-left: 6px solid #E7000B;
}

.vz-faq-grid .vz-faq-right .vz-faq-card:nth-child(4n + 2) {
    border-left: 6px solid #45EDB0;
}

.vz-faq-grid .vz-faq-right .vz-faq-card:nth-child(4n + 3) {
    border-left: 6px solid #2C7730;
}

.vz-faq-grid .vz-faq-right .vz-faq-card:nth-child(4n + 4) {
    border-left: 6px solid #F2D02B;
}


.vz-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
}

.vz-faq-question {
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
    margin: 0;
    line-height: 22px;
}

.vz-faq-icon {
    flex-shrink: 0;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vz-faq-answer {
    font-size: 12px;
    color: var(--black-color);
    line-height: 20px;
    margin: 0;
    font-weight: 400;
}

.vz-faq-link {
    color: var(--blue-light);
    cursor: pointer;
    text-decoration: none;
}

.vz-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s all ease-in-out;
}

.vz-faq-card.active .vz-faq-answer {
    max-height: 300px;
    margin-top: 6px;
}

.vz-faq-icon .line {
    fill: #111827;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.vz-faq-icon .vertical {
    transform: scaleY(1);
    opacity: 1;
}

.vz-faq-card.active .vertical {
    transform: scaleY(0);
    opacity: 0;
}

.vz-faq-icon .icon {
    transition: transform 0.3s ease;
}

.vz-faq-card.active .icon {
    transform: rotate(180deg);
}


.vz-faq-header {
    cursor: pointer;
}

.vz-faq-left,
.vz-faq-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vz-faq-icon .icon {
    width: 11px;
    height: 11px;
}

/* FAQ Section end */

@media (min-width:601px) {

    /* evaluation framework start */
    .vz-eval-btn-primary {
        width: auto;
        padding: 10px 24px;
        justify-content: unset;
    }

    /* evaluation framework end */

    /* Promo CTA Section start */
    .vz-promo-btn-primary,
    .vz-promo-btn-outline {
        max-width: 320px;
    }

    .vz-promo-actions {
        flex-direction: row;
        margin-bottom: 25px;
        gap: 15px;
    }

    /* Promo CTA Section end */
}

@media (min-width: 768px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    /* Hero Section Layout start */
    .vz-b-hero-section {
        padding-top: 36px;
        padding-bottom: 15px;
    }

    .vz-b-main-heading {
        font-size: 40px;
        font-weight: 700;
        line-height: 60px;
        margin-bottom: 17px;
    }

    .vz-b-sub-heading {
        font-size: 1.25rem;
        margin-bottom: 32px;
        line-height: 28px;
    }

    .vz-b-info-card {
        padding: 20px 24px;
    }

    .vz-b-info-card p {
        font-size: 16px;
        line-height: 26px;
    }

    .vz-b-user-avatar {
        width: 80px;
        height: 80px;
    }

    .vz-b-user-av-wrap::after {
        width: 80px;
        height: 80px;
    }

    .vz-b-dashboard-mockup {
        padding: 24px 32px;
    }

    .vz-b-user-details h3 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 4px;
    }

    .vz-b-user-profile {
        gap: 24px;
    }

    .vz-b-quote-bubble {
        width: 48px;
        height: 48px;
    }

    .vz-b-testimonial-box {
        padding: 12px 26px;
    }

    .vz-b-testimonial-content p {
        font-size: 16px;
        line-height: 26px;
    }

    .vz-b-testimonial-box::before {
        left: -14px;
    }

    .vz-b-testimonial-box {
        margin-bottom: 20px;
    }

    .vz-b-stats-grid {
        gap: 16px;
    }

    .vz-b-stat-item {
        padding: 16px;
    }

    .vz-b-stat-value {
        font-size: 1.875rem;
        margin-bottom: 8px;
        line-height: 35px;
    }

    .vz-b-stat-label {
        font-size: 14px;
        line-height: 20px;
    }

    .vz-b-stat-icon {
        top: 24px;
        right: 24px;
    }

    .vz-b-dashboard-mockup::before {
        width: 256px;
        height: 256px;
        right: -127px;
        top: -127px;
        opacity: 0.5;
    }

    /* Hero Section Layout end */

    /* Feature Cards (Bottom Row) start */
    .vz-feature-cards-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .vz-feature-cards {
        padding-top: 15px;
        padding-bottom: 36px;
    }

    .vz-b-hero-wrap {
        gap: 60px;
    }

    .vz-feature-card {
        padding: 32px;
        border-left: 4px solid var(--blue-light);
    }

    .vz-icon-container {
        width: 48px;
        height: 48px;
    }

    .vz-feature-title {
        font-size: 20px;
    }

    .vz-feature-header {
        gap: 16px;
    }

    .vz-feature-text {
        font-size: 16px;
        line-height: 26px;
    }

    /* Feature Cards (Bottom Row) end */

    /* Promo CTA Section start */
    .vz-promo-heading {
        font-size: 42px;
        line-height: 52px;
        font-weight: 700;
        margin-bottom: 36px;
        text-align: center;
    }

    .vz-promo-subtext {
        font-size: 16px;
        line-height: 24px;
        max-width: 1008px;
        color: var(--primary-color);
        width: 100%;
        text-align: center;
        margin: 0 auto 35px;
    }

    .vz-promo-actions {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        margin-bottom: 35px;
    }

    .vz-promo-btn-primary,
    .vz-promo-btn-outline {
        width: auto;
        min-width: 220px;
        font-size: 18px;
        line-height: 28px;
    }

    .vz-promo-features {
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
    }

    .vz-feature-icon {
        padding: 10px;
    }

    .vz-feature-item {
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        color: #364153;
        gap: 12px;
    }

    .vz-promo-section {
        padding: 65px 20px;
    }

    /* Promo CTA Section end */

    /* evaluation framework start */
    .vz-evaluation-framework {
        padding: 30px 0;
        background-color: #EEF4FA;
    }

    .vz-evaluation-framework .vz-evaluation-framework-title h3 {
        font-size: 36px;
        line-height: 40px;
        text-align: center;
        margin-bottom: 16px;
    }

    .vz-evaluation-framework .vz-evaluation-framework-title p {
        font-size: 20px;
        line-height: 28px;
        text-align: center;
    }

    .vz-eval-title-wrap h4 {
        font-size: 20px;
        line-height: 28px;
    }

    .vz-eval-title-wrap p {
        font-size: 14px;
        line-height: 20px;
    }

    .vz-eval-header {
        padding-bottom: 24px;
    }

    .vz-eval-bullets {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding-top: 24px;
        margin-bottom: 20px;
    }

    .vz-eval-highlight {
        background: rgba(229, 242, 255, 0.5);
        border-radius: 14px;
        padding: 16px;
        border: 0.91px solid #C4E0FF;
    }

    .vz-eval-highlight p {
        font-size: 14px;
        line-height: 20px;
    }

    .vz-eval-card {
        border: 1px solid #E5E7EB;
    }

    .vz-evaluation-list {
        gap: 32px;
    }

    /* evaluation framework end */

    /* Trusted Section CSS start */

    .vz-trusted-section {
        padding: 34px 20px;
    }

    .vz-trusted-section-container {
        text-align: center;
        padding: 45px;
    }

    .vz-trusted-header {
        display: block;
    }

    .vz-trusted-heading {
        font-size: 34px;
        line-height: 37px;
    }

    .vz-trusted-subheading {
        font-size: 15px;
        line-height: 23px;
        margin: 0 auto 30px;
    }

    .vz-trusted-stars svg {
        width: 26px;
        height: 26px;
    }

    .vz-trusted-rating-bar {
        flex-wrap: unset;
        gap: 15px;
        justify-content: center;
        margin-bottom: 24px;
    }

    .vz-trusted-rating-text {
        font-size: 18px;
    }

    .vz-trusted-stat-card {
        padding: 24px 34px;
        gap: 15px;
        max-width: calc(33.33% - 9.33px);
    }

    .vz-trusted-stat-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .vz-trusted-stat-icon svg {
        width: 28px;
        height: 28px;
    }

    .vz-trusted-stat-value {
        font-size: 34px;
        line-height: 37px;
    }

    .vz-trusted-stat-label {
        font-size: 13px;
        line-height: 19px;
    }


    /* Trusted Section CSS end */

    /* Shortlist Section CSS  start */


    .vz-shortlist-section {
        padding: 40px 0 50px;
    }

    .vz-shortlist-header {
        text-align: center;
        margin-bottom: 36px;
    }

    .vz-shortlist-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .vz-shortlist-header h2 {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 16px;
    }

    .vz-shortlist-header p {
        font-size: 20px;
        line-height: 28px;
    }

    .vz-sl-card {
        padding: 20px 32px;
        flex-direction: column;
        flex-wrap: unset;
        align-items: unset;
    }

    .vz-sl-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        margin-bottom: 14px;
    }

    .vz-sl-icon svg {
        width: 28px;
        height: 28px;
    }

    .vz-sl-card h3 {
        font-size: 24px;
        margin-bottom: 14px;
        line-height: 32px;
        margin-left: 0;
        width: auto;
    }

    .vz-sl-card p {
        font-size: 16px;
        margin-top: 0;
    }

    /* Shortlist Section CSS  end */

    /* FAQ Section start */


    .vz-faq-section {
        padding: 52px 0 82px;
    }

    .vz-faq-title {
        font-size: 28px;
        margin-bottom: 32px;
        text-align: center;
        letter-spacing: 0;
    }

    .vz-faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .vz-faq-card {
        padding: 10px 20px 10px 10px;
    }

    .vz-faq-question {
        font-size: 16px;
        line-height: 24px;
    }

    .vz-faq-grid .vz-faq-left .vz-faq-card:nth-child(4n + 1) {
        border-left: 10px solid #2C7730;
    }

    .vz-faq-grid .vz-faq-left .vz-faq-card:nth-child(4n + 2) {
        border-left: 10px solid #F2D02B;
    }

    .vz-faq-grid .vz-faq-left .vz-faq-card:nth-child(4n + 3) {
        border-left: 10px solid #E7000B;
    }

    .vz-faq-grid .vz-faq-left .vz-faq-card:nth-child(4n + 4) {
        border-left: 10px solid #45EDB0;
    }

    .vz-faq-grid .vz-faq-right .vz-faq-card:nth-child(4n + 1) {
        border-left: 10px solid #E7000B;
    }

    .vz-faq-grid .vz-faq-right .vz-faq-card:nth-child(4n + 2) {
        border-left: 10px solid #45EDB0;
    }

    .vz-faq-grid .vz-faq-right .vz-faq-card:nth-child(4n + 3) {
        border-left: 10px solid #2C7730;
    }

    .vz-faq-grid .vz-faq-right .vz-faq-card:nth-child(4n + 4) {
        border-left: 10px solid #F2D02B;
    }

    .vz-faq-left,
    .vz-faq-right {
        gap: 18px;
    }

    .vz-faq-grid {
        gap: 16px;
    }

    .vz-faq-answer {
        font-size: 14px;
        line-height: 26px;
    }

    .vz-faq-icon .icon {
        width: 14px;
        height: 14px;
    }


    /* FAQ Section end */
}

@media (min-width:992px) {

    /* Promo CTA Section start */
    .vz-promo-heading {
        font-size: 48px;
        line-height: 60px;
    }

    .vz-promo-subtext {
        font-size: 20px;
        line-height: 28px;
    }

    .vz-promo-btn-primary,
    .vz-promo-btn-outline {
        font-size: 18px;
        line-height: 28px;
    }

    .vz-promo-features {
        gap: 20px;
    }

    /* Promo CTA Section end */

    /* Trusted Section CSS start */


    .vz-trusted-stat-card {
        flex-direction: row;
    }

    .vz-trusted-stat-info {
        text-align: left;
    }


    /* Trusted Section CSS end */

    /* Shortlist Section CSS  start */

    .vz-shortlist-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Shortlist Section CSS  end */

    /* FAQ Section start */

    .vz-faq-title {
        font-size: 48px;
        margin-bottom: 58px;
        line-height: 48px;
    }

    .vz-faq-grid {
        gap: 17px;
    }

    /* FAQ Section end */
}

@media (min-width: 1024px) {

    /* Hero Section Layout start */
    .vz-b-hero-wrap {
        flex-direction: row;
        align-items: center;
        gap: 56px;
    }

    /* Hero Section Layout end */

    /* Feature Cards (Bottom Row) start */
    .vz-feature-cards-wrap {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Feature Cards (Bottom Row) end */


}
