/*
 * CodePluse Premium Design System Stylesheet
 * Custom CSS for floating glassmorphic header, sticky navbar, modern hero grid, glowing background mesh gradients, and interactive floating overlays.
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #2563eb;
    --cyan-accent: #06b6d4;
    --light-bg: #f8fbff;
    --dark-text: #0f172a;
    --font-premium: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    font-family: var(--font-premium);
    background-color: var(--light-bg);
    color: var(--dark-text);
    overflow-x: hidden;
}

/* --- Premium Background Mesh Gradients & Blobs --- */
.premium-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.premium-bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(6, 182, 212, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, #f0f7ff 0%, #f7faff 60%, #ffffff 100%);
}

.premium-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    mix-blend-mode: multiply;
    animation: blobFloat 12s ease-in-out infinite alternate;
}

.premium-blob-1 {
    width: 400px;
    height: 400px;
    background-color: rgba(37, 99, 235, 0.12);
    top: -50px;
    left: 5%;
}

.premium-blob-2 {
    width: 450px;
    height: 450px;
    background-color: rgba(6, 182, 212, 0.1);
    top: 20%;
    right: 5%;
    animation-delay: 3s;
}

.premium-blob-3 {
    width: 350px;
    height: 350px;
    background-color: rgba(255, 255, 255, 0.8);
    top: 40%;
    left: 30%;
    animation-delay: 6s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -40px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* --- Header & Top Bar Redesign --- */
header.transparent-header {
    background: transparent !important;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.tg-header__top-custom {
    background: transparent !important;
    border-bottom: 1px solid rgba(37, 99, 235, 0.06);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    position: relative;
    z-index: 1;
}

.tg-header__top-menu-custom ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tg-header__top-menu-custom li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tg-header__top-menu-custom a {
    color: #475569;
    transition: color 0.2s ease;
    text-decoration: none;
}

.tg-header__top-menu-custom a:hover {
    color: var(--primary-blue);
}

.tg-header__top-menu-custom svg {
    color: var(--primary-blue);
    opacity: 0.8;
}

/* Floating Sticky Navbar (Y-spacing tightened & blended) */
.tg-header__area-custom {
    position: sticky;
    top: 10px;
    margin: 4px auto 12px auto;
    width: calc(100% - 48px);
    max-width: 1200px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.03);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tg-header__area-custom.scrolled {
    top: 6px;
    margin: 4px auto;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.08), 0 1px 3px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.7);
    max-width: 1140px;
}

.tgmenu__wrap-custom {
    padding: 6px 20px;
}

.tgmenu__nav-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.tgmenu__nav-custom .logo img {
    height: 34px;
    width: auto;
    transition: transform 0.3s ease;
}

.tgmenu__nav-custom .logo:hover img {
    transform: scale(1.02);
}

/* Navigation Links */
.navigation-custom {
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation-custom>li {
    position: relative;
}

.navigation-custom>li>a {
    font-family: var(--font-premium);
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    padding: 12px 0;
    display: block;
    transition: color 0.3s ease;
    text-decoration: none;
}

.navigation-custom>li>a:hover {
    color: var(--primary-blue);
}

/* Active Nav Highlights */
.navigation-custom>li.active>a {
    color: var(--primary-blue);
}

.navigation-custom>li::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--cyan-accent));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navigation-custom>li:hover::after,
.navigation-custom>li.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* --- 3-Column Premium Mega Menu / Dropdown UI --- */
.menu-item-has-children-custom {
    position: relative;
}

.menu-item-has-children-custom>a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.menu-item-has-children-custom>a::after {
    content: '▾';
    font-size: 10px;
    margin-left: 2px;
    transition: transform 0.2s ease;
}

.menu-item-has-children-custom:hover>a::after {
    transform: translateY(1px);
}

/* Mega Menu Container */
.mega-menu-custom {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.95);
    width: 880px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1100;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-item-has-children-custom:hover .mega-menu-custom {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0px) scale(1);
}

/* Mega Menu Grid System */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 16px;
}

.mega-menu-grid .mega-menu-item {
    padding: 15px 13px;
}

.mega-menu-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.mega-menu-item:hover {
    background: rgba(37, 99, 235, 0.035);
}

.mega-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.04);
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.mega-menu-item:hover .mega-menu-icon {
    background: rgba(37, 99, 235, 0.09);
    color: #1d4ed8;
}

.mega-menu-text {
    display: flex;
    flex-direction: column;
}

.mega-menu-text h6 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 3px 0;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.mega-menu-item:hover .mega-menu-text h6 {
    color: var(--primary-blue);
}

.mega-menu-text p {
    font-size: 11.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

/* --- Responsive Self-Contained Mobile Menu Drawer --- */
.mobile-menu-drawer-custom {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    box-shadow: -15px 0 40px rgba(15, 23, 42, 0.05);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-drawer-custom.active {
    transform: translateX(0);
}

.mobile-menu-backdrop-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-drawer-custom.active~.mobile-menu-backdrop-custom {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-header-custom .logo img {
    height: 32px;
    width: auto;
}

.mobile-menu-close-custom {
    background: none;
    border: none;
    color: #475569;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-body-custom {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-navigation-custom {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-navigation-custom>li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding-bottom: 10px;
}

.mobile-navigation-custom>li:last-child {
    border: none;
}

.mobile-navigation-custom>li>a {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.mobile-dropdown-toggle-custom::after {
    content: '+';
    font-size: 18px;
    font-weight: 500;
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.mobile-menu-item-has-children-custom.open .mobile-dropdown-toggle-custom::after {
    content: '−';
    color: var(--primary-blue);
}

.mobile-sub-menu-custom {
    list-style: none;
    padding-left: 12px;
    margin: 6px 0 0 0;
    display: none;
    flex-direction: column;
    gap: 10px;
    border-left: 1.5px solid rgba(37, 99, 235, 0.1);
}

.mobile-menu-item-has-children-custom.open .mobile-sub-menu-custom {
    display: flex;
}

.mobile-sub-menu-custom li a {
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    padding: 6px 0;
    display: block;
    transition: color 0.2s ease;
}

.mobile-sub-menu-custom li a:hover {
    color: var(--primary-blue);
}

/* CTA Buttons */
.tg-btn-custom {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1d4ed8 100%);
    color: white !important;
    font-family: var(--font-premium);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.18);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.tg-btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tg-btn-custom:hover::before {
    left: 100%;
}

.tg-btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #1d4ed8 0%, var(--primary-blue) 100%);
}

.tg-btn-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cyan-accent) 100%);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}

