@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Website Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

:root {
    --brand-navy: #001A72;
    --brand-teal: #00AF66;
    --sky-blue: #3B82F6;
    --text-main: #000000;
    --text-muted: #666666;
    --white: #ffffff;
    --bg-off-white: #ffffff;
    --card-radius: 24px;
    --flx-border: rgba(11, 29, 58, .08);

    --flx-ctr-speed-1: 40s;
    --flx-ctr-speed-2: 52s;
    --flx-ctr-speed-3: 44s;
    --flx-ctr-flag-size: 65px;
    --flx-ctr-flag-gap: 16px;
}

body {
    background-color: var(--bg-off-white);
    -webkit-font-smoothing: antialiased;
    /* Clean, slightly cool base */
    max-width: 1900px;
    margin: 0 auto;

}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 175, 102, 0.15);
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.logo {
    height: 50px;
    width: 140px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-teal);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* --- Button Styles for Nav --- */
.btn-link {
    color: var(--brand-navy);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.btn-link:hover {
    transform: translateX(4px);
}

.btn.navy {
    background: var(--brand-teal);
    color: var(--white);
    padding: 0.8rem 1.2rem;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn.navy:hover {
    background: #00d479;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 175, 102, 0.3);
}

/* --- Hamburger Menu --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background-color: var(--brand-teal);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--brand-navy);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 175, 102, 0.15);
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    gap: 25px;
}

.mobile-menu-content a {
    text-decoration: none;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 8px;
    display: block;
}

.mobile-menu-content a:hover,
.mobile-menu-content a.active {
    color: var(--white);
    background: rgba(0, 175, 102, 0.1);
    border-left: 3px solid var(--brand-teal);
    padding-left: 17px;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 175, 102, 0.2);
    align-items: stretch;
}

.mobile-menu-buttons .btn-link {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-buttons .btn-link:hover {
    background: rgba(0, 175, 102, 0.1);
    color: var(--white);
}

.mobile-menu-buttons .btn {
    justify-content: center;
    width: 100%;
    padding: 12px 20px !important;
}


.hero-section {
    position: relative;
    padding: 100px 4% 50px;
    min-height: 100vh;
    /* background-color: #f0f4f8; */
}

.bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-wrap svg {
    width: 100%;
    height: 100%;
    opacity: 0.05;
}


.hero-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(0, 175, 102, 0.12),
            transparent 70%);
    top: -120px;
    right: 0;
    filter: blur(80px);
    z-index: 0;
}

.hero-container {
    display: flex;
    /* padding: 0 8%; */
    align-items: center;
    gap: 40px;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-content .hero-title {
    font-size: 3.3rem;
    font-family: 'ClashDisplay-Semibold', sans-serif;
    /* font-family: 'Poppins', sans-serif; */
    color: var(--text-main);
    color: var(--brand-navy);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
}

/* .hero-content .hero-title span{
    color: var(--brand-teal);
} */

.hero-content .hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: fit-content;
}

.btn-primary {
    background-color: var(--brand-navy);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 26, 114, 0.2);
    /* Soft shadow */
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #001A72;
    transform: translateY(-2px);
    /* Subtle lift on hover */
}

.btn-secondary {
    border: 1px solid var(--brand-teal);
    background-color: var(--white);
    color: var(--brand-teal);
    transition: transform 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 26, 114, 0.2);
}

.proof-sec {
    margin-top: 1rem;
    padding: 1.5rem;

}

.proof-sec p {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 300px;
    margin-bottom: 1rem;
}

.proof-sec p span {
    color: var(--brand-teal);
    font-weight: 700;
    text-decoration: underline;
}

.avatar-container {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: -10px;
    border: 2px solid var(--white);
    background-color: var(--brand-navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    object-fit: cover;
    object-position: center;
}


.hero-right {
    flex: 1;
    position: relative;
    height: 600px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10h10v10H10zM40 40h10v10H40z' fill='%23f0f0f0'/%3E%3Ccircle cx='80' cy='20' r='5' fill='%23f0f0f0'/%3E%3Cpath d='M20 80l5-5 5 5-5 5z' fill='%23f0f0f0'/%3E%3C/svg%3E");
    background-size: 150px;
}

.card-stack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 480px;
}

