/* =========================================
   RESET & VARIABLES
   ========================================= */

html {
    scroll-behavior: smooth;
}

   :root {
    /* Colors */
    --PrimaryColor: #1F6BFF;
    --PrimaryColor-hover: #1d4ed8;
    --Dark: #0F172A;
    --Darker: #020617;
    --BlackColor: #000;
    --Slate: #525252;
    --Light: #F8FAFC;
    --WhiteColor: #FFFFFF;
    --border: #E2E8F0;

    /* Typography */
    --font-sans: 'Inter', sans-serif;

    /* Spacing */
    --wrap-width: 1280px;
    --section-pad: 5rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--Dark);
    line-height: 1.5;
    background-color: var(--WhiteColor);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}



.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
    color: var(--BlackColor);
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

.same-heading h3 {
    color: var(--BlackColor);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #545454;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.7;
}




.bg-gray {
    background: #F4F4F4;
}

.max-wid-50 {
    width: 100%;
    max-width: 50%;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center .max-wid-50 {
    margin: 0 auto;
}

.same-heading.white-text :is(h2, p) {
    color: var(--WhiteColor);
}

.same-section .section-bottom-btn {
    margin-top: 1.5rem;
}

.section-bottom-btn {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.section-bottom-btn.text-center {
    justify-content: center;
}


/* =========================================
   UTILITIES
   ========================================= */
@media (min-width: 1199px) {
    .container {
        max-width: var(--wrap-width);

    }
}


p {
    color: var(--Slate);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.7rem;
    border-radius: 9999px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    /* Animation Properties */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

/* Shine Effect */
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    transition: all 0.5s;
    z-index: 2;
    pointer-events: none;
}

.btn:hover::after {
    left: 130%;
    transition: all 0.5s;
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
}

.btn-primary:hover {
    background: var(--PrimaryColor-hover);
}

.btn-secondary {
    background: #333333;
    color: var(--WhiteColor);
}

.btn-secondary:hover {
    background: #333333;
}

.btn-outline {
    background: transparent;
    border-color: #BABABA;
    color: #BABABA;
}

.btn-outline:hover {
    border-color: #727272;
    background: var(--WhiteColor);
    color: #727272;
}

.btn-white {
    background: var(--WhiteColor);
    color: var(--PrimaryColor);
}

.btn-white:hover {
    background: #f1f5f9;
}

.btn-dark {
    background: var(--Dark);
    color: var(--WhiteColor);
}

.btn-dark:hover {
    background: #334155;
}

/* =========================================
   1. NAVBAR
   ========================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    /* background: rgba(255, 255, 255, 0.95); */
    backdrop-filter: blur(8px);
    /* border-bottom: 1px solid var(--border); */
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.headerfix {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
}

.header .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    border: none;
    gap: 2.2rem;
}



.header .nav-links a:not(.btn) {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--Slate);
    padding: 0.5rem 0;
}

.header .nav-links a:hover {
    color: var(--PrimaryColor);
}

.header .mobile-toggle {
    display: none;
}


.header .nav-actions.active {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 360px;
    /* Rough positioning adjustment */
    z-index: 101;
}

.header .mobile-toggle {
    font-size: 1.5rem;
    color: var(--Dark);
    background: none;
    border: none;
    cursor: pointer;
}

/* =========================================
   2. HERO
   ========================================= */


.hero {
    padding: 7rem 0 3rem;
    position: relative;
    margin-top: -80px;
    border-bottom: solid 1px #D9D9D9;
}

.hero::before {
    background: radial-gradient(circle, var(--PrimaryColor), #0000 70%);
    height: 42rem;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 42rem;
    content: "";
    filter: blur(15rem);
    position: absolute;
    z-index: -1;
}

.hero .hero-content h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--BlackColor);
}

.hero .hero-text {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 32rem;
    margin-bottom: 2rem;
    color: #545454;
}

/* Feature Boxes */
.hero .hero-features {
    display: flex;
    gap: 0.3rem;
    max-width: 25rem;
    background: #ffffff4f;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    justify-content: space-between;
    padding: 0.5rem 0.4rem;
    margin-top: 2rem;
}

.hero .feature-box {
    padding: 0 0.3rem;
    flex: 1;
    border-right: solid 1px #0000001f;
}