.tg-btn-gradient:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #0891b2 100%);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.35), 0 0 15px rgba(37, 99, 235, 0.2);
}

/* Secondary/Glass button */
.tg-btn-glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: var(--dark-text) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.tg-btn-glass:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(37, 99, 235, 0.2);
    color: var(--primary-blue) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* Mobile Toggler */
.mobile-nav-toggler-custom {
    display: none;
    color: var(--dark-text);
    cursor: pointer;
    padding: 6px;
}

@media (max-width: 1200px) {

    .tgmenu__main-menu-custom,
    .tg-header__top-custom {
        display: none !important;
    }

    .mobile-nav-toggler-custom {
        display: block;
    }

    .tg-header__area-custom {
        top: 8px;
    }
}


/* --- Premium Hero Section (Spacing tightened & optimized) --- */
.premium-hero-section {
    min-height: 50vh;
    padding: 30px 0 50px;
    display: flex;
    align-items: center;
}

.hero-left-content {
    position: relative;
    z-index: 10;
}

/* Tiny Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.12);
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.02);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--cyan-accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--cyan-accent);
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

/* Heading & Paragraph */
.hero-title {
    font-family: var(--font-premium);
    font-size: clamp(3rem, 3.2vw, 2.4rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--dark-text);
    letter-spacing: -1.8px;
    margin-bottom: 18px;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: clamp(2rem, 2.2vw, 2.4rem);
    }
}

/* @media (max-width: 992px) {
    .hero-title {
        font-size: clamp(2.2rem, 2.2vw, 2.4rem);
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.2rem, 2.2vw, 2.4rem);
    }
} */

.gradient-text-blue {
    background: linear-gradient(135deg, var(--primary-blue) 20%, var(--cyan-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 13.5px;
    line-height: 1.6;
    color: #4b5563;
    font-weight: 400;
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btns .tg-btn-custom {
    padding: 14px 28px;
    font-size: 15px;
}

/* --- Hero Right illustration & Floating UI mockups --- */
.hero-right-illustration {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.mockup-main-image {
    max-width: 100%;
    width: 420px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08), 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    animation: mockupFloat 8s ease-in-out infinite;
}

@keyframes mockupFloat {
    0% {
        transform: translateY(0px) rotate(0.5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-0.5deg);
    }

    100% {
        transform: translateY(0px) rotate(0.5deg);
    }
}

/* Floating Glow Circle behind image */
.hero-glow-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 100%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

/* Floating Card 1: Credit Card style */
.floating-ui-card-1 {
    position: absolute;
    width: 210px;
    height: 125px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(6, 182, 212, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 16px;
    color: white;
    box-shadow: 0 15px 35px -10px rgba(37, 99, 235, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    top: 15%;
    left: -20px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: uiFloat1 6s ease-in-out infinite;
}

.card-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.card-chip {
    width: 24px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    margin-top: 8px;
}

.card-num {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-top: 16px;
    font-weight: 500;
}

.card-holder {
    font-size: 9px;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

@keyframes uiFloat1 {
    0% {
        transform: translateY(0px) rotate(-2deg);
    }

    50% {
        transform: translateY(-12px) rotate(0deg);
    }

    100% {
        transform: translateY(0px) rotate(-2deg);
    }
}

/* Floating Card 2: Successful Transaction Toast */
.floating-ui-card-2 {
    position: absolute;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 12px 18px;
    box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.08);
    bottom: 12%;
    right: -10px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: uiFloat2 7s ease-in-out infinite;
}

.toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.toast-content h5 {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.toast-content p {
    font-size: 11px;
    color: #64748b;
    margin: 0;
}

@keyframes uiFloat2 {
    0% {
        transform: translateY(0px) rotate(1deg);
    }

    50% {
        transform: translateY(-8px) rotate(-1deg);
    }

    100% {
        transform: translateY(0px) rotate(1deg);
    }
}

/* Floating Card 3: AI analytics mini chart graph */
.floating-ui-card-3 {
    position: absolute;
    width: 140px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 12px 14px;
    box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.06);
    bottom: 25%;
    left: 0px;
    z-index: 4;
    animation: uiFloat3 6s ease-in-out infinite;
}

.chart-title {
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.chart-val {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 4px;
}

.chart-val span {
    font-size: 10px;
    color: #10b981;
    font-weight: 600;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 32px;
    margin-top: 8px;
}

.chart-bar {
    width: 10px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.chart-bar.active {
    background: linear-gradient(0deg, var(--primary-blue), var(--cyan-accent));
}

@keyframes uiFloat3 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

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

/* Responsiveness adjustments for Hero UI */
@media (max-width: 991px) {
    .premium-hero-section {
        padding-top: 100px;
        padding-bottom: 50px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-right-illustration {
        margin-top: 50px;
        padding: 0 20px;
    }

    .floating-ui-card-1 {
        left: 20px;
    }

    .floating-ui-card-2 {
        right: 20px;
    }
}

/* --- Premium Fintech Showcase Section Styles --- */
.premium-fintech-section {
    background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        #f8fbff;
    transition: background 0.4s ease;
}

/* Premium background blobs & blueprint engineering grid lines */
.premium-fintech-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.fintech-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    opacity: 0.45;
}

.fintech-blob-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    filter: blur(100px);
    top: -50px;
    left: -100px;
    animation: fintechFloat1 25s ease-in-out infinite alternate;
}

.fintech-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    filter: blur(120px);
    bottom: -100px;
    right: -150px;
    animation: fintechFloat2 30s ease-in-out infinite alternate;
}

.fintech-blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 60%);
    filter: blur(80px);
    top: 30%;
    left: 30%;
}

.fintech-bg-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(37, 99, 235, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(37, 99, 235, 0.015) 1px, transparent 1px);
    opacity: 0.8;
}

@keyframes fintechFloat1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(40px, -50px) scale(1.15) rotate(15deg);
    }
}