.card {
    position: absolute;
    width: 260px;
    height: 400px;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card-1 {
    background: #374151;
    transform: rotate(10deg) translate(40px, 40px);
    z-index: 1;
}

.card-2 {
    background: #d1d5db;
    transform: rotate(5deg) translate(20px, 20px);
    z-index: 2;
}

.card-3 {
    background: var(--brand-navy);
    transform: rotate(0deg);
    z-index: 3;
    color: white;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.card-logo {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.card-wifi {
    text-align: right;
    font-size: 20px;
}

.card-chip {
    width: 45px;
    height: 35px;
    background: #f3c26b;
    border-radius: 6px;
    margin-top: auto;
}

.card-holder {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    opacity: 0.9;
    letter-spacing: 3px;
}

.mastercard-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: -30px;
}

.mc-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.mc-red {
    background: #eb001b;
    margin-right: -10px;
}

.mc-yellow {
    background: #f79e1b;
    opacity: 0.9;
}


/* Show hamburger on tablet and mobile */
@media (max-width: 992px) {
    nav {
        padding: 0 4%;
    }

    .logo {
        height: 45px;
        width: 120px;
    }

    .nav-links {
        display: none;
    }

    .nav-right .btn-link,
    .nav-right .btn.navy {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* Tablet Devices (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    nav {
        padding: 0 3%;
    }

    .hero-content .hero-title {
        font-size: 2.5rem;
    }

    .hero-container {
        flex-direction: column;
        gap: 20px;
    }

    .hero-right {
        width: 100%;
        height: 400px;
    }

    .hero-section {
        padding: 120px 3% 50px;
    }
}

/* Mobile Devices (below 768px) */
@media (max-width: 767px) {
    nav {
        padding: 0 3%;
        height: 70px;
    }

    .logo {
        height: 40px;
        width: 110px;
    }

    .mobile-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .mobile-menu-content {
        padding: 30px 15px;
        gap: 20px;
    }

    .mobile-menu-content a {
        font-size: 1.1rem;
        padding: 10px 15px;
    }

    .hero-section {
        padding: 110px 3% 50px;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        gap: 0;
    }

    .hero-content .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
        white-space: normal;
    }

    .hero-content .hero-description {
        font-size: 1rem;
    }

    .hero-right {
        width: 100%;
        height: 350px;
        margin-top: 30px;
    }

    .card-stack {
        width: 260px;
        height: 380px;
    }

    .card {
        width: 220px;
        height: 320px;
    }

    .container {
        padding: 40px 20px;
    }

    .proof-sec {
        margin-top: 2rem;
        padding: 1.2rem;
    }

    .proof-sec p {
        max-width: 100%;
        font-size: 0.8rem;
    }
}

/* Small Mobile (below 480px) */
@media (max-width: 479px) {
    nav {
        height: 65px;
        padding: 0 3%;
    }

    .logo {
        height: 35px;
        width: 100px;
    }

    .mobile-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .hamburger {
        padding: 8px;
    }

    .hamburger span {
        width: 24px;
        height: 2px;
    }

    .mobile-menu-content {
        padding: 25px 10px;
    }

    .mobile-menu-content a {
        font-size: 1rem;
        padding: 9px 12px;
    }

    .hero-section {
        padding: 100px 2% 40px;
    }

    .hero-content .hero-title {

        font-size: 2.1rem;
        line-height: 1.3;
        letter-spacing: 0;
    }

    .hero-content .hero-description {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem !important;
        font-size: 0.85rem;
    }

    .hero-right {
        display: none;
    }

    .proof-sec {
        margin-top: 1.5rem;
        padding: 1rem;
    }

    .proof-sec p {
        font-size: 0.75rem;
    }

    .avatar {
        width: 35px;
        height: 35px;
        font-size: 0.65rem;
    }
}



.section-trusted {
    padding: 80px 4%;
    text-align: center;
    /* background: #f8f9fa; */
    background: var(--bg-off-white);
}

.section-title {
    max-width: 800px;
    margin: 0 auto;

}

.section-title h2 {
    font-size: 2.5rem;
    font-family: 'ClashDisplay-Semibold', sans-serif;
    color: var(--text-main);
    /* font-weight: 600; */
    margin-bottom: 10px;
}

.section-title p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.trusted-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 1.5rem;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    margin-left: -14px;
}

.avatar-stack {
    position: relative;
}

.avatar-stack img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

.avatar-stack::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 80px;
    background: rgba(0, 0, 0, 0.05);
    filter: blur(40px);
    z-index: -1;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-count {
    margin-left: 14px;
    background: #111;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.trusted-rating {
    font-size: 18px;
    color: #f59e0b;
}

.trusted-rating span {
    color: var(--text-muted);
    font-size: 14px;
    margin-left: 6px;
}

.logo-marquee {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.logo-track img {
    height: 70px;
    opacity: .6;
    transition: opacity .25s ease, transform .25s ease;
}

.logo-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* infinite scroll */

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-off-white), transparent);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-off-white), transparent);
}

@media (max-width: 768px) {
    .avatar-circle {
        width: 70px;
        height: 70px;
    }

    .trusted-title {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 1.9rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .section-trusted {
        padding: 50px 2%;
    }
}






.benefits-section {
    padding: 80px 5%;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    /* Prevents long, unreadable lines of text */
    margin: 0 auto 40px auto;
    /* Centers the header and adds space before the grid */
    padding: 0 20px;
}



.section-header h2 {
    font-size: 2.8rem;
    font-family: 'ClashDisplay-Semibold', sans-serif;
    /* Large and bold */
    color: var(--brand-navy);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;

}

/* Optional: Highlight "Global Payments" in your brand color */
.section-header h2 span {
    color: var(--brand-teal);
    font-family: 'ClashDisplay-Semibold', sans-serif;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 700px;
    /* Keeps the paragraph narrow for better readability */
    margin: 0 auto;
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 350px);
    /* Taller rows for image impact */
    gap: 10px;
    max-width: 1300px;
    margin: 0 auto;
}

.bento-item {
    position: relative;
    border-radius: 28px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: #000;
    /* Deep base for any image gaps */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Sits at the bottom */
}