.hero .feature-box:last-child {
    border-right: none;
}

.hero .feature-box .feature-title {
    font-size: 0.85rem;
    line-height: normal;
    color: var(--BlackColor);
    font-weight: 600;
}

.hero .feature-box .feature-text {
    font-size: 0.6rem;
    line-height: normal;
    color: #787878;
    margin-top: 1px;
}



.hero .hero-media {
    position: relative;
}

.hero .float-card {
    position: absolute;
    width: 100%;
    max-width: 270px;
    background: #FAFAFA;
    padding: 1rem 1.5rem;
    border-radius: 22px;
    animation: bounce 3s infinite ease-in-out;
}

.hero .float-card.analytics-card {
    text-align: center;
    width: 100%;
    max-width: max-content;
    position: absolute;
    top: 6rem;
    right: 16rem;
}

.hero .float-card.deposit-card {
    bottom: 0;
    right: 1rem;

}

.hero .float-card h4 {
    font-size: 0.9rem;
    color: var(--BlackColor);
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: normal;
}

.hero .float-card p {
    font-size: 0.65rem;
    color: #8C8C8C;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

.hero .float-card .float-card-title {
    color: #8F8F8F;
    font-size: 0.65rem;
    line-height: normal;
    margin-bottom: 0.3rem;
}

.hero .float-card .float-card-text {
    font-size: 1.2em;
    line-height: 1.5;
    color: var(--BlackColor);
    font-weight: 600;
}

.hero .progress {
    height: 8px;
    border-radius: 50px;
    width: 100%;
    max-width: 30%;
    margin: 0.3rem 0 0.5rem;
}

.hero .float-card .progress-bar {
    background: #159D4B;
}

.hero .float-card .positive {
    color: #159D4B;
}


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}



/* Cards */
.ops-platform .ops-badge {
    background: var(--WhiteColor);
    color: #626262;
    padding: 0.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 400;
    width: 100%;
    max-width: 13rem;
    margin: 0 auto 1rem;
}

.ops-platform .ops-card {
    background: var(--WhiteColor);
    padding: 1.8rem;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ops-platform .ops-card:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}

.ops-platform .ops-card svg {
    width: 2rem;
    height: 2rem;
    color: var(--PrimaryColor);
    margin-bottom: 1.2rem;
}

.ops-platform .ops-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.ops-platform .ops-card p {
    font-size: 0.8rem;
    color: #545454;
    line-height: 1.7;
    width: 100%;
    max-width: 80%;
    margin-bottom: 0.5rem;
}


.elevating-section {
    background: url(../images/elevating-bg.jpg)no-repeat top center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.elevating-section .title-medium {
    font-weight: 500;
    font-size: 1rem;
}





/* Service Card */
.core-services {

    border-bottom: solid 1px #D9D9D9;
}


.core-services .same-heading {
    margin-bottom: 6rem;
}

.core-services .service-card {
    padding: 1rem 0.5rem;
}

.core-services .icon-wrap {
    width: 3rem;
    height: 3rem;
    margin: 0 0 1.2rem;
    border-radius: 1rem;
    background: #E8F0FF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-services .icon-wrap svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--PrimaryColor);
}

.core-services .service-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.core-services .service-card p {
    font-size: 0.8rem;
    color: #545454;
    line-height: 1.7;
    width: 100%;
    max-width: 80%;
    margin-bottom: 0.5rem;
}




/* Card */
.business-solutions {
    border-bottom: solid 1px #D9D9D9;
}

.business-solutions .solution-card {
    background: var(--WhiteColor);
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    border: solid 1px #F3F3F3;
}

/* Icon */
.business-solutions .icon-wrap {
    width: 3rem;
    height: 3rem;
    margin: 0 0 1.2rem;
    background: #E8F0FF;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.business-solutions .icon-wrap svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--PrimaryColor);
}

/* Text */
.business-solutions .solution-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #000;
}

.business-solutions .solution-desc {
    font-size: 0.8rem;
    color: #545454;
    line-height: 1.7;
    width: 100%;
    max-width: 80%;
    margin-bottom: 0.5rem;

}

.dot-list li {
    padding: 0.5rem 0.5rem 0.5rem 1.3rem;
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--BlackColor);
    position: relative;

}