@keyframes fintechFloat2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(-50px, 30px) scale(0.9) rotate(-15deg);
    }
}

/* Left Sticky Side bar Content */
.fintech-sticky-content {
    position: sticky;
    top: 260px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 10px 35px -15px rgba(37, 99, 235, 0.03),
        0 30px 60px -25px rgba(15, 23, 42, 0.02),
        inset 0 1px 1px rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fintech-sticky-content:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 12px 40px -15px rgba(37, 99, 235, 0.04),
        0 35px 70px -25px rgba(15, 23, 42, 0.03),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.sub-title-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.12);
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.02);
}

.pill-dot {
    width: 6px;
    height: 6px;
    background-color: var(--cyan-accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--cyan-accent);
    animation: pillDotPulse 2s infinite ease-in-out;
}

@keyframes pillDotPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

.premium-fintech-section .title {
    font-family: var(--font-premium);
    font-size: clamp(2rem, 3.8vw, 2.6rem);
    line-height: 1.25;
    font-weight: 800;
    color: var(--dark-text);
    letter-spacing: -1.2px;
}

.gradient-text-blue {
    background: linear-gradient(135deg, var(--primary-blue) 10%, var(--cyan-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.fintech-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    font-weight: 400;
    margin-top: 18px;
    margin-bottom: 0;
    max-width: 100%;
}

/* FinTech Cards Redesign */
.fintech-grid-wrap .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.fintech-grid-wrap [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.premium-fintech-section .fintech__card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 10px 30px -15px rgba(37, 99, 235, 0.03),
        0 1px 2px rgba(0, 0, 0, 0.01),
        inset 0 1px 1px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 2;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Thin Top Accent Line */
.premium-fintech-section .fintech__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--cyan-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-fintech-section .fintech__card:hover::before {
    transform: scaleX(1);
}

/* Premium Hover lifting & glowing effects */
.premium-fintech-section .fintech__card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(37, 99, 235, 0.16);
    box-shadow: 0 20px 45px -12px rgba(37, 99, 235, 0.1),
        0 4px 12px rgba(37, 99, 235, 0.02),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

/* FinTech SVGs wrapper styling with soft premium gradient backgrounds */
.fintech__card-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(6, 182, 212, 0.06) 100%);
    border: 1px solid rgba(37, 99, 235, 0.08);
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-fintech-section .fintech__card:hover .fintech__card-icon-wrap {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(6, 182, 212, 0.12) 100%);
    border-color: rgba(37, 99, 235, 0.2);
    transform: scale(1.08);
    box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.15);
}

.fintech__icon-svg {
    transition: all 0.3s ease;
}

.premium-fintech-section .fintech__card:hover .fintech__icon-svg {
    transform: rotate(2deg);
}

.premium-fintech-section .fintech__card .title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark-text);
    margin-bottom: 12px;
    letter-spacing: -0.4px;
    transition: color 0.3s ease;
}

.premium-fintech-section .fintech__card:hover .title {
    color: var(--primary-blue);
}

.premium-fintech-section .fintech__card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 18px;
    flex-grow: 1;
}

.premium-fintech-section .fintech__card .best-for {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: #1e3a8a;
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.03);
    border: 1px solid rgba(37, 99, 235, 0.06);
    border-radius: 8px;
    margin: 0;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.premium-fintech-section .fintech__card:hover .best-for {
    background: rgba(37, 99, 235, 0.06);
    border-color: rgba(37, 99, 235, 0.12);
}

/* --- Multi-Device Media Query Adjustments (Responsiveness Checklist) --- */

@media (max-width: 1200px) {
    .fintech-sticky-content {
        padding: 32px;
    }

    .premium-fintech-section .fintech__card {
        padding: 28px;
    }
}

@media (max-width: 991px) {
    .premium-fintech-section {
        padding: 80px 0 !important;
    }

    .fintech-sticky-content {
        position: static !important;
        margin-bottom: 40px;
        padding: 36px;
        width: 100%;
        max-width: 100%;
    }

    .premium-fintech-section .title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .premium-fintech-section {
        padding: 60px 0 !important;
    }

    .fintech-sticky-content {
        padding: 28px;
        border-radius: 20px;
    }

    .premium-fintech-section .fintech__card {
        padding: 24px;
        border-radius: 20px;
    }

    .premium-fintech-section .title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .fintech-sticky-content {
        padding: 20px;
    }

    .premium-fintech-section .fintech__card {
        padding: 20px;
    }
}

