@font-face {
    font-family: 'ZohoPuvi';
    src: url(https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_regular.woff2) format('woff2'), url(https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_regular.woff) format('woff'), url(https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_regular.ttf) format('truetype');
    font-style: normal;
    font-weight: 300;
    font-display: swap
}

@font-face {
    font-family: 'ZohoPuvi';
    src: url(https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_medium.woff2) format('woff2'), url(https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_medium.woff) format('woff'), url(https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_medium.ttf) format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: 'ZohoPuvi';
    src: url(https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extrabold.woff2) format('woff2'), url(https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extrabold.woff) format('woff'), url(https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extrabold.ttf) format('truetype');
    font-style: normal;
    font-weight: 700;
    font-display: swap
}

body {
    font-family: ZohoPuvi, sans-serif
}

/* =============================================================
   KNOX SEM PAGE â€“ Design System Tokens & Global Styles
   ============================================================= */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
    /* Colors */
    --color-primary: #0085ff;
    --color-cta-red: #e9142b;
    --color-cta-red-hover: #c01125;
    --color-primary-hover: #006acc;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-600: #666666;
    --color-gray-500: #757575;
    --color-gray-400: #999999;
    --color-bg-hero: #f3f9ff;
    --color-bg-light: #f4f9ff;
    --color-bg-gray: #f7f7f7;
    --color-bg-dark: #222326;
    --color-bg-footer: #0f0f0f;
    --color-border-light: #d4dbde;
    --color-border-card: #bcddff;
    --color-border-section: #efefef;

    /* Typography */
    --ff: 'Zoho Puvi', sans-serif;
    --fs-xs: 14px;
    --fs-sm: 15px;
    --fs-base: 16px;
    --fs-md: 17px;
    --fs-lg: 18px;
    --fs-xl: 20px;
    --fs-2xl: 24px;
    --fs-3xl: 36px;
    --fs-4xl: 40px;
    --fs-hero: 54px;

    /* Spacing */
    --sp-4: 4px;
    --sp-8: 8px;
    --sp-10: 10px;
    --sp-12: 12px;
    --sp-14: 14px;
    --sp-16: 16px;
    --sp-20: 20px;
    --sp-24: 24px;
    --sp-28: 28px;
    --sp-30: 30px;
    --sp-32: 32px;
    --sp-40: 40px;
    --sp-48: 48px;
    --sp-60: 60px;
    --sp-80: 80px;
    --sp-120: 120px;

    /* Border Radius */
    --r-sm: 4px;
    --r-md: 6px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-2xl: 30px;
    --r-pill: 51px;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
}


/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff);
    background: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Screen-reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Utility */
.text-blue {
    color: var(--color-primary);
}


/* ---- Container ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-120);
    width: 100%;
}


/* ---- Section Headings ---- */
.section-heading {
    font-size: var(--fs-3xl);
    font-weight: 700;
    line-height: 50.5px;
    text-align: center;
    color: var(--color-black);
    margin-bottom: var(--sp-40);
}

.section-subheading {
    font-size: var(--fs-md);
    font-weight: 400;
    line-height: 27.2px;
    text-align: center;
    color: var(--color-black);
    margin-bottom: var(--sp-30);
}


/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--ff);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none !important;
    line-height: 24px;
}

.btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.btn--primary-blue {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--fs-base);
    padding: 14px 25px;
}

.btn--primary-blue:hover {
    background: var(--color-primary-hover);
}

.btn--red {
    background: var(--color-cta-red);
    color: var(--color-white);
    font-size: var(--fs-md);
    font-weight: 600;
    line-height: 25.5px;
    padding: 12px 40px;
    border-radius: var(--r-sm);
}

.btn--red:hover {
    background: var(--color-cta-red-hover);
}


/* =============================================================
   NAVBAR
   ============================================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
}

.navbar .container {
    max-width: 1440px;
}

/* Top bar */
.navbar__top {
    background: var(--color-white);
    border-bottom: 1px solid #eee;
    height: 52px;
    display: flex;
    align-items: center;
}

.navbar__top-inner {
    display: flex;
    align-items: center;
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.navbar__brand-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.navbar__brand-text {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-black);
}