/* The Scrim Overlay - Half Height */
.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /* Only covers the bottom half */
    /* From very dark navy at the bottom to completely transparent at the middle */
    background: linear-gradient(to top,
            rgba(7, 22, 51, 1) 0%,
            rgba(7, 22, 51, 0.8) 30%,
            rgba(7, 22, 51, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    z-index: 2;
    /* Sits on top of the image */
}

.bento-content {
    color: white;
}

.bento-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    /* Subtle shadow for extra pop against busy images */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bento-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Hover Effect: Zoom image but keep overlay still */
.bento-item:hover .bento-bg-img {
    transform: scale(1.1);
}

/* Hover Animations */
.bento-item:hover {
    transform: translateY(-8px);
}

.bento-item:hover .bento-bg-img {
    transform: scale(1.08);
    /* Subtle zoom effect */
}

/* Specific Grid Layouts */
.item-large {
    grid-column: span 2;
}

.item-medium {
    grid-column: span 1;
}

.item-small {
    grid-column: span 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 300px);
    }

    .item-large {
        grid-column: span 2;
    }

    .item-small {
        grid-column: span 1;
    }
    .benefits-section {
    padding: 60px 2%;
}
}

@media (max-width: 600px) {
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 220px);
        gap: 15px;
    }

    .item-large,
    .item-medium,
    .item-small {
        grid-column: span 1;
    }

    .bento-item {
        min-height: 220px;
    }

    .bento-content h3 {
        font-size: 1.1rem;
    }

    .bento-content p {
        font-size: 0.8rem;
    }

    .bento-overlay {
        padding: 20px;
    }
}







.why-us {
    padding: 80px 5%;
    /* background: #ffffff; */
}

.split-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    margin-bottom: 60px;
}

.split-left h1 {
    font-size: 2.6rem;
    max-width: 520px;
    font-family: 'ClashDisplay-Semibold', sans-serif;
    color: var(--brand-navy);
    line-height: 1.1;
    letter-spacing: -1px;
}

.split-left h1 span {
    color: var(--brand-teal);
    font-family: 'ClashDisplay-Semibold', sans-serif;
}

.split-right p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.cta-wrap {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 30px;
}

.proof-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -12px;
    /* Overlap effect */
    background: #E2E8F0;
}

.avatars img:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.2;
}

.proof-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--brand-navy);
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /* padding: 10px; */
}

.why-card {
    position: relative;
    height: 370px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.why-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.w-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 26, 114, 0.9) 0%, rgba(0, 26, 114, 0) 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.w-content h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.w-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    max-width: 200px;
}

.arrow-btn {
    width: 45px;
    height: 45px;
    background: var(--brand-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.why-card:hover .arrow-btn {
    transform: translate(6px, -6px);
}

/* Hover / micro-interactions for the why-cards */
.why-card {
    will-change: transform;
}

.why-card img {
    transition: transform 0.6s cubic-bezier(.2, .9, .2, 1);
}

.w-overlay {
    transition: height 0.45s cubic-bezier(.2, .9, .2, 1), background 0.35s;
}

.arrow-btn {
    transition: transform 0.28s cubic-bezier(.2, .9, .2, 1), box-shadow 0.28s;
}

.why-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    border-color: rgba(0, 175, 102, 0.22);
}

.why-card:hover img {
    transform: scale(1.08) translateZ(0);
}

.why-card:hover .w-overlay {
    height: 55%;
    background: linear-gradient(to top, rgba(0, 26, 114, 0.95) 0%, rgba(0, 26, 114, 0.05) 100%);
}

.why-card:hover .arrow-btn {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 175, 102, 0.18);
}

.why-card:active {
    transform: translateY(-6px) scale(1.015);
    transition: transform 0.12s;
}

/* ===== WHY-US SECTION RESPONSIVE ===== */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {


    .split-header {
        gap: 100px;
        margin-bottom: 80px;
    }

    .split-left h1 {
        font-size: 2.8rem;
        max-width: 580px;
    }

    .why-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .why-card {
        height: 400px;
    }
}

/* Medium Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .why-us {
        padding: 80px 5%;
    }

    .split-header {
        gap: 60px;
        margin-bottom: 60px;
    }

    .split-left h1 {
        font-size: 2.4rem;
        max-width: 480px;
    }

    .why-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .why-card {
        height: 350px;
    }

    .w-content h3 {
        font-size: 1.1rem;
    }

    .w-content p {
        font-size: 0.85rem;
        max-width: 180px;
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .why-us {
        padding: 60px 4%;
    }

    .split-header {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }

    .split-left h1 {
        font-size: 2rem;
        max-width: 100%;
    }

    .split-right p {
        font-size: 1rem;
    }

    .cta-wrap {
        gap: 20px;
        flex-wrap: wrap;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .why-card {
        height: 320px;
    }

    .w-overlay {
        height: 45%;
        padding: 16px;
    }

    .w-content h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .w-content p {
        font-size: 0.8rem;
        max-width: 150px;
    }

    .arrow-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/* Mobile (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .why-us {
        padding: 50px 3%;
    }

    .split-header {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .split-left h1 {
        font-size: 1.7rem;
        max-width: 100%;
        letter-spacing: 0;
    }

    .split-right p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .cta-wrap {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .proof-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .why-card {
        height: 280px;
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .w-overlay {
        height: 50%;
        padding: 14px;
    }

    .w-content h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .w-content p {
        font-size: 0.75rem;
        max-width: 130px;
    }

    .arrow-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .avatars img {
        width: 32px;
        height: 32px;
        margin-left: -8px;
    }

    .proof-text {
        font-size: 0.9rem;
    }

    .proof-text strong {
        font-size: 1rem;
    }
}

/* Small Mobile (below 480px) */
@media (max-width: 479px) {
    .why-us {
        padding: 40px 2%;
    }

    .split-header {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 35px;
    }

    .split-left h1 {
        font-size: 2rem;
        max-width: 100%;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .split-left h1 span {
        display: block;
    }

    .split-right p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .cta-wrap {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        margin-top: 20px;
    }

    .proof-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
    }

    .proof-block span {
        width: 100%;
    }

    .why-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .why-card {
        height: 320px;
        border-radius: 16px;
        border: 2px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .why-card:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    }



    .w-content h3 {
        font-size: 1.2rem;
        margin-bottom: 4px;
        font-weight: 700;
    }

    .w-content p {
        font-size: 0.9rem;
        max-width: 200px;
        line-height: 1.4;
    }

    .arrow-btn {
        width: 39px;
        height: 39px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .why-card:hover .arrow-btn {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 175, 102, 0.15);
    }

    .avatars {
        flex-wrap: wrap;
        gap: 8px;
    }

    .avatars img {
        width: 28px;
        height: 28px;
        margin-left: -6px;
        border: 1.5px solid var(--white);
    }

    .avatars img:first-child {
        margin-left: 0;
    }

    .proof-text {
        font-size: 0.85rem;
    }

    .proof-text strong {
        font-size: 0.95rem;
    }
}