/* --- Premium Products Showcase Section Styles --- */
.premium-products-section {
    background: radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(6, 182, 212, 0.04) 0%, transparent 50%),
        #f8fbff;
    transition: background 0.4s ease;
}

/* Premium background blobs & blueprint engineering grid lines */
.premium-products-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.products-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    opacity: 0.4;
}

.products-blob-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    filter: blur(100px);
    top: -50px;
    right: -100px;
    animation: productsBlobFloat1 20s ease-in-out infinite alternate;
}

.products-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    filter: blur(120px);
    bottom: -100px;
    left: -150px;
    animation: productsBlobFloat2 25s ease-in-out infinite alternate;
}

.products-blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
    filter: blur(80px);
    top: 25%;
    right: 35%;
}

.products-bg-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 60px 60px;
    background-image: linear-gradient(to right, rgba(37, 99, 235, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(37, 99, 235, 0.015) 1px, transparent 1px);
    opacity: 0.8;
}

@keyframes productsBlobFloat1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(30px, -45px) scale(1.1) rotate(12deg);
    }
}

@keyframes productsBlobFloat2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(-35px, 25px) scale(0.95) rotate(-12deg);
    }
}

/* Glassmorphic Products Slider Cards */
.services-slider .swiper-slide {
    height: auto !important;
    display: flex;
}

.problem-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 10px 30px -15px rgba(37, 99, 235, 0.03),
        0 1px 2px rgba(0, 0, 0, 0.01),
        inset 0 1px 1px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 2;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Thin Top Accent Line */
.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--cyan-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

/* Hover lift & glow effect */
.problem-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(37, 99, 235, 0.16);
    box-shadow: 0 22px 45px -12px rgba(37, 99, 235, 0.1),
        0 4px 12px rgba(37, 99, 235, 0.02),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.problem-card .title {
    font-family: var(--font-premium);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark-text);
    margin-bottom: 12px;
    letter-spacing: -0.4px;
    transition: color 0.3s ease;
}

.problem-card:hover .title {
    color: var(--primary-blue);
}

.problem-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Premium Link style with moving unicode arrow indicator */
.problem-card a {
    font-family: var(--font-premium);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: auto;
}

.problem-card a::after {
    content: '→';
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-card:hover a::after {
    transform: translateX(6px);
}

/* Customize Swiper Pagination dots */
.premium-products-section .swiper-pagination {
    bottom: 0px !important;
    position: relative;
    margin-top: 40px;
}

.premium-products-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    opacity: 0.4;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.premium-products-section .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--cyan-accent)) !important;
    opacity: 1;
}

@media (max-width: 1200px) {
    .problem-card {
        padding: 32px 24px;
    }
}

@media (max-width: 991px) {
    .premium-products-section {
        padding: 80px 0 !important;
    }
}

@media (max-width: 767px) {
    .premium-products-section {
        padding: 60px 0 !important;
    }

    .problem-card {
        padding: 28px 20px;
        border-radius: 20px;
    }
}

/* --- Premium Showcase Showcase Section Styles --- */
.premium-showcase-section {
    background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.03) 0%, transparent 40%),
        #ffffff;
    transition: background 0.4s ease;
}

.premium-showcase-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.showcase-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    opacity: 0.35;
}

.showcase-blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    top: 10%;
    left: -50px;
    animation: showcaseFloat1 20s ease-in-out infinite alternate;
}

.showcase-blob-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    filter: blur(120px);
    bottom: 10%;
    right: -100px;
    animation: showcaseFloat2 25s ease-in-out infinite alternate;
}

.showcase-bg-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 60px 60px;
    background-image: linear-gradient(to right, rgba(37, 99, 235, 0.012) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(37, 99, 235, 0.012) 1px, transparent 1px);
    opacity: 0.8;
}

@keyframes showcaseFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 30px) scale(1.1);
    }
}

@keyframes showcaseFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, -40px) scale(0.95);
    }
}

/* Showcase grid layout & zoom hover overlay */
.showcase-grid {
    margin-top: 20px;
}

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 280px;
}

.showcase-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.12),
        0 0 15px rgba(37, 99, 235, 0.04);
    border-color: rgba(37, 99, 235, 0.12);
}

.showcase-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-item:hover .showcase-img-wrap img {
    transform: scale(1.06);
}

/* Elegant Showcase Hover Overlay */
.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.35) 60%, transparent 100%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.showcase-content {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.showcase-item:hover .showcase-content {
    transform: translateY(0);
}

.showcase-content .project-name {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tech-pill {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    letter-spacing: 0.3px;
}

.showcase-item:hover .tech-pill {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.tech-pill:hover {
    background: var(--tg-color-primary-default, var(--primary-blue)) !important;
    border-color: var(--tg-color-primary-default, var(--primary-blue)) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* --- Premium CTA Section Redesign Styles --- */
.premium-cta-section {
    background: #0a0e17;
    padding: 130px 0;
}

.cta-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    opacity: 0.16;
    filter: blur(130px);
}

.cta-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
    top: -100px;
    left: 15%;
    animation: ctaBlobFloat1 15s ease-in-out infinite alternate;
}

.cta-blob-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--cyan-accent) 0%, transparent 70%);
    bottom: -150px;
    right: 15%;
    animation: ctaBlobFloat2 18s ease-in-out infinite alternate;
}

.cta-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    opacity: 0.7;
}

@keyframes ctaBlobFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 40px) scale(1.15);
    }
}

@keyframes ctaBlobFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-40px, -50px) scale(0.9);
    }
}