.navbar__brand-sup {
    font-size: 9px;
    color: var(--color-gray-500);
    vertical-align: super;
    margin-left: -4px;
}

/* Bottom bar */
.navbar__bottom {
    height: 44px;
    display: flex;
    align-items: center;
    background: var(--color-white);
}

.navbar__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__product {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.navbar__product-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.navbar__product-name {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-black);
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: var(--sp-32);
}

.navbar__link {
    font-size: var(--fs-md);
    font-weight: 400;
    color: var(--color-black);
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.2s;
}

.navbar__link:hover {
    color: var(--color-primary);
}

.navbar__link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Mobile toggle */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.navbar__toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-black);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.navbar__toggle.is-open .navbar__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.is-open .navbar__toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.is-open .navbar__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =============================================================
   SECTION 1: HERO
   ============================================================= */
.heading-menu {
    display: none !important;
}

.allFeaPage.menu .prdmenu a.box {
    border: solid #6f6f6f 1px;
}

.hero {
    background: var(--color-bg-hero);
    min-height: 511px;
    position: relative;
    overflow: hidden;
    padding: 0px 0px 60px;
}

.hero .container {
    max-width: 1440px;
    padding-top: 30px;
}

/* Decorative blur blobs */
.hero__blur {
    position: absolute;
    width: 1824px;
    height: 1693px;
    filter: blur(320px);
    pointer-events: none;
    z-index: 0;
}

.hero__blur--left {
    left: -600px;
    top: -550px;
    opacity: 0.6;
    background: radial-gradient(circle, rgba(0, 133, 255, 0.28) 0%, rgba(0, 133, 255, 0.08) 40%, transparent 70%);
}

.hero__blur--right {
    right: -900px;
    top: -400px;
    opacity: 0.3;
    background: radial-gradient(circle, rgba(0, 133, 255, 0.2) 0%, rgba(0, 133, 255, 0.05) 40%, transparent 70%);
}

.fbutton input#downloadSubmit {
    font-family: 'ZohoPuvi';
    display: block;
    width: 100% !important;
    min-width: 200px;
    text-align: center;
    background-color: #e9152b !important;
    padding: 12px 4px !important;
    border-radius: 8px !important;
    text-decoration: none;
    margin: 20px auto 0 !important;
    font-weight: 500;
    font-size: 16px !important;
    color: #fff;
}

/* Hero layout */
.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-48);
    position: relative;
    z-index: 1;
}

.hero__content {
    flex: 1 1 626px;
    max-width: 626px;
}

/* Hero partner logos */
.hero__logos {
    display: flex;
    align-items: center;
    gap: var(--sp-20);
    margin-bottom: var(--sp-20);
}

.hero__logo {
    object-fit: contain;
}

.hero__logo--me {
    width: 64px;
    height: 56px;
}

.hero__logo--knox {
    width: auto;
    height: 50px;
}

.hero__plus {
    flex-shrink: 0;
}

/* Hero type */
.hero__title {
    font-size: var(--fs-hero);
    font-weight: 700;
    line-height: normal;
    color: var(--color-black);
    margin-bottom: var(--sp-20);
    max-width: 609px;
}

.hero__subtitle {
    font-size: var(--fs-lg);
    font-weight: 400;
    line-height: 32px;
    color: var(--color-black);
    max-width: 581px;
}

/* Hero Form Card */
.hero__form-card {
    flex: 0 0 424px;
    background: var(--color-white);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-card);
    padding: 30px 40px;
    max-width: 400px;
}

.hero__form-heading {
    font-size: var(--fs-xl);
    font-weight: 600;
    line-height: 23.8px;
    color: var(--color-black);
    margin-bottom: var(--sp-28);
    text-align: center;
}

.hero__form-group {
    margin-bottom: var(--sp-16);
}

.hero__input {
    width: 100%;
    height: 45px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--r-sm);
    padding: 0 13px;
    font-family: var(--ff);
    font-size: var(--fs-lg);
    color: var(--color-black);
    outline: none;
    transition: border-color 0.2s;
}

.hero__input::placeholder {
    color: var(--color-gray-500);
}

.hero__input:focus {
    border-color: var(--color-primary);
}

/* Select wrapper */
.hero__select-wrap {
    position: relative;
}