.create-card {
    padding: 80px 4%;
    background:
        linear-gradient(135deg, #0a1f44, #071633),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
    background-blend-mode: overlay;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 7rem;
    color: var(--white);
}

.create-left h1 {
    font-size: 2.8rem;
    font-family: 'ClashDisplay-Semibold', sans-serif;
    margin-bottom: 20px;
}

.create-right p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.create-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
}

.create-item span {
    width: 30px;
    height: 30px;
    background: var(--brand-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.create-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.text-teal {
    color: var(--brand-teal);
    font-family: 'ClashDisplay-Semibold', sans-serif;
}

.credit-card-wrapper {
    padding-top: 2rem;
}

.flecible-card {
    position: relative;
    max-width: 440px;
    width: 100%;
    height: 270px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .08),
        0 8px 24px rgba(0, 0, 0, .5),
        0 30px 80px rgba(37, 99, 235, .45),
        0 60px 120px rgba(0, 0, 0, .6);
}

/* ── base gradient ── */
.flecible-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #1a56e8 0%,
            #1e40af 30%,
            #1730a0 55%,
            #0f1f7a 80%,
            #0d1860 100%);
}

/* ── noise texture overlay ── */
.flecible-noise {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* ── large translucent circle — top right ── */
.orb-1 {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    top: -140px;
    right: -100px;
    background: radial-gradient(circle, rgba(99, 153, 255, .28) 0%, transparent 65%);
    pointer-events: none;
}

/* ── second orb — bottom left ── */
.orb-2 {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    bottom: -100px;
    left: -60px;
    background: radial-gradient(circle, rgba(56, 189, 248, .18) 0%, transparent 65%);
    pointer-events: none;
}

/* ── diagonal gloss band ── */
.gloss {
    position: absolute;
    top: -60px;
    left: -80px;
    width: 320px;
    height: 500px;
    background: linear-gradient(105deg,
            transparent 35%,
            rgba(255, 255, 255, .055) 50%,
            transparent 65%);
    transform: rotate(-12deg);
    pointer-events: none;
}

/* ── top-edge shimmer line ── */
.edge-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45) 30%, rgba(255, 255, 255, .6) 55%, rgba(255, 255, 255, .3) 75%, transparent);
}

/* ── animated shimmer sweep ── */
.shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(255, 255, 255, .07) 50%,
            transparent 70%);
    animation: shimmer 4s 1.2s ease-in-out infinite;
    pointer-events: none;
}

/* ── CONTENT layer ── */
.flecible-content {
    position: absolute;
    inset: 0;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ROW 1 — brand + nfc */
.row-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.brand {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.4px;
    color: #fff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .3);
}

.brand span {
    color: rgba(255, 255, 255, .45);
    font-weight: 400;
}

.nfc-icon {
    display: flex;
    align-items: center;
}

.nfc-icon svg {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .3));
}

/* ROW 2 — chip */
.row-chip {
    display: flex;
    align-items: center;
    gap: 18px;
}

.chip {
    width: 54px;
    height: 42px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .3);
    background: linear-gradient(145deg,
            #f0c040 0%,
            #e8a800 20%,
            #ffd84d 38%,
            #c8880a 55%,
            #f0c040 70%,
            #d09000 88%,
            #ffe066 100%);
}

/* chip contact lines */
.chip::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 4px;
}

.chip::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(transparent 45%, rgba(0, 0, 0, .18) 45%, rgba(0, 0, 0, .18) 55%, transparent 55%),
        linear-gradient(90deg, transparent 45%, rgba(0, 0, 0, .15) 45%, rgba(0, 0, 0, .15) 55%, transparent 55%);
}

.chip-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-top: 2px;
}

/* ROW 3 — card number */
.flecible-number {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 3.5px;
    color: rgba(255, 255, 255, .88);
    text-shadow: 0 1px 8px rgba(0, 0, 0, .25);
    font-variant-numeric: tabular-nums;
}

/* dots rendered as a slightly larger char */
.flecible-number .flecible-dots {
    font-size: 22px;
    letter-spacing: 4px;
    vertical-align: -2px;
    color: rgba(255, 255, 255, .55);
}

/* ROW 4 — name / expiry + mastercard */
.row-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.holder-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.holder-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
}

.holder-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 1px 6px rgba(0, 0, 0, .2);
}

.expiry-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.expiry-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
}

.expiry-date {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .85);
}