/* Centered Glass Card */
.cta-glass-card {
    background: rgba(15, 22, 38, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 64px 48px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35),
        inset 0 1px 1px rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--cyan-accent) 100%);
    opacity: 0.8;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cta-title {
    font-family: var(--font-premium);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 17px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 36px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.cta-trust-indicators {
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.trust-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 13.5px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-indicator:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateY(-1px);
}

.trust-indicator .icon {
    color: var(--cyan-accent);
    filter: drop-shadow(0 0 4px rgba(6, 182, 212, 0.3));
}

.cta-btn {
    padding: 15px 32px !important;
    font-size: 15.5px !important;
    border-radius: 30px !important;
    margin-top: 12px;
}

.cta-btn svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn:hover svg {
    transform: translate(2px, -2px) !important;
}

/* Responsiveness adjustments */
@media (max-width: 1200px) {
    .cta-glass-card {
        padding: 50px 36px;
    }
}

@media (max-width: 767px) {

    .premium-showcase-section,
    .premium-cta-section {
        padding: 80px 0 !important;
    }

    .cta-glass-card {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .cta-title {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .cta-description {
        font-size: 15px;
    }
}

/* =====================================================
   CP TAB SECTION — Modern Glassmorphism Tab UI
   ===================================================== */

/* Section wrapper */
.cp-tab-section {
    background: linear-gradient(160deg, #f0f7ff 0%, #f8fbff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.cp-tab-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

/* Section header typography */
.cp-tab-pretitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.07);
    border: 1px solid rgba(37, 99, 235, 0.12);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.cp-tab-heading {
    font-family: var(--font-premium);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.cp-tab-subtext {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* Tab navigation wrapper */
.cp-tabs-nav-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.cp-tabs-nav {
    position: relative;
    display: inline-flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.cp-tabs-nav::-webkit-scrollbar {
    display: none;
}

/* Animated sliding indicator */
.cp-tab-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cyan-accent) 100%);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1), width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
    pointer-events: none;
}

/* Tab buttons */
.cp-tab-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-family: var(--font-premium);
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
    outline: none;
}

.cp-tab-btn.active {
    color: #ffffff;
}

.cp-tab-btn:not(.active):hover {
    color: var(--primary-blue);
}

.cp-tab-icon {
    display: flex;
    align-items: center;
    opacity: 0.85;
}

/* Tab panels */
.cp-tab-panels {
    min-height: 200px;
}

.cp-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cp-tab-panel.animating {
    display: block;
}

/* Cards */
.cp-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.cp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--cyan-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.cp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1), 0 0 0 1px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.15);
}

.cp-card:hover::before {
    opacity: 1;
}

/* Products card variant */
.cp-card--products {
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #7c3aed, #a78bfa) 1;
}

.cp-card--products:hover {
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.1), 0 0 0 1px rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.15);
}

.cp-card--products .cp-card-icon-wrap {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(167, 139, 250, 0.06) 100%);
    border-color: rgba(124, 58, 237, 0.12);
}

.cp-card--products .cp-card-icon {
    color: #7c3aed;
}

.cp-card--products .cp-card-cta {
    color: #7c3aed;
}

.cp-card--products .cp-card-cta::after {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

/* Fintech card variant */
.cp-card--fintech {
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #0891b2, #06b6d4) 1;
}

.cp-card--fintech:hover {
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.12), 0 0 0 1px rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.18);
}

.cp-card--fintech .cp-card-icon-wrap {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-color: rgba(6, 182, 212, 0.14);
}

.cp-card--fintech .cp-card-icon {
    color: #0891b2;
}

.cp-card--fintech .cp-card-cta {
    color: #0891b2;
}

.cp-card--fintech .cp-card-cta::after {
    background: linear-gradient(90deg, #0891b2, #06b6d4);
}

/* Card icon */
.cp-card-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.06) 100%);
    border: 1px solid rgba(37, 99, 235, 0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cp-card:hover .cp-card-icon-wrap {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.cp-card-icon {
    font-size: 22px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-card-title {
    font-family: var(--font-premium);
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 12px;
}

.cp-card-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 24px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* adjust lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* CTA link */
.cp-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    width: fit-content;
    margin-top: auto;
    transition: gap 0.3s ease, color 0.2s ease;
}

.cp-card-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--cyan-accent));
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-card:hover .cp-card-cta {
    gap: 10px;
}

.cp-card:hover .cp-card-cta::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .cp-tabs-nav {
        padding: 5px;
        gap: 2px;
    }

    .cp-tab-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .cp-card {
        padding: 24px 20px;
    }

    .cp-tab-heading {
        font-size: 1.75rem;
    }
}

/* Tab section JS init - indicator sizing via JS */

/* --- Premium Company Timeline Section --- */
.cp-timeline-section {
    position: relative;
    padding: 10px 0;
    background: #ffffff;
    overflow: hidden;
    z-index: 1;
}

/* Background grid overlay or subtle mesh for timeline */
.cp-timeline-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.cp-timeline-wrapper {
    position: relative;
    width: 100%;
    /* margin-top: 80px; */
}

/* SVG Line Path for Desktop */
.cp-timeline-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.cp-timeline-svg path {
    filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.25));
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke-dashoffset 2s ease;
}

/* Horizontal Track for desktop */
.cp-timeline-track {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    z-index: 3;
    min-height: 580px;
}

.cp-timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 15px;
    z-index: 4;
}

.cp-timeline-top {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
    margin-right: 40px;
}

.cp-timeline-bottom {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

/* Card Styling */
.cp-timeline-card {
    width: 100%;
    max-width: 220px;
    height: 200px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.cp-timeline-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.08), 0 0 0 1px rgba(37, 99, 235, 0.05);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(37, 99, 235, 0.2);
}