.hero__select {
    width: 100%;
    height: 45px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--r-sm);
    padding: 0 40px 0 12px;
    font-family: var(--ff);
    font-size: var(--fs-lg);
    color: var(--color-black);
    background: var(--color-white);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.hero__select:focus {
    border-color: var(--color-primary);
}

.hero__select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5.74px solid transparent;
    border-right: 5.74px solid transparent;
    border-top: 5.74px solid var(--color-black);
    pointer-events: none;
}

/* Disclaimer */
.hero__form-disclaimer {
    font-size: var(--fs-xs);
    font-weight: 400;
    line-height: 22px;
    color: var(--color-black);
    margin-bottom: var(--sp-28);
}

.hero__form-link {
    color: var(--color-primary);
    text-decoration: underline;
}

.hero__form-link:hover {
    text-decoration: none;
}

/* Submit button */
.hero__form-btn {
    display: block;
    width: 100%;
    height: 50px;
    background: var(--color-cta-red);
    color: var(--color-white);
    border: none;
    border-radius: var(--r-sm);
    font-family: var(--ff);
    font-size: var(--fs-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.hero__form-btn:hover {
    background: var(--color-cta-red-hover);
}

.hero__form-btn:focus-visible {
    outline: 2px solid var(--color-cta-red);
    outline-offset: 2px;
}

#meGDPRMessage input {
    float: left;
    margin: 0 5px 0 0 !important;
    width: auto !important;
}

div#formCTAgdpr,
div[data-clickgdpr="formCTAgdpr"] {
    margin: 10px auto 0;
    max-width: 90%;
    color: #999;
    font-weight: 500;
}

div#formCTAgdpr a,
div a[data-clickgdpr="formCTAgdpr"] {
    color: #138cd6;
}

/* =============================================================
   SECTION 2: CLIENT LOGOS
   ============================================================= */
.clients {
    background: var(--color-white);
    padding: var(--sp-24) 0;
}

.clients .container {
    max-width: 1440px;
}

.clients__inner {
    display: flex;
    align-items: center;
    gap: var(--sp-48);
}

.clients__text p {
    font-size: var(--fs-md);
    font-weight: 500;
    line-height: 25px;
    white-space: nowrap;
}

.clients__logos {
    display: flex;
    align-items: center;
    gap: var(--sp-48);
    flex-wrap: wrap;
}

.clients__logo {
    height: 33px;
    width: auto;
    object-fit: contain;
}

.clients__logo--tall {
    height: 39px;
}

.clients__logo--xl {
    height: 45px;
}


/* =============================================================
   SECTION 3: RECOGNITION
   ============================================================= */
.recognition {
    background: var(--color-white);
    padding: var(--sp-24) 0 var(--sp-48);
}

.recognition__divider {
    position: relative;
    text-align: center;
    margin-bottom: var(--sp-32);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recognition__line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(to right,
            rgba(215, 215, 215, 0.4) 0%,
            #d7d7d7 50%,
            rgba(215, 215, 215, 0.4) 100%);
}

.recognition__label {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: var(--color-white);
    border: 1px solid var(--color-border-section);
    border-radius: var(--r-xl);
    padding: 5px 40px;
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 27.2px;
}

.recognition__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.recognition__logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.recognition__logo--md {
    height: 39px;
}

.recognition__logo--lg {
    height: 69px;
}

.recognition__logo--xl {
    height: 60px;
}


/* =============================================================
   SECTION 4: KNOX VALIDATED INFO CARD
   ============================================================= */
.validated {
    background: var(--color-white);
    padding: var(--sp-40) 0;
}

.validated__card {
    background: var(--color-white);
    border: 1px solid var(--color-border-card);
    border-radius: var(--r-xl);
    padding: var(--sp-40) 111px;
    text-align: center;
    max-width: 1160px;
    margin: 0 auto;
}

.validated__title {
    font-size: var(--fs-3xl);
    font-weight: 700;
    line-height: 50.5px;
    color: var(--color-black);
    margin-bottom: var(--sp-10);
}

.validated__text {
    font-size: var(--fs-md);
    font-weight: 400;
    line-height: 27.2px;
    color: var(--color-black);
    max-width: 938px;
    margin: 0 auto;
}


/* =============================================================
   SECTION 5: BENEFITS (Why this matters)
   ============================================================= */
.benefits {
    background: var(--color-white);
    padding: var(--sp-60) 0 var(--sp-40);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-24);
}