.info-pair {
    display: flex;
    gap: 28px;
}

/* mastercard logo */
.mc {
    position: relative;
    width: 56px;
    height: 34px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .4));
}

.mc-circle {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.mc-red {
    background: #eb001b;
    left: 0;
}

.mc-orange {
    background: #f79e1b;
    left: 22px;
}

/* overlap blend */
.mc-blend {
    position: absolute;
    left: 17px;
    top: 7px;
    width: 20px;
    height: 20px;
    background: #ff5f00;
    border-radius: 50%;
    opacity: .55;
    mix-blend-mode: multiply;
}

/* ── KEYFRAMES ── */
@keyframes tiltIn {
    from {
        opacity: 0;
        transform: perspective(900px) rotateY(18deg) rotateX(-8deg) translateY(30px);
    }

    to {
        opacity: 1;
        transform: perspective(900px) rotateY(0deg) rotateX(0deg) translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-9px) rotate(.4deg);
    }

    66% {
        transform: translateY(-5px) rotate(-.3deg);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-12deg);
    }

    60% {
        transform: translateX(220%) skewX(-12deg);
    }

    100% {
        transform: translateX(220%) skewX(-12deg);
    }
}

/* hover tilt */
.flecible-card:hover {
    animation: float 6s 1s ease-in-out infinite;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .12),
        0 12px 32px rgba(0, 0, 0, .55),
        0 40px 100px rgba(37, 99, 235, .6),
        0 70px 130px rgba(0, 0, 0, .65);
}

@media(max-width: 768px) {
    .create-card {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 2.5rem;
        color: var(--white);
        padding: 50px 4%;
    }

    .create-left h1 {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }

    .create-item p {
        font-size: 0.89rem;
    }

    .create-right p {
        font-size: 1rem;
    }

    .flecible-card {
        position: relative;
        max-width: 350px;
        width: 100%;
        height: 220px;
    }
}




.security-section {
    padding: 70px 5%;
    background: #f8fafb;
    background: radial-gradient(circle at top right, #f0f7ff, #ffffff);
    overflow: hidden;
}

/* Hero Layout */
.security-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 30px;
}

.security-text h1 {
    font-size: 2.7rem;
    /* Responsive fluid typography */
    color: var(--text-main);
    font-family: 'ClashDisplay-Semibold', sans-serif;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 14px;
}

.security-text p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 40px;
}

/* Button Styling */
.btn.blue {
    background: var(--brand-navy);
    /* Vibrant lime from reference */
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: transform 0.2s ease;
}

.btn.teal:hover {
    transform: scale(1.05);
}

.security-visual {
    max-width: 400px;
}

.security-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* Trust Pillars */
.trust-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-top: 1px solid #E2E8F0;
    padding-top: 40px;
}

.pillar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background: #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000000;
}

.pillar p {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .security-hero {
        grid-template-columns: 1fr;
    }

    .security-text p {
        margin: 0 auto 40px;
    }



    /* Padlock on top for mobile */
    .trust-pillars {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .security-section {
        padding: 50px 2%;
    }

    .security-text h1 {
        font-size: 2.1rem;

    }
}



.features-section {
    position: relative;
    padding: 80px 4%;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 200, 180, .06) 0%, transparent 70%),
        linear-gradient(175deg, #f4f7fc 0%, #edf1f9 50%, #f0f5ff 100%);
}

.features-section .section-title {
    text-align: center;
}

.features-section .section-title h2 {
    color: var(--brand-navy) !important;
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    display: block;
    background-image:
        linear-gradient(var(--flx-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--flx-border) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    opacity: .55;
    z-index: 1;
}

/* Feature Grid Layout */
.features-container {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: center;
    gap: 40px;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

/* Alignment for Desktop */
.left-align {
    text-align: right;
    align-items: flex-end;
}

.right-align {
    text-align: left;
    align-items: flex-start;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: var(--brand-teal);
    margin-bottom: 8px;
}

.feature-block h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-navy);
}

.feature-block p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Center Card Mockup */
.card-mockup-area {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}



/* Responsive Logic */
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .card-mockup-area {
        grid-column: span 2;
        order: -1;
        margin-bottom: 40px;
    }

    .left-align,
    .right-align {
        text-align: left;
        align-items: flex-start;
    }

    .virtual-card {
        transform: none;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .card-mockup-area {
        grid-column: span 1;
    }

    .feature-column {
        gap: 40px;
    }

    .section-wrapper {
        padding: 60px 20px;
    }

    .header h2 {
        font-size: 28px;
    }
}




.available-counties {
    padding: 80px 0%;
    background:
        linear-gradient(135deg, #0a1f44, #071633),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
    background-blend-mode: overlay;
}

.available-counties::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.available-counties .section-title {
    padding: 0 3%;
}

.available-counties .section-title h2 {
    color: var(--white) !important;
    text-align: center;
}

/* ============================================================
   MARQUEE WRAPPER
============================================================ */
.flx-ctr-marquee-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* clip rows but allow overflow for mask */
    overflow: hidden;
    padding: 1.5rem 0;
}

/* left + right fade edge masks */
.flx-ctr-marquee-wrapper::before,
.flx-ctr-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 10;
    pointer-events: none;
}

.flx-ctr-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0a1f44 0%, transparent 100%);
}

.flx-ctr-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #071633 0%, transparent 100%);
}

/* ── row track ── */
.flx-ctr-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.flx-ctr-marquee-track--ltr {
    animation: flx-ctr-ltr var(--flx-ctr-speed-1) linear infinite;
}