.dot-list li:before {
    width: 5px;
    height: 5px;
    border-radius: 50px;
    background: var(--PrimaryColor);
    content: '';
    position: absolute;
    left: 0;
    top: 0.89rem;

}

/* Digital Approach */

.digital-approach .approach-card {
    background: var(--WhiteColor);
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    border: solid 1px #F3F3F3;
}

/* Icon */
.digital-approach .icon-wrap {
    width: 3rem;
    height: 3rem;
    margin: 0 0 1.2rem;
    background: #E8F0FF;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.digital-approach .icon-wrap svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--PrimaryColor);
}

/* Text */
.digital-approach .approach-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #000;
}

.digital-approach .approach-card p {
    font-size: 0.8rem;
    color: #545454;
    line-height: 1.7;
    margin-bottom: 0;
}

.demo-cta .same-heading {
    padding: 4rem 2rem;
    border-radius: 1.25rem;
    /* Layered gradient: radial + linear */
    background:
        /* Left Bottom – Blue */
        radial-gradient(18rem 18rem at 10% 100%,
            rgba(29, 106, 255, 0.40) 0%,
            rgba(29, 106, 255, 0.20) 40%,
            rgba(0, 0, 0, 0) 70%),

        /* Left Top – Orange */
        radial-gradient(18rem 18rem at 34% 30%,
            rgba(255, 176, 49, 0.20) 0%,
            rgba(255, 176, 49, 0.10) 40%,
            rgba(0, 0, 0, 0) 70%),

        /* Right Top – Orange */
        radial-gradient(18rem 18rem at 94% 19%,
            rgba(255, 176, 49, 0.40) 0%,
            rgba(255, 176, 49, 0.20) 40%,
            rgba(0, 0, 0, 0) 70%),

        /* Right Bottom – Blue */
        radial-gradient(18rem 18rem at 70% 100%,
            rgba(29, 106, 255, 0.40) 0%,
            rgba(29, 106, 255, 0.20) 40%,
            rgba(0, 0, 0, 0) 70%),

        /* Base dark layer */
        linear-gradient(90deg,
            #050d1f 0%,
            #071a3f 40%,
            #0b2a66 65%,
            #071a3f 100%);
    color: #ffffff;
}

.demo-cta .same-heading p {
    font-weight: 300;
}


.security-workflow {
    position: relative;
    border-bottom: solid 1px #EFEFEF;
}

.security-workflow::before {
    background: radial-gradient(circle, var(--PrimaryColor));
    height: 42rem;
    left: 70%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 42rem;
    content: "";
    filter: blur(15rem);
    position: absolute;
    z-index: -1;
    opacity: 0.15;
}

.security-workflow .same-heading {
    margin-bottom: 3rem;
}

.security-workflow .security-card .icon-wrap {
    width: 3rem;
    height: 3rem;
    margin: 0 0 1.2rem;
    background: #E8F0FF;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.security-workflow .security-card .icon-wrap svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--PrimaryColor);
}

.security-workflow .security-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #000;
}

.security-workflow .security-card p {
    font-size: 0.8rem;
    color: #545454;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}



/* Box */
.middle-radial-gradient {
    position: relative;
}


.middle-radial-gradient:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, var(--PrimaryColor));
    filter: blur(15rem);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.15;
}

.consultation-section .consultation-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.consultation-section .consultation-box:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);

    width: 0.0625rem;
    height: 100%;

    background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 58%) 40%, rgba(0, 0, 0, 0) 80%)
}

/* Form */
.consultation-section .form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.4rem;
}

.consultation-section .form-group {
    margin-bottom: 1.2rem;
}

.consultation-section .form-control {
    font-size: 0.85rem;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    font-weight: 300;
    border: 1px solid #E6E6E6;
}

.consultation-section .form-control:focus {
    border-color: var(--PrimaryColor);
    outline: none !important;
    box-shadow: none !important;
}

.consultation-section .form-control::placeholder {
    color: #C9C9C9;
    font-size: 0.8rem;
}

/* Button */
.consultation-section .btn-secondary {
    background: #111111;
    margin: 2rem 0 0 auto;
}

/* Right Info */

.consultation-section .consultation-info h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--BlackColor);
    margin-bottom: 0.8rem;
}