/* Glow gradient behind cards */
.cp-timeline-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cp-timeline-card:hover::before {
    opacity: 1;
}

/* Content Styling */
.cp-timeline-content {
    width: 100%;
    max-width: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cp-timeline-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan-accent));
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
}

.cp-timeline-step:hover .cp-timeline-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.25);
}

.cp-timeline-title {
    font-family: var(--font-premium);
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.3;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.cp-timeline-step:hover .cp-timeline-title {
    color: var(--primary-blue);
}

.cp-timeline-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Step sub-title ("The Beginning", etc.) */
.cp-timeline-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}

/* Custom interactive graphics styles */
.cp-graphic-ide {
    width: 90%;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: monospace;
    font-size: 10px;
    color: #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    text-align: left;
}

.ide-header {
    background: rgba(30, 41, 59, 0.9);
    padding: 6px 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ide-dots {
    display: flex;
    gap: 4px;
    margin-right: 12px;
}

.ide-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.ide-dot.red {
    background: #ef4444;
}

.ide-dot.yellow {
    background: #f59e0b;
}

.ide-dot.green {
    background: #10b981;
}

.ide-title {
    color: #94a3b8;
    font-size: 9px;
}

.ide-body {
    padding: 10px;
    line-height: 1.5;
}

.keyword {
    color: #f43f5e;
}

.variable {
    color: #38bdf8;
}

.class {
    color: #fbbf24;
}

.property {
    color: #a78bfa;
}

.string {
    color: #34d399;
}

.line-num {
    color: #475569;
    margin-right: 6px;
    user-select: none;
}

/* Growth chart graphic */
.cp-graphic-chart {
    width: 90%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 0;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}

.chart-label {
    font-size: 9.5px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.chart-val {
    font-size: 9.5px;
    font-weight: 800;
    color: #10b981;
}

.chart-body {
    position: relative;
    height: 90px;
    background: rgba(37, 99, 235, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.05);
    overflow: hidden;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.08);
}

/* Products overlap window graphic */
.cp-graphic-products {
    position: relative;
    width: 80%;
    height: 120px;
}

.prod-window {
    position: absolute;
    width: 85px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.prod-window.w1 {
    top: 5px;
    left: 5px;
    z-index: 1;
}

.prod-window.w2 {
    top: 35px;
    left: 35px;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(37, 99, 235, 0.05));
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.06);
}

.prod-window.w3 {
    top: 65px;
    left: 65px;
    z-index: 3;
}

.prod-icon {
    font-size: 12px;
}

.prod-txt {
    font-size: 9.5px;
    font-weight: 700;
    color: #0f172a;
}

.cp-timeline-card:hover .prod-window.w1 {
    transform: translate(-8px, -8px) rotate(-3deg);
}

.cp-timeline-card:hover .prod-window.w3 {
    transform: translate(8px, 8px) rotate(3deg);
}

.cp-timeline-card:hover .prod-window.w2 {
    transform: scale(1.04);
}

/* Fintech card graphic */
.cp-graphic-fintech {
    width: 85%;
    display: flex;
    justify-content: center;
}