.flx-ctr-marquee-track--rtl {
    animation: flx-ctr-rtl var(--flx-ctr-speed-2) linear infinite;
}

.flx-ctr-marquee-track--ltr2 {
    animation: flx-ctr-ltr var(--flx-ctr-speed-3) linear infinite;
}

/* pause whole wrapper on hover */
.flx-ctr-marquee-wrapper:hover .flx-ctr-marquee-track {
    animation-play-state: paused;
}

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes flx-ctr-ltr {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes flx-ctr-rtl {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}


.flx-ctr-flag-bubble {
    width: var(--flx-ctr-flag-size);
    height: var(--flx-ctr-flag-size);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0 var(--flx-ctr-flag-gap);
    border: 2px solid rgba(255, 255, 255, .1);
    box-shadow:
        0 4px 14px rgba(0, 0, 0, .45),
        0 1px 3px rgba(0, 0, 0, .3);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    cursor: default;
    position: relative;
    background: #1a1f38;
}

.flx-ctr-flag-bubble:hover {
    transform: scale(1.22) translateY(-5px);
    border-color: rgba(0, 200, 180, .65);
    box-shadow:
        0 0 0 3px rgba(0, 200, 180, .25),
        0 10px 28px rgba(0, 0, 0, .55),
        0 0 22px rgba(0, 200, 180, .28);
}

/* actual flag image — covers the circle */
.flx-ctr-flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.12);
    pointer-events: none;
    user-select: none;
}

@media (max-width: 768px) {
    :root {
        --flx-ctr-flag-size: 46px;
        --flx-ctr-flag-gap: 13px;
        --flx-ctr-row-gap: 14px;
    }

    .flx-ctr-section {
        padding: 72px 0 84px;
    }

    /* hide row 3 on mobile */
    .flx-ctr-marquee-row-wrap:nth-child(3) {
        display: none;
    }

    .flx-ctr-marquee-wrapper::before,
    .flx-ctr-marquee-wrapper::after {
        width: 80px;
    }
}

@media (max-width: 480px) {
    :root {
        --flx-ctr-flag-size: 40px;
        --flx-ctr-flag-gap: 11px;
    }

    .flx-ctr-header__headline {
        font-size: 24px;
    }

    .flx-ctr-header__sub {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .flx-ctr-marquee-track {
        animation: none !important;
    }
}











.across-border-section {
    padding: 80px 0 80px 4%;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url(../Assets/OJO4YQ0.jpg);
    background-size: contain;
    background-position: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.across-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 1rem;
}

.across-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.across-item span {
    width: 32px;
    height: 32px;
    background: var(--brand-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white);
    flex-shrink: 0;
}

.accross-content h2 {
    font-size: 2.8rem;
    font-family: 'ClashDisplay-Semibold', sans-serif;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--brand-navy);
}

.accross-content p {
    font-size: 1.2rem;
    color: var(--text-main);
    line-height: 1.6;
}

.across-item p {
    font-size: 1rem;
    color: var(--text-muted);
}


/* ─────────────────────────────────────────
   GLOBE CONTAINER — fills its grid column
───────────────────────────────────────── */
.globe {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding so the sphere sphere rim is never clipped */
    padding: 5%;
    overflow: hidden;
}

/* ambient glow */
.globe::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(0, 0, 0, 0.20) 0%,
            rgba(0, 0, 0, 0.10) 25%,
            transparent 15%);

    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

@keyframes globe-glow-pulse {

    0%,
    100% {
        opacity: .8;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.06);
    }
}

/* canvas fills the padded inner area */
#flx-border-canvas {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    display: block;
    z-index: 1;
    cursor: grab;
}

#flx-border-canvas:active {
    cursor: grabbing;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
    .across-border-section {
        grid-template-columns: 1fr;
        padding: 60px 6%;
        gap: 40px;
    }

    .globe {
        /* order: -1;  */
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 540px) {
    .across-border-section {
        padding: 48px 5%;
        gap: 32px;
    }

    .accross-content h2 {
        font-size: 2rem;
    }

    .globe {
        max-width: 340px;
    }
}




.testimonial-section {
    padding: 80px 4%;
    background: #f8fafb;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-title .tagline {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-teal);
    margin-bottom: 15px;
}

.testimonial-title h1 {
    font-size: 2.8rem;
    font-family: 'ClashDisplay-Semibold', sans-serif;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--brand-navy);
}

.testimonial-ratings {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-ratings p {
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--text-main);
}

.rating-grid {
    display: grid;
    gap: 5px;
    letter-spacing: -0.5px;
}

.rating-row span {
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    color: var(--text-muted);
}

.rating-grid small {
    font-size: 0.67rem;
    color: var(--text-muted);
    margin-top: -5px;
}

.testimonial-card {
    min-width: 250px;
    max-width: 400px;
    height: 260px;
    background: #f5f5f0;
    border-radius: 24px;
    padding: 20px;
    /* box-shadow: 0 9px 20px rgba(0, 0, 0, 0.05); */
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, .05);
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: default;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11, 29, 58, .08);
}

.testimonial-icon {
    font-size: 3rem;
    color: var(--brand-teal);
    opacity: 0.5;
}

.testimonial-card p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.8;
    color: var(--text-main);
}