.consultation-section .consultation-info .dot-list li {
    color: #4E4B4B;
    padding: 0.2rem 0.2rem 0.2rem 1.2rem;
    font-size: 0.8rem;
}

.consultation-section .consultation-info .dot-list li:before {
    top: 0.6rem;
}

.consultation-section .consultation-info .contact-box {
    margin-top: 2rem;
}

.consultation-section .consultation-info .contact-box p {
    font-size: 0.8rem;
    color: #4E4B4B;
    margin-bottom: 0.5rem;
}

.consultation-section .consultation-info .contact-box p a {
    font-weight: 600;
}







/* Card */
.pricing-section {
    border-bottom: solid 1px #EFEFEF;
}

.pricing-section .pricing-card {
    background: #F4F4F4;
    border: solid 1px #F3F3F3;
    padding: 2rem;
    border-radius: 20px;
    height: 100%;
    text-align: left;
    transition: all .2s ease;
}

.pricing-section .pricing-card .pricing-top-title {
    border-bottom: solid 1px #ECECEC;
    margin-bottom: 1.3rem;
    padding-bottom: 1.3rem;
}

.pricing-section .pricing-card .plan-name {
    font-size: 0.9rem;
    color: #545454;
    font-weight: 600;
    display: block;
    margin-bottom: 0.6rem;
}

.pricing-section .pricing-card .price {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #000;
}

.pricing-section .pricing-card .note {
    font-size: 0.8rem;
    color: #545454;
    display: block;

}

.pricing-section .pricing-middle-content {
    min-height: 9.5rem;
}

.pricing-section .pricing-card .btn-white {
    color: #133D8E;
}


/* Buttons */
.pricing-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}



/* Featured Card */
.pricing-section .pricing-card:hover {
    color: #ffffff;
    background:
        radial-gradient(35rem 20rem at 20% 80%,
            rgba(29, 106, 255, 0.40) 0%,
            rgba(29, 106, 255, 0.20) 40%,
            rgba(0, 0, 0, 0) 70%),
        radial-gradient(32rem 18rem at 80% 20%,
            rgba(255, 176, 49, 0.40) 0%,
            rgba(255, 176, 49, 0.20) 40%,
            rgba(0, 0, 0, 0) 70%),
        #050d1f;
}

.pricing-section .pricing-card:hover .price,
.pricing-section .pricing-card:hover .plan-name,
.pricing-section .pricing-card:hover .note,
.pricing-section .pricing-card:hover li {
    color: #ffffff;
}

.pricing-section .pricing-card:hover .pricing-top-title {
    border-color: #ececec29;
}

.pricing-section .pricing-card:hover .btn {
    color: #133D8E;
    background: var(--WhiteColor);
    border-color: var(--WhiteColor);
}


/* ===============================
   FOOTER SECTION
================================ */

.site-footer {
    background: #000000;
    padding: 5rem 0 0;
    color: #ffffff;
}

/* Brand */
.site-footer .brand-logo {
    width: 100%;
    max-width: 36%;
    margin-bottom: 0.9rem;
}



.site-footer .brand-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: #AFAFAF;
    line-height: 1.7;
    max-width: 22rem;
}

/* Links */
.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links .title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #ffffff;
}

.site-footer .footer-links li {
    padding: 0.8rem 0;
}

.site-footer .footer-links li a {
    font-size: 0.85rem;
    color: #B3B3B3;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.site-footer .footer-links li a:hover {
    color: #ffffff;
}


/* Bottom */
.site-footer .footer-bottom {
    padding: 1.3rem 0;
    margin-top: 2rem;
    border-top: solid 1px #2A2A2A;
    font-size: 0.75rem;
    color: var(--WhiteColor);
}



.Downloads{    background: #f6f6f6;}
.Downloads__hero {
	background: var(--PrimaryColor);
	padding: 6.25rem 0;
	color: #fff;
	position: relative;
	overflow: hidden
}

.Downloads__hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .3);
	z-index: 1
}

.Downloads__hero__content {
	position: relative;
	z-index: 2
}

.Downloads__hero__title {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	line-height: 1.2;    color: #fff;
}

.Downloads__hero__subtitle {
	font-size: 1rem;
	opacity: .9;
	line-height: 1.5;    color: #fff;
}

.Downloads__content {
	padding: 5rem 0
}

.Downloads__section {
	margin-bottom: 5rem
}