.fin-card {
    width: 160px;
    height: 100px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(6, 182, 212, 0.85) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    color: white;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.fin-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fin-brand {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.fin-chip {
    width: 18px;
    height: 13px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.fin-card-num {
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 1.2px;
    margin: 6px 0;
}

.fin-card-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 8.5px;
    opacity: 0.85;
}

.fin-holder {
    font-weight: 700;
}

.fin-pay {
    font-weight: 800;
    background: rgba(255, 255, 255, 0.2);
    padding: 1px 5px;
    border-radius: 3px;
}

.cp-timeline-card:hover .fin-card {
    transform: rotate(4deg) scale(1.04);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

/* Stack graphic */
.cp-graphic-stack {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-center {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.35);
    z-index: 5;
    position: relative;
    transition: all 0.3s ease;
}

.stack-num {
    font-size: 12px;
    font-weight: 800;
}

.stack-lbl {
    font-size: 7.5px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
}

.stack-orbit {
    position: absolute;
    width: 95px;
    height: 95px;
    border: 1px dashed rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    animation: stackRotate 12s linear infinite;
    z-index: 1;
}

.stack-satellite {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    font-weight: 800;
    color: #2563eb;
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.05);
}

.stack-satellite.s1 {
    top: -12px;
    left: calc(50% - 12px);
}

.stack-satellite.s2 {
    bottom: 2px;
    left: -8px;
}

.stack-satellite.s3 {
    bottom: 2px;
    right: -8px;
}

@keyframes stackRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive & Mobile Layout Styles */
@media (max-width: 991px) {
    .cp-timeline-track {
        flex-direction: column;
        min-height: auto;
        padding-left: 20px;
        position: relative;
    }

    .cp-timeline-svg {
        display: none;
    }

    .cp-timeline-track::before {
        content: '';
        position: absolute;
        top: 10px;
        bottom: 10px;
        left: 0;
        width: 2px;
        background: linear-gradient(180deg, #f59e0b, #2563eb, #06b6d4, #f59e0b);
        border-radius: 3px;
        z-index: 1;
    }

    .cp-timeline-top,
    .cp-timeline-bottom {
        display: contents;
    }

    .cp-timeline-step {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        padding: 0 0 40px 25px;
        text-align: left;
        margin-bottom: 0;
    }

    .cp-timeline-step::before {
        content: '';
        position: absolute;
        left: -8.5px;
        top: 6px;
        width: 16px;
        height: 16px;
        background: #ffffff;
        border: 3.5px solid var(--primary-blue);
        border-radius: 50%;
        z-index: 3;
        box-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
    }

    .cp-timeline-step:first-child::before {
        border-color: #f59e0b;
    }

    .cp-timeline-step:last-child::before {
        border-color: #f59e0b;
    }

    .cp-timeline-content {
        order: 1;
        text-align: left;
        align-items: flex-start;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .cp-timeline-card {
        order: 2;
        width: 100%;
        max-width: 280px;
        height: 180px;
        margin-left: 0;
    }
}

/* --- Premium Modern Counter Section (Light Background) --- */
.cp-counter-section {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    z-index: 10;
    overflow: hidden;
}

/* Subtle decorative ambient mesh for the light bg counter */
.cp-counter-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.015) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.cp-counter-wrapper {
    position: relative;
    z-index: 2;

    padding-left: 120px;
    padding-right: 120px;
}

.cp-counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.cp-counter-item:hover {
    transform: translateY(-6px);
}

.cp-counter-number {
    font-family: var(--font-premium);
    font-size: clamp(2.1rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
    /* Soft premium digital violet inspired by reference image */
    color: #00A0EA;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-counter-item:hover .cp-counter-number {
    transform: scale(1.03);
    /* Glow text shadow */
    filter: drop-shadow(0 8px 16px rgba(92, 83, 255, 0.2));
}

.cp-counter-label {
    margin-top: 18px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-transform: capitalize;
    letter-spacing: 0.8px;
    text-align: center;
    transition: all 0.4s ease;
}

.cp-counter-item:hover .cp-counter-label {
    color: #0f172a;
    letter-spacing: 1.2px;
}

/* Responsive adjust for mobile */
@media (max-width: 767px) {
    .cp-counter-section {
        padding: 60px 0;
    }

    .cp-counter-item {
        margin-bottom: 30px;
    }

    .cp-counter-col:last-child .cp-counter-item {
        margin-bottom: 0;
    }
}

/* --- Apple & Stripe Inspired Who We Work With Section (Glassmorphism) --- */
.cp-industries-section {
    position: relative;
    padding: 120px 0;
    background-color: #f9fafb;
    z-index: 10;
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
    transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle, soft blurred ambient shapes in background */
.cp-industries-ambient-shape-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, rgba(99, 102, 241, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), background 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-industries-ambient-shape-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.04) 0%, rgba(6, 182, 212, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), background 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-industries-wrapper {
    position: relative;
    z-index: 2;
}

/* Typography & Spacing */
.cp-ind-subtitle {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-family: var(--font-premium);
}

.cp-ind-heading {
    font-family: var(--font-premium);
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.cp-ind-description {
    font-size: 15px;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Glassmorphic Cards (Apple / Stripe style) */
.cp-industry-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.015),
        0 1px 3px rgba(15, 23, 42, 0.01),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-industry-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.03);
    color: #475569;
    /* Elegant muted slate color */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-industry-icon-box svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.6;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-industry-title {
    font-family: var(--font-premium);
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.35;
}

.cp-industry-desc {
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
    margin: 0;
}

/* Card Hover Individual States & Transitions */
.cp-industry-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.9);
}

.cp-industry-card:hover .cp-industry-icon-box {
    transform: scale(1.05);
}

.cp-industry-card:hover .cp-industry-icon-box svg {
    transform: rotate(-3deg);
}

/* Dynamic parent section background color changes on hover */
.cp-industries-section:has([data-industry="nbfc"]:hover) {
    background-color: #f5f3ff;
}

.cp-industries-section:has([data-industry="nbfc"]:hover) .cp-industries-ambient-shape-1 {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0) 70%);
}

.cp-industries-section:has([data-industry="nbfc"]:hover) [data-industry="nbfc"] .cp-industry-card {
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.08);
}

.cp-industries-section:has([data-industry="nbfc"]:hover) [data-industry="nbfc"] .cp-industry-icon-box {
    background-color: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
}

.cp-industries-section:has([data-industry="health"]:hover) {
    background-color: #f0fdfa;
}

.cp-industries-section:has([data-industry="health"]:hover) .cp-industries-ambient-shape-1 {
    background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, rgba(20, 184, 166, 0) 70%);
}

.cp-industries-section:has([data-industry="health"]:hover) [data-industry="health"] .cp-industry-card {
    border-color: rgba(20, 184, 166, 0.25);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.08);
}

.cp-industries-section:has([data-industry="health"]:hover) [data-industry="health"] .cp-industry-icon-box {
    background-color: rgba(20, 184, 166, 0.1);
    color: #0d9488;
}

.cp-industries-section:has([data-industry="education"]:hover) {
    background-color: #eff6ff;
}

.cp-industries-section:has([data-industry="education"]:hover) .cp-industries-ambient-shape-1 {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 70%);
}

.cp-industries-section:has([data-industry="education"]:hover) [data-industry="education"] .cp-industry-card {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.08);
}

.cp-industries-section:has([data-industry="education"]:hover) [data-industry="education"] .cp-industry-icon-box {
    background-color: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.cp-industries-section:has([data-industry="ecommerce"]:hover) {
    background-color: #fff7ed;
}

.cp-industries-section:has([data-industry="ecommerce"]:hover) .cp-industries-ambient-shape-1 {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, rgba(249, 115, 22, 0) 70%);
}

.cp-industries-section:has([data-industry="ecommerce"]:hover) [data-industry="ecommerce"] .cp-industry-card {
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.08);
}

.cp-industries-section:has([data-industry="ecommerce"]:hover) [data-industry="ecommerce"] .cp-industry-icon-box {
    background-color: rgba(249, 115, 22, 0.1);
    color: #ea580c;
}

