
        .crms-hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            overflow: hidden;
        }

        .crms-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.pexels.com/photos/8386440/pexels-photo-8386440.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
            opacity: 0.15;
            z-index: 1;
        }

        .crms-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 60px 20px;
        }

        .crms-hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 30px;
            text-shadow: 2px 4px 20px rgba(0,0,0,0.3);
            animation: crms-fadeInUp 1s ease-out;
        }

        .crms-hero-subtitle {
            font-size: 1.3rem;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto 40px;
            font-weight: 300;
            opacity: 0.95;
            animation: crms-fadeInUp 1.2s ease-out;
        }

        .crms-stats-box {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 25px 40px;
            border-radius: 20px;
            margin: 20px;
            border: 1px solid rgba(255,255,255,0.3);
            animation: crms-fadeInUp 1.4s ease-out;
        }

        .crms-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
            font-family: 'Space Grotesk', sans-serif;
        }

        .crms-stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .crms-framework-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
        }

        .crms-section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .crms-section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 800px;
            margin: 0 auto 80px;
            line-height: 1.8;
        }

        .crms-step-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
            border: 2px solid #e8f0fe;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .crms-step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
        }

        .crms-step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
        }

        .crms-step-number {
            display: inline-block;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 16px;
            text-align: center;
            line-height: 60px;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .crms-step-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2d3748;
            font-family: 'Space Grotesk', sans-serif;
        }

        .crms-step-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #4a5568;
        }

        .crms-services-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
        }

        .crms-service-card {
            background: white;
            border-radius: 24px;
            padding: 50px 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
            border: 2px solid #e8f0fe;
            transition: all 0.4s ease;
            height: 100%;
        }

        .crms-service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
            border-color: #667eea;
        }

        .crms-service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2rem;
        }

        .crms-service-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #2d3748;
            font-family: 'Space Grotesk', sans-serif;
        }

        .crms-service-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #4a5568;
            margin-bottom: 25px;
        }

        .crms-capability-list {
            list-style: none;
            padding: 0;
        }

        .crms-capability-item {
            padding: 12px 0;
            border-bottom: 1px solid #e8f0fe;
            color: #2d3748;
            font-weight: 600;
            position: relative;
            padding-left: 30px;
        }

        .crms-capability-item::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: 700;
        }

        .crms-industry-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            overflow: hidden;
        }

        .crms-industry-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.pexels.com/photos/3861969/pexels-photo-3861969.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
            opacity: 0.1;
        }

        .crms-industry-content {
            position: relative;
            z-index: 2;
        }

        .crms-industry-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 80px;
            color: white;
        }

        .crms-industry-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 30px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s ease;
        }

        .crms-industry-card:hover {
            background: white;
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .crms-industry-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2d3748;
            font-family: 'Space Grotesk', sans-serif;
        }

        .crms-industry-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #4a5568;
        }

        .crms-capabilities-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
        }

        .crms-capability-card {
            background: white;
            border-radius: 24px;
            padding: 45px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
            border: 2px solid #e8f0fe;
            transition: all 0.4s ease;
        }

        .crms-capability-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
            border-color: #667eea;
        }

        .crms-capability-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #2d3748;
            font-family: 'Space Grotesk', sans-serif;
            display: flex;
            align-items: center;
        }

        .crms-capability-icon-small {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.5rem;
        }

        .crms-why-choose-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
        }

        .crms-reason-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            margin-bottom: 30px;
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.1);
            border: 2px solid #e8f0fe;
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
        }

        .crms-reason-card:hover {
            transform: translateX(10px);
            border-color: #667eea;
            box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
        }

        .crms-check-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
        }

        .crms-reason-content {
            flex: 1;
        }

        .crms-reason-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #2d3748;
            font-family: 'Space Grotesk', sans-serif;
        }

        .crms-reason-description {
            font-size: 1rem;
            line-height: 1.7;
            color: #4a5568;
        }

        .crms-cta-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            overflow: hidden;
        }

        .crms-cta-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.pexels.com/photos/3861969/pexels-photo-3861969.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
            opacity: 0.1;
        }

        .crms-cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .crms-cta-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .crms-cta-subtitle {
            font-size: 1.3rem;
            margin-bottom: 50px;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .crms-cta-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .crms-cta-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 40px 35px;
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            transition: all 0.4s ease;
        }

        .crms-cta-card:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .crms-cta-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .crms-cta-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .crms-cta-card-description {
            font-size: 1rem;
            line-height: 1.7;
            opacity: 0.95;
        }

        .crms-final-cta {
            font-size: 1.4rem;
            line-height: 1.8;
            max-width: 900px;
            margin: 60px auto 0;
            padding: 40px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
        }

        .crms-parallax-layer {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .crms-float-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .crms-shape-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation: crms-float 6s ease-in-out infinite;
        }

        .crms-shape-2 {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 10%;
            animation: crms-float 8s ease-in-out infinite;
            animation-delay: 1s;
        }

        .crms-shape-3 {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 15%;
            animation: crms-float 7s ease-in-out infinite;
            animation-delay: 2s;
        }

        @keyframes crms-float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        @keyframes crms-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .crms-hero-title {
                font-size: 2.5rem;
            }
            .crms-section-title {
                font-size: 2rem;
            }
            .crms-stats-box {
                margin: 10px;
                padding: 20px 30px;
            }
        }