.Downloads__section:last-child {
	margin-bottom: 0
}

.Downloads__section__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 3rem;
	gap: 1rem
}

.Downloads__section__icon {
	width: 2rem;
	height: 2rem;
	object-fit: contain
}

.Downloads__section__title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--blackColor);
	margin: 0
}

.Downloads__section__subtitle {
	font-size: 1.6rem;
	font-weight: 300;
	text-align: left;
	margin: 2rem 0;
	color: var(--blackColor);
	position: relative;
	padding: .5rem 0 .5em 2.5rem
}

.Downloads__section__subtitle::before {
	content: "";
	position: absolute;
	top: 47%;
	left: 0;
	height: 1px;
	width: 2.2rem;
	background: #000;
	z-index: 1
}

.Downloads__section__subtitle::after {
	content: attr(data-text);
	position: relative;
	background: #f6f6f6;
	z-index: 2;
	display: inline-block
}

.Downloads__subsection {
	margin-bottom: 4rem
}

.Downloads__subsection:last-child {
	margin-bottom: 0
}

.Downloads__subsection__title {
	font-size: 1.75rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--blackColor);
	position: relative;
	padding: 1rem 0
}

.Downloads__subsection__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2.5rem;
	height: .125rem;
	background: var(--PrimaryColor);
	border-radius: .0625rem
}

.Downloads__separator {
	text-align: center;
	margin: 3rem 0;
	padding: 0 1rem
}

.Downloads__separator__text {
	font-size: 1rem;
	font-weight: 600;
	color: var(--PrimaryColor);
	text-transform: uppercase;
	letter-spacing: .025rem;
	white-space: nowrap
}

.Downloads__app-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center
}

.Downloads__app-card__content-wrapper {
	background: #fff;
	border-radius: .75rem;
	padding: 1.5rem;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1);
	transition: all .3s ease;
	border: .0625rem solid #e5e7eb;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%
}

.Downloads__app-card__content-wrapper:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .15)
}

.Downloads__app-card__content-wrapper--unavailable:hover {
	transform: none;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1)
}

.Downloads__app-card__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1.5rem;
	flex: 1
}

.Downloads__app-card__icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	flex-shrink: 0
}

.Downloads__app-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.Downloads__app-card__icon img[src*=apple-icon],
.Downloads__app-card__icon img[src*=clear-app-store],
.Downloads__app-card__icon img[src*=play-store-icon] {
	filter: brightness(0.7) contrast(1.2)
}

.Downloads__app-card__icon--placeholder {
	background: #e5e7eb;
	border: 1px solid #d1d5db
}

.Downloads__app-card__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%
}

.Downloads__app-card__name {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--blackColor);
	margin-bottom: .5rem;
	line-height: 1.3
}

.Downloads__app-card__description {
	font-size: .875rem;
	color: #6b7280;
	line-height: 1.4;
	margin: 0 0 1rem 0
}

.Downloads__app-card__action {
	text-align: center;
	width: 100%
}

.Downloads__app-card__availability {
	font-size: .875rem;
	color: var(--PrimaryColor);
	margin-bottom: .5rem;
	font-weight: 600
}

.Downloads .download-with-login-btn {
	display: flex;
	align-items: center;
	gap: .5rem
}

.Downloads__download-btn {
	background: #fff;
	color: var(--PrimaryColor);
	border: 1px solid var(--PrimaryColor);
	padding: .5rem 1rem;
	border-radius: .25rem;
	font-size: .875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .3s ease;
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center
}

.Downloads__download-btn:hover {
	background: var(--PrimaryColor);
	color: #fff
}

.Downloads__download-btn:active {
	transform: translateY(0)
}

.Downloads__download-btn:focus {
	outline: none;
	box-shadow: none;
}

.Downloads__download-btn--disabled {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none
}

.Downloads__download-btn--disabled:hover {
	background: #fff;
	color: var(--PrimaryColor);
	transform: none;
	box-shadow: none
}

.Downloads__download-btn--disabled:focus {
	box-shadow: none
}

.Downloads__login-btn {
	background: #fff;
	color: var(--PrimaryColor);
	border: 1px solid var(--PrimaryColor);
	padding: .5rem 1rem;
	border-radius: .25rem;
	font-size: .875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .3s ease;
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center
}