.testimonial-card .username {
    display: flex;
    justify-content: flex-end;
    text-align: flex-end;
    gap: 12px;
    margin-top: auto;
    font-family: 'ClashDisplay-Regular', sans-serif;
    color: var(--text-muted);
}



/* wrapper clips the scroll + hosts the fade masks */
.testimonial-marquee-wrap {
    position: relative;
    margin-top: 36px;
    overflow: hidden;
    /* clip the scrolling rows */
}

/* left + right white fade masks */
.testimonial-marquee-wrap::before,
.testimonial-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 10;
    pointer-events: none;
}

.testimonial-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #f8fafb 0%, transparent 100%);
}

.testimonial-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #f8fafb 0%, transparent 100%);
}

/* each scrolling row */
.testimonial-row {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
    margin-bottom: 20px;
}

.testimonial-row:last-child {
    margin-bottom: 0;
}

/* row 1 — left */
.testimonial-row--ltr {
    animation: flx-tst-ltr 38s linear infinite;
}

/* row 2 — right */
.testimonial-row--rtl {
    animation: flx-tst-rtl 44s linear infinite;
}

/* pause on hover over the whole section */
.testimonial-marquee-wrap:hover .testimonial-row {
    animation-play-state: paused;
}

@keyframes flx-tst-ltr {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes flx-tst-rtl {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* ── responsive ── */
@media (max-width: 640px) {
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonial-title h1 {
        font-size: 2rem;
    }

    .testimonial-marquee-wrap::before,
    .testimonial-marquee-wrap::after {
        width: 60px;
    }

    .testimonial-card {
        min-width: 220px;
        height: auto;
        min-height: 200px;
    }

    .testimonial-card p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-row {
        animation: none !important;
    }
}





:root {
    --flc-proc-line: #b5b6b9;
    --flc-proc-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.flc-proc-section {
    background-color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.flc-proc-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

/* Phone Visual Column */
.flc-proc-visual-wrap {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s var(--flc-proc-ease);
}

.flc-proc-visual-wrap.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.flc-proc-orbit-system {
    position: absolute;
    width: 500px;
    height: 500px;
    z-index: 1;
}

.flc-proc-orbit-dashed {
    position: absolute;
    inset: -10%;
    border: 1px dashed var(--flc-proc-line);
    border-radius: 50%;
    animation: flc-proc-spin 60s linear infinite;
}

@keyframes flc-proc-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.flc-proc-phone-display {
    width: 490px;
    height: 580px;
    /* background: #f9fafb; */
    border-radius: 44px;
    background-image: url('../Assets//How-it-work.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* border: 12px solid var(--text-main); */
    position: relative;
    z-index: 2;
    /* box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.12); */
    transform: rotate(-12deg);
    transition: transform 1.2s var(--flc-proc-ease);
}

/* Triggered by JS */
.flc-proc-phone-display.is-active {
    transform: rotate(-4deg);
}

/* Content Column */
.flc-proc-text-wrap {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--flc-proc-ease) 0.2s;
}

.flc-proc-text-wrap.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.flc-proc-main-title {
    font-size: 2.8rem;
    font-family: 'ClashDisplay-Semibold', sans-serif;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.flc-proc-steps-stack {
    position: relative;
    list-style: none;
}

.flc-proc-steps-stack::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 10px;
    bottom: 20px;
    width: 1px;
    background-color: var(--flc-proc-line);
}

.flc-proc-item {
    position: relative;
    padding-left: 45px;
    margin-bottom: 40px;
}

.flc-proc-dot {
    position: absolute;
    left: 0;
    top: 8px;
    width: 13px;
    height: 13px;
    background-color: var(--text-main);
    border-radius: 50%;
    z-index: 2;
    transition: background-color 0.4s ease, transform 0.4s var(--flc-proc-ease);
}

.flc-proc-item.is-active .flc-proc-dot {
    background-color: var(--brand-teal);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.flc-proc-item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
    display: block;
}

.flc-proc-item-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 400px;
}

@media (max-width: 1024px) {
    .flc-proc-layout {
        flex-direction: column;
        text-align: center;
        gap: 80px;
    }

    .flc-proc-text-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flc-proc-steps-stack {
        text-align: left;
    }

    .flc-proc-phone-display {
        transform: rotate(0deg);
    }
}





:root {
  --text-faint:   #999999;
  --surface:      #f6f8fb;
  --surface-2:    #edf1f9;
  --border:       rgba(0, 8, 35, 0.07);
  --border-hover: rgba(0,175,102,.28);
  --teal-dim:     rgba(0,175,102,.09);
  --radius:       28px;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
}

.flx-ds-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 40px 120px;
}

/* ── HEADER ── */
.flx-ds-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.flx-ds-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--brand-teal);
    margin-bottom: 14px;
}

.flx-ds-eyebrow__bar {
    width: 22px;
    height: 1.5px;
    background: var(--brand-teal);
    border-radius: 2px;
}

.flx-ds-headline {
    font-family: 'ClashDisplay-Medium', sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.07;
    letter-spacing: 0px;
    color: var(--brand-navy);
}

.flx-ds-headline span {
    color: var(--brand-teal);
     font-family: 'ClashDisplay-Medium', sans-serif;
}

.flx-ds-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-top: 14px;
    max-width: 460px;
}

.flx-ds-header-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 10px 20px;
    border-radius: 100px;
    transition: all .22s var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-end;
}

.flx-ds-header-link:hover {
    border-color: var(--brand-teal);
    color: var(--brand-teal);
    background: var(--teal-dim);
}

