  .cmsp-hero-section {
      position: relative;
      min-height: 90vh;
      background: var(--gradient-dark);
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .cmsp-hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.1;
      background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.03) 2px, rgba(255,255,255,.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,.03) 2px, rgba(255,255,255,.03) 4px);
      animation: cmsp-grid-move 20s linear infinite;
    }

    @keyframes cmsp-grid-move {
      0% { transform: translate(0, 0); }
      100% { transform: translate(50px, 50px); }
    }

    .cmsp-hero-content {
      position: relative;
      z-index: 2;
      color: white;
    }

    .cmsp-hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: var(--spacing-md);
      background: linear-gradient(135deg, #ffffff 0%, #00c896 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cmsp-hero-subtitle {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: var(--spacing-lg);
      line-height: 1.8;
    }

    .cmsp-floating-phones {
      position: relative;
      height: 600px;
      perspective: 1000px;
    }

    .cmsp-phone-mockup {
      position: absolute;
      width: 250px;
      height: 500px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 40px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
      transform-style: preserve-3d;
      animation: cmsp-float 6s ease-in-out infinite;
      padding: 15px;
    }

    .cmsp-phone-mockup::before {
      content: '';
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 6px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 3px;
    }

    .cmsp-phone-screen {
      width: 100%;
      height: 100%;
      background: white;
      border-radius: 30px;
      overflow: hidden;
      position: relative;
    }

    .cmsp-phone-1 {
      top: 10%;
      left: 10%;
      animation-delay: 0s;
      background: linear-gradient(135deg, #0066cc 0%, #00c896 100%);
    }

    .cmsp-phone-2 {
      top: 30%;
      right: 15%;
      animation-delay: 2s;
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      transform: rotateY(-15deg) rotateX(5deg);
    }

    .cmsp-phone-3 {
      bottom: 10%;
      left: 30%;
      animation-delay: 4s;
      background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      transform: rotateY(15deg) rotateX(-5deg);
    }

    @keyframes cmsp-float {
      0%, 100% { transform: translateY(0) rotateY(0deg); }
      50% { transform: translateY(-30px) rotateY(10deg); }
    }

    .cmsp-section {
      padding: var(--spacing-2xl) 0;
      position: relative;
    }

    .cmsp-section-title {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: var(--spacing-sm);
      color: var(--text-dark);
    }

    .cmsp-section-subtitle {
      text-align: center;
      color: var(--text-light);
      font-size: 1.125rem;
      margin-bottom: var(--spacing-xl);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .cmsp-service-card {
      background: white;
      border-radius: 20px;
      padding: var(--spacing-lg);
      box-shadow: var(--shadow-md);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      height: 100%;
      border: 1px solid var(--border-color);
      position: relative;
      overflow: hidden;
    }

    .cmsp-service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--gradient-primary);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .cmsp-service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

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

    .cmsp-service-icon {
      width: 80px;
      height: 80px;
      background: var(--gradient-primary);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--spacing-md);
      font-size: 2rem;
      color: white;
      transition: all 0.4s ease;
      transform-style: preserve-3d;
    }

    .cmsp-service-card:hover .cmsp-service-icon {
      transform: rotateY(360deg);
    }

    .cmsp-service-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: var(--spacing-sm);
      color: var(--text-dark);
    }

    .cmsp-service-description {
      color: var(--text-medium);
      line-height: 1.7;
    }

    .cmsp-tech-section {
      background: var(--background-light);
    }

    .cmsp-tech-category {
      background: white;
      border-radius: 20px;
      padding: var(--spacing-lg);
      margin-bottom: var(--spacing-md);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }

    .cmsp-tech-category:hover {
      box-shadow: var(--shadow-md);
      transform: translateX(10px);
    }

    .cmsp-tech-category-title {
      font-size: 1.75rem;
      font-weight: 600;
      margin-bottom: var(--spacing-md);
      color: var(--primary-color);
      display: flex;
      align-items: center;
      gap: var(--spacing-sm);
    }

    .cmsp-tech-item {
      display: inline-flex;
      align-items: center;
      gap: var(--spacing-xs);
      background: var(--background-light);
      padding: var(--spacing-xs) var(--spacing-sm);
      border-radius: 25px;
      margin: 5px;
      font-weight: 500;
      color: var(--text-dark);
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .cmsp-tech-item:hover {
      background: var(--gradient-primary);
      color: white;
      transform: scale(1.05);
      border-color: var(--primary-color);
    }

    .cmsp-tech-item i {
      font-size: 1.2rem;
    }

    .cmsp-platform-showcase {
      background: var(--gradient-dark);
      color: white;
    }

    .cmsp-platform-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      height: 400px;
      cursor: pointer;
      transition: all 0.5s ease;
    }

    .cmsp-platform-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 200, 150, 0.9) 100%);
      z-index: 1;
      transition: all 0.5s ease;
    }

    .cmsp-platform-card:hover::before {
      background: linear-gradient(135deg, rgba(0, 102, 204, 0.7) 0%, rgba(0, 200, 150, 0.7) 100%);
    }

    .cmsp-platform-card:hover {
      transform: scale(1.05) rotateY(5deg);
    }

    .cmsp-platform-content {
      position: relative;
      z-index: 2;
      padding: var(--spacing-lg);
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .cmsp-platform-icon {
      font-size: 5rem;
      margin-bottom: var(--spacing-md);
      filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    }

    .cmsp-platform-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: var(--spacing-sm);
    }

    .cmsp-cta-section {
      background: var(--gradient-primary);
      color: white;
      text-align: center;
      padding: var(--spacing-2xl) 0;
      position: relative;
      overflow: hidden;
    }

    .cmsp-cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
      );
      animation: cmsp-cta-bg-move 20s linear infinite;
    }

    @keyframes cmsp-cta-bg-move {
      0% { transform: translate(0, 0); }
      100% { transform: translate(50px, 50px); }
    }

    .cmsp-cta-content {
      position: relative;
      z-index: 2;
    }

    .cmsp-cta-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: var(--spacing-md);
    }

    .cmsp-cta-text {
      font-size: 1.25rem;
      margin-bottom: var(--spacing-lg);
      opacity: 0.9;
    }

    .cmsp-btn-primary {
      background: white;
      color: var(--primary-color);
      padding: var(--spacing-sm) var(--spacing-lg);
      border-radius: 50px;
      font-weight: 600;
      border: none;
      font-size: 1.125rem;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      text-decoration: none;
      display: inline-block;
    }

    .cmsp-btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
      color: var(--primary-dark);
    }

    .cmsp-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--spacing-md);
      margin-top: var(--spacing-xl);
    }

    .cmsp-feature-item {
      background: white;
      padding: var(--spacing-md);
      border-radius: 15px;
      box-shadow: var(--shadow-sm);
      display: flex;
      gap: var(--spacing-sm);
      transition: all 0.3s ease;
      border-left: 4px solid var(--primary-color);
    }

    .cmsp-feature-item:hover {
      transform: translateX(10px);
      box-shadow: var(--shadow-md);
    }

    .cmsp-feature-icon {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      background: var(--gradient-primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
    }

    .cmsp-feature-text h4 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: var(--spacing-xs);
      color: var(--text-dark);
    }

    .cmsp-feature-text p {
      color: var(--text-medium);
      margin: 0;
      font-size: 0.95rem;
    }

    .cmsp-stats-section {
      background: var(--background-light);
      padding: var(--spacing-xl) 0;
    }

    .cmsp-stat-card {
      text-align: center;
      padding: var(--spacing-lg);
    }

    .cmsp-stat-number {
      font-size: 3rem;
      font-weight: 700;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: var(--spacing-xs);
    }

    .cmsp-stat-label {
      color: var(--text-medium);
      font-size: 1.125rem;
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .cmsp-hero-title {
        font-size: 2rem;
      }

      .cmsp-hero-subtitle {
        font-size: 1rem;
      }

      .cmsp-floating-phones {
        height: 400px;
      }

      .cmsp-phone-mockup {
        width: 150px;
        height: 300px;
      }

      .cmsp-section-title {
        font-size: 1.75rem;
      }

      .cmsp-cta-title {
        font-size: 1.75rem;
      }
    }

    .cmsp-scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
    }

    .cmsp-scroll-indicator i {
      font-size: 2rem;
      color: white;
      animation: cmsp-bounce 2s infinite;
    }

    @keyframes cmsp-bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(-20px); }
      60% { transform: translateY(-10px); }
    }