.Downloads__login-btn:hover {
	background: var(--PrimaryColor);
	color: #fff
}

.Downloads__login-btn:active {
	transform: translateY(0)
}

.Downloads__login-btn:focus {
	outline: none;
	box-shadow: 0 0 0 .1875rem var(--PrimaryColorTransparent)
}

.Downloads__login-btn--disabled {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none
}

.Downloads__login-btn--disabled:hover {
	background: #fff;
	color: var(--PrimaryColor);
	transform: none;
	box-shadow: none
}

.Downloads__login-btn--disabled:focus {
	box-shadow: none
}

.Downloads__status {
	display: inline-block;
	font-size: .9rem;
	font-weight: 600;
	padding: .12rem .8rem;
	border-radius: 50px;
	margin-top: 6px
}

.Downloads__status--in-review {
	background-color: #e0e0e0;
	color: #555
}

.Downloads__status--live {
	background-color: #28a745;
	color: #fff
}

.Downloads__featured {
	padding: 5rem 0;
	background: #fff
}

.Downloads__featured .Downloads__featured__title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--blackColor);
	margin: 0 0 3rem;
	text-align: center
}

.Downloads__featured .download-platform-card {
	background: #fff;
	border-radius: .75rem;
	padding: 1.5rem;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1);
	transition: all .3s ease;
	border: .0625rem solid #e5e7eb;
	text-align: center;
	height: 100%
}

.Downloads__featured .iconbx {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: #f6f6f6;
	display: flex;
	align-items: center;
	justify-content: center
}

.Downloads__featured .iconbx img {
	width: 100%;
	max-width: 39%
}

.Downloads__featured h3 {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--blackColor);
	margin-bottom: 1rem;
	line-height: 1.3
}

.Downloads__featured .btn-disable {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none;
	font-size: .9rem;
	padding: .5rem .9375rem;
	border-radius: 10px;
	font-weight: 400
}

@media(max-width: 991px) {
	.Downloads__hero {
		padding: 4rem 0
	}

	.Downloads__hero__title {
		font-size: 2.5rem
	}

	.Downloads__hero__subtitle br {
		display: none
	}

	.Downloads__content {
		padding: 3rem 0
	}

	.Downloads__section {
		margin-bottom: 3rem
	}

	.Downloads__section__title {
		font-size: 2rem
	}

	.Downloads__subsection {
		margin-bottom: 3rem
	}

	.Downloads__subsection__title {
		font-size: 1.5rem;
		margin-bottom: 1.5rem
	}

	.Downloads__separator {
		margin: 2rem 0
	}

	.Downloads__separator__text {
		font-size: .875rem;
		padding: 0 1rem
	}

	.Downloads__app-card__content {
		margin-bottom: 1rem
	}

	.Downloads__app-card__icon {
		width: 4rem;
		height: 4rem;
		margin-right: 1rem
	}

	.Downloads__app-card__icon img {
		width: 100%;
		height: 100%
	}

	.Downloads__app-card__icon img[src*=apple-icon],
	.Downloads__app-card__icon img[src*=clear-app-store],
	.Downloads__app-card__icon img[src*=play-store-icon] {
		filter: brightness(0.7) contrast(1.2)
	}

	.Downloads__app-card__name {
		font-size: 1.125rem
	}

	.Downloads__app-card__content-wrapper {
		padding: 1rem
	}

	.Downloads__section__header {
		margin-bottom: 2rem
	}

	.Downloads__section__subtitle {
		font-size: 1.4rem
	}

	.Downloads__section__subtitle::before {
		width: 1.5rem
	}

	.Downloads__section__subtitle {
		padding-left: 1.8rem;
		margin: 1.5rem 0
	}

	.Downloads__featured {
		padding: 3rem 0
	}

	.Downloads__featured .Downloads__featured__title {
		margin-bottom: 2.5rem;
		font-size: 1.75rem
	}
}

@media(max-width: 576px) {
	.Downloads__hero {
		padding: 3rem 0
	}

	.Downloads__hero__title {
		font-size: 2rem
	}

	.Downloads__section__title {
		font-size: 1.75rem
	}

	.Downloads__section__grid {
		grid-template-columns: 1fr;
		justify-items: center
	}

	.Downloads__subsection__title {
		font-size: 1.25rem
	}
}