.flx-ds-header-link i {
    font-size: 15px;
    transition: transform .2s var(--ease);
}

.flx-ds-header-link:hover i {
    transform: translate(3px, -3px);
}

/* ── BENTO GRID ── */
.flx-ds-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(290px, auto);
    gap: 16px;
}

.flx-ds-c8 {
    grid-column: span 8;
}

.flx-ds-c4 {
    grid-column: span 4;
}

.flx-ds-c6 {
    grid-column: span 6;
}

/* ── CARD ── */
.flx-ds-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 38px 34px 32px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .35s var(--ease),
        transform .4s var(--ease),
        box-shadow .4s var(--ease);
    box-shadow: 0 5px 10px rgba(0, 26, 114, .1);
}

.flx-ds-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 26, 114, .09),
        0 0 0 1px rgba(0, 175, 102, .05);
}

/* top teal shimmer on hover */
.flx-ds-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--brand-teal), transparent);
    opacity: 0;
    transition: opacity .3s ease;
}

.flx-ds-card:hover::before {
    opacity: 1;
}

/* ── image bleed (wide cards only) ── */
.flx-ds-bleed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48%;
    pointer-events: none;
    z-index: 1;
    transition: transform .8s var(--ease);
}

.flx-ds-card:hover .flx-ds-bleed {
    transform: scale(1.04);
}

.flx-ds-bleed__inner {
    position: absolute;
    top: 8%;
    left: -10%;
    width: 115%;
    height: 84%;
    border-radius: 20px;
    overflow: hidden;
    opacity: .065;
    filter: grayscale(100%);
    mix-blend-mode: luminosity;
    transition: opacity .5s ease, transform .8s var(--ease);
}

.flx-ds-card:hover .flx-ds-bleed__inner {
    opacity: .15;
    transform: translate(-6px, -4px) rotate(.6deg);
}

.flx-ds-bleed__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── icon ── */
.flx-ds-icon {
    position: relative;
    z-index: 5;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--brand-navy);
    margin-bottom: 26px;
    flex-shrink: 0;
    transition: background .28s var(--ease), color .28s var(--ease),
        border-color .28s var(--ease), transform .28s var(--ease);
}

.flx-ds-card:hover .flx-ds-icon {
    background: var(--brand-teal);
    color: #fff;
    border-color: transparent;
    transform: scale(1.08) rotate(-3deg);
}

/* ── body ── */
.flx-ds-body {
    position: relative;
    z-index: 5;
    flex: 1;
}

.flx-ds-body h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.4px;
    color: var(--brand-navy);
    margin-bottom: 9px;
    line-height: 1.2;
}

.flx-ds-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.62;
    max-width: 300px;
}

/* ── stats strip (hero cards) ── */
.flx-ds-stats {
    display: flex;
    gap: 0;
    margin-top: 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    width: fit-content;
}

.flx-ds-stat {
    padding: 10px 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-right: 1px solid var(--border);
    background: var(--surface);
    transition: background .2s ease;
}

.flx-ds-stat:last-child {
    border-right: none;
}

.flx-ds-card:hover .flx-ds-stat {
    background: var(--teal-dim);
}

.flx-ds-stat__n {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.5px;
    color: var(--brand-navy);
}

.flx-ds-stat__l {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-faint);
}

/* ── badge row ── */
.flx-ds-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}

.flx-ds-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 6px;
    background: var(--surface-2);
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: background .2s, border-color .2s, color .2s;
}

.flx-ds-card:hover .flx-ds-badge {
    background: var(--teal-dim);
    border-color: rgba(0, 175, 102, .22);
    color: var(--brand-teal);
}

/* ── footer ── */
.flx-ds-footer {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    margin-top: auto;
    border-top: 1px solid var(--border);
}

.flx-ds-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-navy);
    text-decoration: none;
    letter-spacing: -.1px;
    transition: color .22s ease;
}

.flx-ds-cta i {
    font-size: 16px;
    transition: transform .22s var(--ease);
}

.flx-ds-card:hover .flx-ds-cta {
    color: var(--brand-teal);
}

.flx-ds-card:hover .flx-ds-cta i {
    transform: translate(4px, -4px);
}

.flx-ds-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-faint);
    font-size: 15px;
    transition: all .22s var(--ease);
    flex-shrink: 0;
}

.flx-ds-card:hover .flx-ds-btn {
    background: var(--brand-teal);
    border-color: var(--brand-teal);
    color: #fff;
    transform: rotate(-5deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

    .flx-ds-c8,
    .flx-ds-c4,
    .flx-ds-c6 {
        grid-column: span 12;
    }

    .flx-ds-grid {
        grid-auto-rows: auto;
        gap: 14px;
    }

    .flx-ds-bleed {
        display: none;
    }

    .flx-ds-card {
        padding: 30px 26px 26px;
    }
}

@media (max-width: 640px) {
    .flx-ds-section {
        padding: 64px 18px 72px;
    }

    .flx-ds-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .flx-ds-header-link {
        align-self: flex-start;
    }

    .flx-ds-grid {
        gap: 12px;
    }

    .flx-ds-card {
        border-radius: 22px;
        padding: 26px 20px 20px;
    }

    .flx-ds-body h3 {
        font-size: 18px;
    }

    .flx-ds-stats {
        flex-wrap: wrap;
    }
}

.flc-prof-bottom-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: left;
    margin-top: 40px;
}
 .flc-prof-bottom-note a{
    margin-top: 18px;
 }