.cp-industries-section:has([data-industry="logistics"]:hover) {
    background-color: #ecfeff;
}

.cp-industries-section:has([data-industry="logistics"]:hover) .cp-industries-ambient-shape-2 {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(6, 182, 212, 0) 70%);
}

.cp-industries-section:has([data-industry="logistics"]:hover) [data-industry="logistics"] .cp-industry-card {
    border-color: rgba(6, 182, 212, 0.25);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.08);
}

.cp-industries-section:has([data-industry="logistics"]:hover) [data-industry="logistics"] .cp-industry-icon-box {
    background-color: rgba(6, 182, 212, 0.1);
    color: #0891b2;
}

.cp-industries-section:has([data-industry="media"]:hover) {
    background-color: #fff1f2;
}

.cp-industries-section:has([data-industry="media"]:hover) .cp-industries-ambient-shape-2 {
    background: radial-gradient(circle, rgba(244, 63, 94, 0.12) 0%, rgba(244, 63, 94, 0) 70%);
}

.cp-industries-section:has([data-industry="media"]:hover) [data-industry="media"] .cp-industry-card {
    border-color: rgba(244, 63, 94, 0.25);
    box-shadow: 0 20px 40px rgba(244, 63, 94, 0.08);
}

.cp-industries-section:has([data-industry="media"]:hover) [data-industry="media"] .cp-industry-icon-box {
    background-color: rgba(244, 63, 94, 0.1);
    color: #e11d48;
}

.cp-industries-section:has([data-industry="enterprise"]:hover) {
    background-color: #f8fafc;
}

.cp-industries-section:has([data-industry="enterprise"]:hover) .cp-industries-ambient-shape-1 {
    background: radial-gradient(circle, rgba(100, 116, 139, 0.12) 0%, rgba(100, 116, 139, 0) 70%);
}

.cp-industries-section:has([data-industry="enterprise"]:hover) [data-industry="enterprise"] .cp-industry-card {
    border-color: rgba(100, 116, 139, 0.25);
    box-shadow: 0 20px 40px rgba(100, 116, 139, 0.08);
}

.cp-industries-section:has([data-industry="enterprise"]:hover) [data-industry="enterprise"] .cp-industry-icon-box {
    background-color: rgba(100, 116, 139, 0.1);
    color: #475569;
}

.cp-industries-section:has([data-industry="cooperative"]:hover) {
    background-color: #fdf4ff;
}

.cp-industries-section:has([data-industry="cooperative"]:hover) .cp-industries-ambient-shape-2 {
    background: radial-gradient(circle, rgba(217, 70, 239, 0.12) 0%, rgba(217, 70, 239, 0) 70%);
}

.cp-industries-section:has([data-industry="cooperative"]:hover) [data-industry="cooperative"] .cp-industry-card {
    border-color: rgba(217, 70, 239, 0.25);
    box-shadow: 0 20px 40px rgba(217, 70, 239, 0.08);
}

.cp-industries-section:has([data-industry="cooperative"]:hover) [data-industry="cooperative"] .cp-industry-icon-box {
    background-color: rgba(217, 70, 239, 0.1);
    color: #c084fc;
}

.cp-industries-section:has([data-industry="insurance"]:hover) {
    background-color: #f0fdf4;
}

.cp-industries-section:has([data-industry="insurance"]:hover) .cp-industries-ambient-shape-1 {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0) 70%);
}

.cp-industries-section:has([data-industry="insurance"]:hover) [data-industry="insurance"] .cp-industry-card {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.08);
}

.cp-industries-section:has([data-industry="insurance"]:hover) [data-industry="insurance"] .cp-industry-icon-box {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.cp-industries-section:has([data-industry="gov"]:hover) {
    background-color: #eff6ff;
}

.cp-industries-section:has([data-industry="gov"]:hover) .cp-industries-ambient-shape-1 {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, rgba(14, 165, 233, 0) 70%);
}

.cp-industries-section:has([data-industry="gov"]:hover) [data-industry="gov"] .cp-industry-card {
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.08);
}

.cp-industries-section:has([data-industry="gov"]:hover) [data-industry="gov"] .cp-industry-icon-box {
    background-color: rgba(14, 165, 233, 0.1);
    color: #0284c7;
}

.cp-industries-section:has([data-industry="marketing"]:hover) {
    background-color: #fffbeb;
}

.cp-industries-section:has([data-industry="marketing"]:hover) .cp-industries-ambient-shape-1 {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0) 70%);
}

.cp-industries-section:has([data-industry="marketing"]:hover) [data-industry="marketing"] .cp-industry-card {
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.08);
}

.cp-industries-section:has([data-industry="marketing"]:hover) [data-industry="marketing"] .cp-industry-icon-box {
    background-color: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.cp-industries-section:has([data-industry="fintech"]:hover) {
    background-color: #faf5ff;
}

.cp-industries-section:has([data-industry="fintech"]:hover) .cp-industries-ambient-shape-2 {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0) 70%);
}

.cp-industries-section:has([data-industry="fintech"]:hover) [data-industry="fintech"] .cp-industry-card {
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.08);
}

.cp-industries-section:has([data-industry="fintech"]:hover) [data-industry="fintech"] .cp-industry-icon-box {
    background-color: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

/* Muted Trust Badges (Apple Style Pill tags) */
.cp-trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 70px;
}

.cp-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.01);
}

.cp-trust-badge svg {
    width: 14px;
    height: 14px;
    color: #64748b;
    stroke-width: 2;
}

/* Responsive adjust for mobile */
@media (max-width: 767px) {
    .cp-industries-section {
        padding: 80px 0;
    }

    .cp-trust-badges-row {
        margin-top: 40px;
    }
}