.benefits__card {
    background: var(--color-bg-hero);
    border-radius: var(--r-lg);
    padding: var(--sp-28);
    min-height: 223px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    position: relative;
}

.benefits__icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: var(--sp-20);
}

.benefits__card-title {
    font-size: var(--fs-2xl);
    font-weight: 600;
    line-height: 36px;
    color: var(--color-black);
    margin-bottom: var(--sp-8);
}

.benefits__card-text {
    font-size: var(--fs-md);
    font-weight: 400;
    line-height: 27px;
    color: var(--color-black);
}


/* =============================================================
   SECTION 6: FEATURES
   ============================================================= */
.features {
    background: var(--color-white);
    padding: var(--sp-40) 0 var(--sp-60);
}

.features .section-heading {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--sp-20);
}

/* Category pill bar */
.features__tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-gray);
    border-radius: var(--r-pill);
    padding: 0 53px;
    height: 62px;
    gap: var(--sp-30);
    margin: 0 auto var(--sp-40);
    width: fit-content;
}

.features__tab {
    display: flex;
    align-items: center;
    gap: var(--sp-14);
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--ff);
}

.features__tab span {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--color-black);
}

.features__tab-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.features__tab-arrow {
    display: flex;
    align-items: center;
    color: var(--color-gray-400);
    line-height: 1;
}

/* Feature grid */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
}

.features__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.features__card-icon {
    width: 49px;
    height: 49px;
    object-fit: contain;
    margin-bottom: var(--sp-14);
}

.features__card-title {
    font-size: var(--fs-2xl);
    font-weight: 600;
    line-height: 36px;
    color: var(--color-black);
    margin-bottom: var(--sp-8);
}

.features__card-text {
    font-size: var(--fs-md);
    font-weight: 400;
    line-height: 27.2px;
    color: var(--color-black);
}


/* =============================================================
   SECTION 7: CTA BANNER
   ============================================================= */
.cta-banner {
    background: var(--color-white);
    padding: var(--sp-40) 0;
}


.cta-banner__card {
    background: var(--color-bg-light);
    border-radius: var(--r-2xl);
    height: 277px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-banner__content {
    position: relative;
    z-index: 3;
    padding: 40px 0 40px 77px;
    max-width: 669px;
}

.cta-banner__title {
    font-size: var(--fs-3xl);
    font-weight: 700;
    line-height: normal;
    color: var(--color-black);
    max-width: 543px;
    margin-bottom: var(--sp-4);
    text-align: left;
}

.cta-banner__subtitle {
    font-size: var(--fs-md);
    font-weight: 400;
    line-height: 27.2px;
    color: var(--color-black);
    margin-bottom: var(--sp-20);
}

/* Visual side */
.cta-banner__visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 564px;
}

.cta-banner__img {
    position: absolute;
    right: -1px;
    top: calc(50% + 68px);
    transform: translateY(-50%);
    width: 564px;
    height: 589px;
    max-width: none;
    object-fit: cover;
    z-index: 1;
}

.cta-banner .container {
    padding: 0px;
}

.cta-banner__gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 243px;
    background: linear-gradient(to right,
            var(--color-bg-light) 5.556%,
            rgba(244, 249, 255, 0.88) 30.075%,
            rgba(244, 252, 255, 0) 100%);
    z-index: 2;
}


/* =============================================================
   SECTION 8: HOW IT WORKS
   ============================================================= */
.how-it-works {
    background: var(--color-white);
    padding: var(--sp-60) 0;
}

.how-it-works .section-heading {
    margin-bottom: var(--sp-10);
}

/* Steps layout */
.steps {
    display: flex;
    align-items: flex-end;
    gap: var(--sp-40);
}

.steps__box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 109px;
    flex: 0 1 auto;
}

.steps__content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-16);
    width: 267px;
    position: relative;
    z-index: 1;
}

