:root {
            --primary: #f06223;
            --primary-dark: #d4551a;
            --primary-light: #fef3ed;
            --secondary: #2c1810;
            --secondary-light: #f8f3ee;
            --text: #2c1810;
            --text-muted: #5a4a3a;
            --border: #e8ddd0;
            --white: #ffffff;
            --bg-light: #f8f3ee;
            --shadow: 0 30px 70px rgba(44, 24, 16, 0.08);
            --shadow-lg: 0 40px 90px rgba(44, 24, 16, 0.12);
            --radius: 24px;
            --radius-sm: 12px;
            --radius-xl: 32px;
            --gradient-primary: linear-gradient(135deg, #f06223, #d4551a);
            --gradient-secondary: linear-gradient(135deg, #8b7355, #6b5a42);
            --gradient-hero: linear-gradient(135deg, #2c1810 0%, #4a3628 50%, #2c1810 100%);
            --card-1: #fef3ed;
            --card-2: #fde8d8;
            --card-3: #fcdcc4;
            --card-4: #fbd0b0;
            --card-5: #fac49c;
            --card-6: #f9b888;
            --card-7: #f8ac74;
            --card-8: #f7a060;
            --card-9: #f6944c;
            --hero-text-heading: #2c1810;
            --hero-text-body: #5a4a3a;
            --hero-btn-color: #2c1810;
            --hero-curve-left: #fef3ed;
            --hero-curve-right: #f8f3ee;
        }
        body {
            background: var(--bg-light);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1.cs-heading, h2.cs-heading, h3.cs-heading, h4.cs-heading, h5.cs-heading, h6.cs-heading {
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: var(--secondary);
        }
        .cs-gradient-text {
            color: var(--primary);
        }
        .cs-cursor-glow {
            position: fixed;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(240, 98, 35, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
            transition: left 0.15s ease-out, top 0.15s ease-out;
            mix-blend-mode: screen;
        }
        .cs-hero-section {
            position: relative;
            width: 100%;
            padding: 80px 0 40px 0;
            min-height: 650px;
            display: flex;
            align-items: center;
            background-color: #ffffff;
            overflow: hidden;
            border-radius: 0 0 60px 60px;
            margin-bottom: 0rem;
        }
        .cs-curve-left {
            position: absolute;
            width: 120vw;
            height: 120vh;
            background: var(--hero-curve-left);
            border-radius: 50%;
            bottom: -60vh;
            left: -60vw;
            z-index: 0;
            pointer-events: none;
        }
        .cs-curve-right {
            position: absolute;
            width: 130vw;
            height: 130vh;
            background: var(--hero-curve-right);
            border-radius: 50%;
            top: -70vh;
            right: -50vw;
            z-index: 0;
            pointer-events: none;
        }
        .cs-container-wrapper {
            position: relative;
            z-index: 5;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        .cs-hero-row {
            align-items: center;
            margin-bottom: 50px;
        }
        .cs-content-col {
            padding-right: 40px;
        }
        .cs-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #ffffff;
            padding: 6px 16px 6px 8px;
            border-radius: 100px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            margin-bottom: 40px;
            border: 1px solid rgba(0,0,0,0.02);
        }
        .cs-badge-avatars {
            display: flex;
        }
        .cs-badge-avatars .cs-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid #ffffff;
            margin-left: -8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            font-weight: 600;
            color: var(--white);
        }
        .cs-badge-avatars .cs-avatar:first-child { margin-left: 0; }
        .cs-badge-avatars .cs-avatar-1 { background: var(--gradient-primary); }
        .cs-badge-avatars .cs-avatar-2 { background: var(--gradient-secondary); }
        .cs-badge-avatars .cs-avatar-3 { background: #f5a623; }
        .cs-badge-text {
            font-size: 14px;
            font-weight: 500;
            color: var(--hero-text-body);
        }
        .cs-hero-headline {
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1.05;
            color: var(--hero-text-heading);
            margin-bottom: 25px;
        }
        .cs-hero-subtitle {
            font-size: 1.15rem;
            line-height: 1.6;
            color: var(--hero-text-body);
            max-width: 440px;
            margin-bottom: 45px;
        }
        .cs-btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background-color: var(--hero-btn-color);
            color: #ffffff;
            padding: 18px 36px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            width: max-content;
            border: none;
            box-shadow: 0 10px 25px rgba(44, 24, 16, 0.2);
        }
        .cs-btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(44, 24, 16, 0.3);
            color: #ffffff;
        }
        .cs-btn-cta svg {
            width: 18px;
            height: 18px;
        }
        .cs-btn-outline-hero {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: transparent;
            color: var(--hero-btn-color);
            padding: 18px 36px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            width: max-content;
            border: 1.5px solid var(--hero-btn-color);
        }
        .cs-btn-outline-hero:hover {
            background: var(--hero-btn-color);
            color: #ffffff;
            transform: translateY(-3px);
        }
        .cs-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }
        .cs-image-col {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 550px;
            padding: 20px;
        }
        .cs-hero-image-wrapper {
            position: relative;
            z-index: 2;
            max-width: 650px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .cs-hero-image-wrapper img {
            width: 100%;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 30px 60px rgba(0,0,0,0.05));
            border-radius: 20px;
        }
        .cs-float-card {
            position: absolute;
            z-index: 10;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 20px 50px -10px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.03);
            padding: 14px 18px;
            animation: csFloatCard 6s ease-in-out infinite alternate;
        }
        .cs-card-credit {
            top: 5%;
            left: 0%;
            padding: 16px 22px;
            border-radius: 20px;
        }
        .cs-card-credit small {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
            display: block;
            margin-bottom: 2px;
        }
        .cs-card-credit h6 {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary);
            margin: 0;
        }
        .cs-card-save {
            top: 30%;
            right: -5%;
            flex-direction: row;
            align-items: center;
            gap: 12px;
            border-radius: 40px;
            padding: 12px 20px 12px 24px;
            background: var(--primary-light);
            border: none;
            box-shadow: none;
        }
        .cs-card-save span {
            font-weight: 600;
            color: var(--secondary);
            font-size: 15px;
        }
        .cs-pill-green {
            background: #d4f5e3;
            color: #0d7a47;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 40px;
        }
        .cs-card-earn {
            bottom: 10%;
            right: -5%;
            border-radius: 40px;
            padding: 12px 22px;
            flex-direction: row;
            align-items: center;
            gap: 12px;
        }
        .cs-card-earn .cs-icon-box {
            width: 32px;
            height: 32px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            color: var(--secondary);
        }
        .cs-card-earn span {
            font-weight: 700;
            color: var(--secondary);
            font-size: 16px;
        }
        .cs-card-followers {
            bottom: 25%;
            left: -5%;
            border-radius: 40px;
            padding: 10px 16px 10px 12px;
            flex-direction: row;
            align-items: center;
            gap: 10px;
        }
        .cs-card-followers .cs-icon-box {
            width: 28px;
            height: 28px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--secondary);
        }
        .cs-card-followers span {
            font-weight: 600;
            color: var(--secondary);
            font-size: 13px;
        }
        @keyframes csFloatCard {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-12px); }
        }
        .cs-card-save { animation-delay: 0.8s; }
        .cs-card-earn { animation-delay: 2s; }
        .cs-card-followers { animation-delay: 1.2s; }
        .cs-trusted-by-row {
            position: relative;
            z-index: 5;
            padding-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px 60px;
        }
        .cs-trust-label {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
            margin-right: 10px;
        }
        .cs-logo-item {
            font-size: 18px;
            font-weight: 600;
            color: var(--secondary);
            opacity: 0.4;
            letter-spacing: -0.5px;
            transition: opacity 0.3s ease;
        }
        .cs-logo-item:hover { opacity: 0.8; }
        .cs-section-premium {
            padding: 6rem 0;
            position: relative;
        }
        .cs-section-premium-alt {
            background: #e1dbd6;
        }
        .cs-section-premium-dark {
            background: var(--secondary);
            color: var(--white);
        }
        .cs-section-premium-dark h2,
        .cs-section-premium-dark .cs-section-subtitle {
            color: var(--white);
        }
        .cs-section-badge {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 0.7rem;
            padding: 0.35rem 1.2rem;
            border-radius: 40px;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
            border: 1px solid rgba(240, 98, 35, 0.15);
            text-transform: uppercase;
        }
        .cs-section-badge-dark {
            background: rgba(255, 255, 255, 0.08);
            color: var(--primary-light);
            border-color: rgba(255, 255, 255, 0.06);
        }
        .cs-section-title {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 0.5rem;
        }
        .cs-section-title-white {
            color: var(--white);
        }
        .cs-section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 640px;
            line-height: 1.8;
        }
        .cs-section-subtitle-white {
            color: rgba(255, 255, 255, 0.6);
        }
        .cs-solutions-section {
            padding: 6rem 0;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        .cs-bg-animation {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }
        .cs-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
            animation: csOrbFloat 20s ease-in-out infinite alternate;
        }
        .cs-orb-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            right: -100px;
            background: var(--primary);
            animation-duration: 25s;
        }
        .cs-orb-2 {
            width: 300px;
            height: 300px;
            bottom: -50px;
            left: -50px;
            background: var(--primary-dark);
            animation-duration: 20s;
            animation-delay: 3s;
        }
        .cs-orb-3 {
            width: 250px;
            height: 250px;
            top: 40%;
            left: 30%;
            background: #f5a623;
            animation-duration: 18s;
            animation-delay: 5s;
        }
        .cs-dots {
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image: radial-gradient(circle, var(--secondary) 1px, transparent 1px);
            background-size: 30px 30px;
            animation: csDotPulse 8s ease-in-out infinite alternate;
        }
        @keyframes csOrbFloat {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, -30px) scale(1.1); }
        }
        @keyframes csDotPulse {
            0% { opacity: 0.03; }
            100% { opacity: 0.08; }
        }
        .cs-solutions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            position: relative;
            z-index: 1;
        }
        .cs-solution-card {
            position: relative;
            border-radius: 16px;
            padding: 2rem 1.8rem;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            overflow: hidden;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border: 1px solid rgba(240, 98, 35, 0.06);
            cursor: pointer;
        }
        .cs-solution-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 60px rgba(240, 98, 35, 0.15);
            border-color: var(--primary);
        }
        .cs-solution-card .cs-card-number {
            position: absolute;
            top: 1rem;
            right: 1.2rem;
            font-size: 3rem;
            font-weight: 900;
            color: rgba(44, 24, 16, 0.04);
            line-height: 1;
            transition: all 0.5s ease;
        }
        .cs-solution-card:hover .cs-card-number {
            color: rgba(240, 98, 35, 0.12);
            transform: scale(1.1);
        }
        .cs-solution-card .cs-card-icon {
            width: 48px;
            height: 48px;
            background: rgba(240, 98, 35, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 1rem;
            transition: all 0.5s ease;
        }
        .cs-solution-card:hover .cs-card-icon {
            background: var(--gradient-primary);
            color: var(--white);
            transform: scale(1.05);
        }
        .cs-solution-card .cs-curve-decoration {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(240, 98, 35, 0.04), transparent 70%);
            pointer-events: none;
            transition: all 0.8s ease;
        }
        .cs-solution-card:hover .cs-curve-decoration {
            transform: scale(1.5) translate(-10px, -10px);
            opacity: 0.5;
        }
        .cs-solution-card .cs-card-title {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
            color: var(--secondary);
        }
        .cs-solution-card .cs-card-desc {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 0;
            opacity: 0.85;
        }
        .cs-solution-card.cs-span-2 {
            grid-column: span 2;
        }
        .cs-solution-card.cs-bg-1 { background: var(--card-1); }
        .cs-solution-card.cs-bg-2 { background: var(--card-2); }
        .cs-solution-card.cs-bg-3 { background: var(--card-3); }
        .cs-solution-card.cs-bg-4 { background: var(--card-4); }
        .cs-solution-card.cs-bg-5 { background: var(--card-5); }
        .cs-solution-card.cs-bg-6 { background: var(--card-6); }
        .cs-solution-card.cs-bg-7 { background: var(--card-7); }
        .cs-solution-card.cs-bg-8 { background: var(--card-8); }
        .cs-solution-card.cs-bg-9 { background: var(--card-9); }
        .cs-tech-section-wrapper {
            position: relative;
            min-height: 650px;
            display: flex;
            align-items: center;
            padding: 60px 0;
            overflow: hidden;
            background: var(--bg-light);
        }
        .cs-tech-section-wrapper .cs-background-morph {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }
        .cs-tech-section-wrapper .cs-bg-curve {
            position: absolute;
            width: 150vw;
            height: 100vh;
            border-radius: 50%;
            opacity: 0.4;
            filter: blur(60px);
            will-change: transform;
        }
        .cs-tech-section-wrapper .cs-curve-1 {
            top: -50vh;
            left: -20vw;
            background: rgba(240, 98, 35, 0.08);
            animation: csMorphCurve1 18s ease-in-out infinite alternate;
        }
        .cs-tech-section-wrapper .cs-curve-2 {
            bottom: -60vh;
            right: -10vw;
            background: rgba(212, 85, 26, 0.06);
            animation: csMorphCurve2 22s ease-in-out infinite alternate;
        }
        .cs-tech-section-wrapper .cs-curve-3 {
            top: -40vh;
            right: -30vw;
            background: rgba(240, 98, 35, 0.04);
            animation: csMorphCurve3 15s ease-in-out infinite alternate;
        }
        @keyframes csMorphCurve1 {
            0% { transform: translate(0, 0) scale(1) rotate(0deg); }
            33% { transform: translate(10vw, 10vh) scale(1.2) rotate(5deg); }
            66% { transform: translate(-5vw, -5vh) scale(0.9) rotate(-3deg); }
            100% { transform: translate(15vw, -10vh) scale(1.1) rotate(8deg); }
        }
        @keyframes csMorphCurve2 {
            0% { transform: translate(0, 0) scale(1) rotate(0deg); }
            50% { transform: translate(-20vw, -15vh) scale(0.8) rotate(-10deg); }
            100% { transform: translate(10vw, 20vh) scale(1.3) rotate(5deg); }
        }
        @keyframes csMorphCurve3 {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-30vw, 15vh) scale(1.4) rotate(-15deg); }
        }
        .cs-tech-tabs-col {
            position: relative;
            z-index: 10;
            padding: 20px 0;
            padding-right: 40px;
        }
        .cs-tech-glass-strip {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .cs-tech-kinetic-tab {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 15px 25px;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            transform: translateX(0) scale(1);
            z-index: 1;
            overflow: hidden;
        }
        .cs-tech-kinetic-tab::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 15px;
            padding: 1px;
            background: conic-gradient(from var(--angle, 0deg), transparent, rgba(240, 98, 35, 0.4), transparent, rgba(212, 85, 26, 0.4), transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.6s ease;
            animation: csTechRotateBorder 6s linear infinite;
        }
        @keyframes csTechRotateBorder {
            to { --angle: 360deg; }
        }
        @property --angle {
            syntax: '<angle>';
            initial-value: 0deg;
            inherits: false;
        }
        .cs-tech-kinetic-tab.cs-active,
        .cs-tech-kinetic-tab:hover {
            transform: translateX(20px) scale(1.02);
            background: rgba(255, 255, 255, 0.95);
            border-color: transparent;
            box-shadow: var(--shadow-lg), 0 0 35px rgba(240, 98, 35, 0.15);
            z-index: 10;
        }
        .cs-tech-kinetic-tab.cs-active::before,
        .cs-tech-kinetic-tab:hover::before {
            opacity: 1;
        }
        .cs-tech-tab-marker {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%) scaleY(0);
            width: 5px;
            height: 60%;
            background: var(--gradient-primary);
            border-radius: 0 4px 4px 0;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 0 15px rgba(240, 98, 35, 0.3);
        }
        .cs-tech-kinetic-tab.cs-active .cs-tech-tab-marker,
        .cs-tech-kinetic-tab:hover .cs-tech-tab-marker {
            transform: translateY(-50%) scaleY(1);
        }
        .cs-tech-kinetic-tab h5 {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin: 0;
            color: var(--text-muted);
            transition: color 0.3s;
        }
        .cs-tech-kinetic-tab.cs-active h5,
        .cs-tech-kinetic-tab:hover h5 {
            color: var(--text);
        }
        .cs-tech-kinetic-tab p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin: 0;
            font-weight: 500;
            opacity: 0.7;
        }
        .cs-tech-showcase-col {
            position: relative;
            z-index: 5;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 550px;
        }
        .cs-tech-panels {
            position: relative;
            width: 100%;
            padding-left: 20px;
        }
        .cs-tech-orbit-panel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-wrap: wrap;
            align-content: flex-start;
            gap: 14px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }
        .cs-tech-orbit-panel.cs-active {
            position: relative;
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }
        .cs-tech-orb-with-desc {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: default;
            position: relative;
            margin-bottom: 20px;
        }
        .cs-tech-orb-with-desc:hover {
            transform: translateY(-4px) scale(1.02);
            background: #ffffff;
            border-color: transparent;
            box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.08), 0 0 25px rgba(240, 98, 35, 0.08);
        }
        .cs-tech-orb-with-desc .cs-orb-icon {
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(240, 98, 35, 0.08);
            border-radius: 50%;
            color: var(--primary);
            font-size: 0.9rem;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }
        .cs-tech-orb-with-desc:hover .cs-orb-icon {
            background: var(--gradient-primary);
            color: #fff;
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(240, 98, 35, 0.2);
        }
        .cs-tech-orb-with-desc .cs-orb-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text);
            min-width: 70px;
        }
        .cs-tech-orb-with-desc .cs-orb-name-title {
            display: block;
        }
        .cs-tech-orb-with-desc .cs-orb-label {
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: rgba(0, 0, 0, 0.20);
            padding: 2px 10px;
            border-radius: 20px;
            color: var(--text-muted);
            font-weight: 600;
            opacity: 0.7;
            flex-shrink: 0;
            position: absolute;
            top: -10px;
            right: 25px;
        }
        .cs-tech-orb-with-desc .cs-orb-desc {
            font-size: 0.75rem;
            color: var(--text-muted);
            opacity: 0.7;
            flex: 1;
            text-align: right;
            font-weight: 400;
        }
        .cs-tech-orb-with-desc:hover .cs-orb-label {
            background: var(--primary-light);
            color: var(--primary);
            opacity: 1;
        }
        .cs-service-card {
            background: #f6c5a8;
            border-radius: 90px;
            box-shadow: 0 15px 40px rgba(0,0,0,.08);
            padding: 22px;
            display: flex;
            align-items: center;
            gap: 18px;
            position: relative;
            margin: 28px 0;
            transition: .3s;
        }
        .cs-service-card:hover {
            transform: translateY(-6px);
        }
        .cs-service-card .cs-service-content {
            min-width: calc(100% - 90px);
        }
        .cs-service-card .cs-service-content h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
            color: var(--secondary);
        }
        .cs-service-card .cs-service-content p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 0;
            line-height: 1.5;
        }
        .cs-service-card .cs-icon {
            min-width: 84px !important;
            max-width: 84px !important;
            height: 84px !important;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: #361406;
            box-shadow: 0 8px 24px rgba(0,0,0,.12);
            font-size: 34px;
            color: #ffffff;
        }
        .cs-center {
            width: 320px;
            height: 320px;
            margin: auto;
            border-radius: 50%;
            background: #fff;
            border: 0px solid #eef4ff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 40px rgba(0,0,0,.12);
            position: relative;
        }
        .cs-center:before {
            content: "";
            position: absolute;
            inset: -15px;
            border: 2px dashed #2a1005;
            border-radius: 50%;
            animation: csSpin 18s linear infinite;
        }
        .cs-center img {
            max-width: 100%;
        }
        @keyframes csSpin {
            to { transform: rotate(360deg); }
        }
        .cs-left .cs-service-card,
        .cs-right .cs-service-card {
            margin-bottom: 30px;
        }
        .cs-tech-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            padding: 0.6rem 1.4rem;
            border-radius: 60px;
            font-weight: 500;
            font-size: 0.85rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            color: var(--text);
        }
        .cs-tech-pill:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            background: var(--primary-light);
        }
        .cs-tech-pill i {
            color: var(--primary);
        }
        .cs-tech-pill-dark {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.8);
        }
        .cs-tech-pill-dark:hover {
            background: rgba(240, 98, 35, 0.1);
            border-color: var(--primary);
            color: var(--white);
        }
        .cs-process-timeline-wrapper {
            position: relative;
            padding: 2rem 0;
        }
        .cs-process-timeline-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--primary-dark), var(--secondary));
            opacity: 0.15;
            border-radius: 4px;
        }
        .cs-process-step-premium {
            display: flex;
            align-items: flex-start;
            gap: 2.5rem;
            margin-bottom: 3.5rem;
            position: relative;
        }
        .cs-process-step-premium:last-child {
            margin-bottom: 0;
        }
        .cs-process-step-premium .cs-step-connector {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 8px 30px rgba(240, 98, 35, 0.25);
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }
        .cs-process-step-premium:hover .cs-step-connector {
            transform: scale(1.08);
            box-shadow: 0 12px 40px rgba(240, 98, 35, 0.35);
        }
        .cs-process-step-premium .cs-step-connector .cs-connector-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--primary-light);
            border-radius: 50%;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border: 2px solid var(--primary);
            opacity: 0.4;
        }
        .cs-process-step-premium .cs-step-content {
            flex: 1;
            padding-top: 0.5rem;
            background: var(--white);
            border-radius: var(--radius);
            padding: 2rem 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: all 0.4s ease;
            position: relative;
        }
        .cs-process-step-premium .cs-step-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            border-radius: 4px 4px 0 0;
        }
        .cs-process-step-premium:hover .cs-step-content::before {
            transform: scaleX(1);
        }
        .cs-process-step-premium:hover .cs-step-content {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }
        .cs-process-step-premium .cs-step-content .cs-step-icon {
            color: var(--primary);
            font-size: 1.4rem;
            margin-right: 0.75rem;
        }
        .cs-process-step-premium .cs-step-content h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
            color: var(--secondary);
        }
        .cs-process-step-premium .cs-step-content p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
        .cs-process-step-premium .cs-step-content .cs-step-meta {
            display: flex;
            gap: 1.5rem;
            margin-top: 0.8rem;
            padding-top: 0.8rem;
            border-top: 1px solid var(--border);
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .cs-process-step-premium .cs-step-content .cs-step-meta span {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .cs-process-step-premium .cs-step-content .cs-step-meta i {
            color: var(--primary);
            font-size: 0.7rem;
        }
        .cs-process-step-premium:nth-child(even) {
            flex-direction: row-reverse;
            text-align: right;
        }
        .cs-process-step-premium:nth-child(even) .cs-step-content::before {
            transform-origin: right;
        }
        .cs-process-step-premium:nth-child(even) .cs-step-content .cs-step-meta {
            justify-content: flex-end;
        }
        .cs-industry-card-with-desc {
            text-align: center;
            background: var(--white);
            border-radius: var(--radius-sm);
            padding: 1.8rem 1.2rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            height: 100%;
        }
        .cs-industry-card-with-desc:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .cs-industry-card-with-desc .cs-icon {
            font-size: 2rem;
            color: var(--primary);
            display: block;
            margin-bottom: 0.5rem;
        }
        .cs-industry-card-with-desc h6 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
            color: var(--secondary);
        }
        .cs-industry-card-with-desc p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 0;
        }
        .cs-card-soft {
            background: var(--white);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: all 0.4s ease;
            height: 100%;
        }
        .cs-card-soft:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }
        .cs-card-soft .cs-card-icon {
            width: 56px;
            height: 56px;
            background: var(--primary-light);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
        }
        .cs-card-soft .cs-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }
        .cs-card-soft .cs-card-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .cs-card-dark {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--white);
            transition: all 0.4s ease;
            height: 100%;
        }
        .cs-card-dark:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }
        .cs-card-dark .cs-card-icon {
            background: rgba(240, 98, 35, 0.15);
            color: var(--primary);
        }
        .cs-card-dark .cs-card-title {
            color: var(--white);
        }
        .cs-card-dark .cs-card-desc {
            color: rgba(255, 255, 255, 0.6);
        }
        .cs-faq-item {
            background: var(--white);
            border-radius: var(--radius-sm);
            padding: 1.2rem 1.8rem;
            margin-bottom: 0.8rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: var(--shadow);
        }
        .cs-faq-item:hover {
            border-color: var(--primary);
        }
        .cs-faq-question {
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .cs-faq-question i {
            color: var(--primary);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        .cs-faq-answer {
            margin-top: 0.75rem;
            color: var(--text-muted);
            display: none;
            line-height: 1.8;
        }
        .cs-faq-item.cs-active .cs-faq-answer {
            display: block;
        }
        .cs-cta-section {
            background: var(--gradient-hero);
            border-radius: var(--radius-xl);
            padding: 4rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cs-cta-bg {
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(circle, rgba(240,98,35,0.06), transparent 70%);
            pointer-events: none;
        }
        .cs-cta-title {
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--white);
            position: relative;
            z-index: 1;
        }
        .cs-cta-title .cs-gradient-text {
            color: var(--primary);
        }
        .cs-cta-sub {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.15rem;
            max-width: 600px;
            margin: 1rem auto 2rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        .cs-cta-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .cs-btn-primary-custom {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            box-shadow: 0 8px 32px rgba(240,98,35,0.25);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .cs-btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(240,98,35,0.35);
            color: var(--white);
        }
        .cs-btn-outline-light {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .cs-btn-outline-light:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--white);
            color: var(--white);
        }
        .cs-footer-premium {
            background: var(--secondary);
            padding: 3rem 0;
            color: rgba(255,255,255,0.4);
        }
        .cs-footer-brand {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
        }
        .cs-footer-brand span {
            color: var(--primary);
        }
        .cs-footer-links {
            display: flex;
            gap: 1.5rem;
            justify-content: flex-end;
            flex-wrap: wrap;
        }
        .cs-footer-links a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .cs-footer-links a:hover {
            color: var(--white);
        }
        .cs-reveal {
            opacity: 1;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .cs-reveal.cs-visible {
            opacity: 1;
            transform: translateY(0);
        }
        .cs-reveal-stagger > * {
            opacity: 1;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .cs-open-source {
            background: radial-gradient(ellipse 260px 180px at 110% 110%, #eef3f8 0%, #eef3f8 35%, transparent 36%), radial-gradient(ellipse 160px 120px at 92% 92%, #f8fafd 0%, #f8fafd 45%, transparent 46%), linear-gradient(145deg, transparent 65%, rgba(240, 245, 250, .6) 100%), #fff;
        }
        .cs-z-index-10 {
            z-index: 10;
        }
        @media (max-width: 1200px) {
            .cs-hero-headline { font-size: 3.5rem; }
        }
        @media (max-width: 992px) {
            .cs-container-wrapper { padding: 0 20px; }
            .cs-hero-row { flex-direction: column-reverse; gap: 40px; }
            .cs-content-col { padding-right: 0; text-align: center; align-items: center; display: flex; flex-direction: column; }
            .cs-hero-headline { font-size: 3.2rem; }
            .cs-hero-subtitle { max-width: 100%; }
            .cs-trust-badge { margin-left: auto; margin-right: auto; }
            .cs-hero-actions { justify-content: center; }
            .cs-image-col { min-height: 400px; }
            .cs-hero-image-wrapper { max-width: 450px; }
            .cs-card-credit { top: -10%; left: 5%; }
            .cs-card-save { top: 5%; right: 5%; }
            .cs-card-earn { bottom: 5%; right: 5%; }
            .cs-card-followers { bottom: 10%; left: 5%; }
            .cs-trusted-by-row { gap: 20px 30px; }
            .cs-hero-section { border-radius: 0 0 40px 40px; }
            .cs-process-timeline-wrapper::before {
                left: 28px;
            }
            .cs-process-step-premium {
                flex-direction: row !important;
                text-align: left !important;
                padding-left: 60px;
            }
            .cs-process-step-premium .cs-step-connector {
                position: absolute;
                left: 0;
                top: 0;
                width: 48px;
                height: 48px;
                font-size: 0.9rem;
            }
            .cs-process-step-premium .cs-step-connector .cs-connector-dot {
                display: none;
            }
            .cs-process-step-premium:nth-child(even) .cs-step-content .cs-step-meta {
                justify-content: flex-start;
            }
            .cs-process-step-premium .cs-step-content {
                padding: 1.5rem 1.8rem;
            }
            .cs-tech-kinetic-tab {
                min-width: 200px;
                flex-shrink: 0;
                padding: 18px 22px;
            }
            .cs-tech-kinetic-tab:hover,
            .cs-tech-kinetic-tab.cs-active {
                transform: scale(1.02) translateY(-4px);
            }
            .cs-tech-tab-marker {
                display: none;
            }
            .cs-solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cs-solution-card.cs-span-2 {
                grid-column: span 1;
            }
            .cs-center {
                margin: 40px auto;
            }
        }
        @media (max-width: 768px) {
            .cs-hero-section { padding: 40px 0 20px 0; min-height: auto; }
            .cs-hero-headline { font-size: 2.8rem; letter-spacing: -1px; }
            .cs-btn-cta, .cs-btn-outline-hero { width: 100%; justify-content: center; padding: 16px 24px; }
            .cs-hero-actions { flex-direction: column; width: 100%; }
            .cs-image-col { min-height: 300px; padding: 0; }
            .cs-hero-image-wrapper { max-width: 350px; }
            .cs-trusted-by-row { flex-direction: column; gap: 15px; }
            .cs-card-credit h6 { font-size: 16px; }
            .cs-card-followers { display: none; }
            .cs-card-earn { bottom: 0; right: 0; padding: 10px 16px; }
            .cs-card-save { top: 0; right: 0; padding: 10px 16px; }
            .cs-process-step-premium .cs-step-content {
                padding: 1.2rem 1.5rem;
            }
            .cs-process-step-premium .cs-step-content .cs-step-meta {
                flex-wrap: wrap;
                gap: 0.8rem;
            }
            .cs-tech-orb-with-desc .cs-orb-desc {
                display: none;
            }
            .cs-tech-orb-with-desc {
                padding: 8px 14px 8px 12px;
            }
            .cs-tech-orb-with-desc .cs-orb-name {
                font-size: 0.75rem;
                min-width: 50px;
            }
            .cs-solutions-grid {
                grid-template-columns: 1fr;
            }
            .cs-cta-section {
                padding: 2.5rem 1.5rem;
            }
            .cs-footer-links {
                justify-content: center;
                margin-top: 1rem;
            }
        }
        @media (max-width: 576px) {
            .cs-hero-headline { font-size: 2.2rem; }
            .cs-hero-image-wrapper { max-width: 280px; }
            .cs-badge-text { font-size: 12px; }
            .cs-container-wrapper { padding: 0 16px; }
            .cs-card-credit { display: none; }
            .cs-card-save { display: none; }
            .cs-card-earn { display: none; }
            .cs-card-followers { display: none; }
            .cs-process-step-premium {
                padding-left: 0;
            }
            .cs-process-timeline-wrapper::before {
                display: none;
            }
            .cs-process-step-premium .cs-step-connector {
                position: relative;
                margin-bottom: 1rem;
                width: 44px;
                height: 44px;
                font-size: 0.8rem;
            }
            .cs-process-step-premium {
                flex-direction: column !important;
                align-items: center;
                text-align: center !important;
            }
            .cs-process-step-premium .cs-step-content .cs-step-meta {
                justify-content: center !important;
            }
            .cs-tech-orb-with-desc .cs-orb-desc {
                display: none;
            }
            .cs-tech-orb-with-desc .cs-orb-label {
                display: none;
            }
            .cs-service-card {
                flex-direction: column;
                text-align: center;
                border-radius: 40px;
                padding: 30px 20px;
            }
            .cs-service-card .cs-service-content {
                min-width: 100%;
            }
            .cs-service-card .cs-icon {
                min-width: 70px !important;
                max-width: 70px !important;
                height: 70px !important;
                font-size: 28px;
            }
        }