.steps__icon-wrap {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps__icon {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.steps__title {
    font-size: var(--fs-2xl);
    font-weight: 600;
    line-height: 36px;
    color: var(--color-black);
}

.steps__text {
    font-size: var(--fs-md);
    font-weight: 400;
    line-height: 27.2px;
    color: var(--color-black);
    max-width: 267px;
}

/* Shape separator */
.steps__shape {
    position: absolute;
    left: 84px;
    top: 42px;
    z-index: 0;
    width: 245px;
    height: 258px;
    object-fit: contain;
    pointer-events: none;
}

.steps__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-top: 75px;
}

.steps__box--last .steps__shape {
    left: 97px;
    top: 42px;
}


/* =============================================================
   SECTION 9: DARK CTA
   ============================================================= */
.dark-cta {
    background: var(--color-bg-dark);
    padding: var(--sp-80) 0;
    text-align: center;
}

.dark-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-12);
}

.dark-cta__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-20);
    margin-bottom: 0;
}

.dark-cta__circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-cta__logo {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.dark-cta__plus {
    flex-shrink: 0;
}

.dark-cta__title {
    font-size: var(--fs-4xl);
    font-weight: 600;
    line-height: 57.8px;
    color: var(--color-white);
}

.dark-cta .btn--red {
    margin-top: var(--sp-8);
}


/* =============================================================
   FOOTER
   ============================================================= */
.footer {
    background: var(--color-bg-footer);
    padding: var(--sp-32) 0 var(--sp-24);
}

.footer .container {
    max-width: 1440px;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: var(--sp-16);
}

.footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-24);
    flex-wrap: wrap;
}

.footer__links a {
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--color-white);
}

.footer__links a:focus-visible {
    outline: 1px solid var(--color-white);
    outline-offset: 2px;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-12);
}

.footer__bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-24);
    flex-wrap: wrap;
}

.footer__bottom-links a {
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
    transition: color 0.2s;
}

.footer__bottom-links a:hover {
    color: var(--color-white);
}

.footer__email-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #66bb6a;
    border: 1px solid #66bb6a;
    border-radius: 14px;
    padding: 3px 12px;
    font-size: 12px;
    transition: background 0.2s;
}

.footer__email-btn:hover {
    background: rgba(102, 187, 106, 0.1);
    color: #66bb6a;
}

.footer__copyright {
    font-size: 12px;
    font-weight: 400;
    color: #777;
    text-align: center;
}


/* =============================================================
   RESPONSIVE â€“ Tablet (481px â€“ 1024px)
   ============================================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--sp-32);
    }

    /* Navbar */
    .navbar__links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--color-white);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        padding: var(--sp-16);
        border-radius: 0 0 var(--r-lg) var(--r-lg);
        gap: var(--sp-16);
        min-width: 200px;
        z-index: 200;
    }

    .navbar__links.is-open {
        display: flex;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__bottom-inner {
        position: relative;
    }

    /* Hero */
    .hero {
        padding: 0px 0 60px;
    }

    .hero__inner {
        flex-direction: column;
        gap: var(--sp-40);
    }

    .hero__content {
        max-width: 100%;
        flex: 1;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__form-card {
        flex: 1;
        max-width: 480px;
        width: 100%;
    }

    /* Benefits */
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Features */
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA Banner */
    .cta-banner__card {
        height: auto;
        flex-direction: column;
    }

    .cta-banner__content {
        padding: var(--sp-40);
        max-width: 100%;
    }

    .cta-banner__title {
        max-width: 100%;
    }

    .cta-banner__visual {
        display: none;
    }

    /* Steps */
    .steps {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-40);
    }

    .steps__box {
        flex-direction: column;
        gap: var(--sp-20);
        align-items: flex-start;
    }

    .steps__shape {
        display: none;
    }

    .steps__arrow {
        display: none;
    }

    .steps__content {
        width: 100%;
    }

    /* Validated card */
    .validated__card {
        padding: var(--sp-40);
    }

    /* Recognition */
    .recognition__logos {
        gap: var(--sp-40);
    }
}


/* =============================================================
   RESPONSIVE â€“ Mobile (<= 480px)
   ============================================================= */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--sp-16);
    }

    /* Hero */
    .hero {
        padding: 0px 0 40px;
    }

    .hero__title {
        font-size: 30px;
    }

    .hero__subtitle {
        font-size: var(--fs-base);
        line-height: 26px;
    }

    .hero__form-card {
        flex: 1;
        max-width: 100%;
        padding: var(--sp-24) var(--sp-20);
    }

    .hero__form-heading {
        font-size: var(--fs-lg);
    }

    /* Section headings */
    .section-heading {
        font-size: 26px;
        line-height: 36px;
    }

    /* Clients */
    .clients__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-16);
    }

    .clients__text p {
        white-space: normal;
    }

    .clients__logos {
        gap: var(--sp-20);
    }

    /* Benefits */
    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .benefits__card {
        min-height: auto;
    }

    /* Features */
    .features__tabs {
        padding: var(--sp-14) var(--sp-24);
        height: auto;
        flex-wrap: wrap;
        gap: var(--sp-16);
    }

    .features__tab-icon {
        width: 26px;
        height: 26px;
    }

    .features__tab span {
        font-size: var(--fs-base);
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: var(--sp-32);
    }

    /* CTA Banner */
    .cta-banner__content {
        padding: var(--sp-28) var(--sp-20);
    }

    .cta-banner__title {
        font-size: 28px;
    }

    /* Validated */
    .validated__card {
        padding: var(--sp-28) var(--sp-20);
    }

    .validated__title {
        font-size: 26px;
        line-height: 36px;
    }

    .validated__text {
        font-size: var(--fs-base);
    }

    /* Recognition */
    .recognition__logos {
        gap: var(--sp-24);
    }

    .recognition__logo--xl {
        height: 45px;
    }

    .recognition__logo--lg {
        height: 50px;
    }

    /* Dark CTA */
    .dark-cta {
        padding: var(--sp-48) 0;
    }

    .dark-cta__title {
        font-size: 28px;
        line-height: 38px;
    }

    .dark-cta__circle {
        width: 60px;
        height: 60px;
    }

    /* Footer */
    .footer__links {
        gap: var(--sp-12) var(--sp-20);
    }

    .footer__bottom-links {
        gap: var(--sp-12) var(--sp-16);
    }

    .allFeaPage.menu .prdmenu {
        display: none;
    }

    .edi-btn inputgroup input {
        width: 100% !important;
    }
}


/* =============================================================
   FOCUS STYLES (Accessibility)
   ============================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.logos-wrapper {
    width: 794px;
    position: relative;
    overflow: hidden;
    min-height: 62px;
}

.logos-wrapper::before {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    width: 50px;
    height: 62px;
    left: 0px;
}

.logos-wrapper::after {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 100%);
    width: 80px;
    height: 62px;
    right: 0px;
}

.logos-wrapper .logos-list {
    padding: 10px;
    display: flex;
    gap: 70px;
    animation: 50s linear 0s infinite normal none running marquee-item-bottom1;
    position: absolute;
    left: 0px;
    top: 2px;
}

.logos-wrapper .logos-list:nth-child(2) {
    top: 0px;
    animation: 50s linear 0s infinite normal none running marquee-item-bottom2;
    left: -60px;
}

@keyframes marquee-item-bottom1 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes marquee-item-bottom2 {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.logos-wrapper ul.logos {
    display: flex;
    gap: 60px;
    margin: auto;
    flex-wrap: nowrap;
    max-width: unset;
    align-items: center;
    justify-content: unset;
    float: left;
}

.logos-wrapper ul.logos li img {
    max-height: 42px;
    max-width: 185px;
}

div#commonHeader {
    display: none;
}

.allFeaPage.menu {
    padding: 0;
    background-color: #fff;
    box-shadow: 0px 0px 5px var(--box-shadow);
    z-index: 1;
    position: relative;
}

.allFeaPage.menu .flex {
    display: flex;
    width: 85%;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    padding: 20px 0px;
    align-items: center;
}

.allFeaPage.menu .prdlogo img {
    width: auto;
    max-height: 50px;
}

.allFeaPage.menu .prdmenu a {
    color: var(--text-light-color);
    text-decoration: none;
    padding: 4px 10px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;
}

.allFeaPage.menu .prdmenu {
    display: inline-flex;
    grid-gap: 20px;
}

.allFeaPage.menu .prdmenu a.spl {
    background-color: #eb152b;
    font-weight: 500;
    padding: 8px 24px;
}

@media screen and (max-width: 767px) {
    .logos-wrapper {
        width: 100%;
    }
}