
.crms-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.crms-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f1e 100%);
}

.crms-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 149, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.08) 0%, transparent 60%);
    animation: crms-float 20s ease-in-out infinite;
}

@keyframes crms-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.crms-hero-container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.crms-icon-wrapper {
    margin-bottom: 30px;
    animation: crms-bounce 2s infinite;
}

@keyframes crms-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.crms-analytics-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(0, 149, 255, 0.6));
}

.crms-main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #00d4ff 0%, #0095ff 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    animation: crms-gradient-shift 3s ease infinite;
    background-size: 200% auto;
}

@keyframes crms-gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.crms-subtitle-wrapper {
    margin-bottom: 30px;
}

.crms-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00d4ff;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.crms-hero-description {
    font-size: 1.125rem;
    color: #b8b8b8;
    margin-bottom: 40px;
    line-height: 1.8;
}

.crms-brand {
    color: #00d4ff;
    font-weight: 700;
}

.crms-cta-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #0095ff 0%, #00d4ff 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 149, 255, 0.4);
    position: relative;
    overflow: hidden;
}

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

.crms-cta-btn:hover::before {
    left: 100%;
}

.crms-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 149, 255, 0.6);
}

.crms-hero-visual {
    position: relative;
}

.crms-floating-card {
    position: relative;
    animation: crms-float-card 6s ease-in-out infinite;
}

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

.crms-hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 149, 255, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

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

.crms-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #00d4ff;
    border-radius: 20px;
    position: relative;
    animation: crms-scroll-animation 2s infinite;
}

.crms-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #00d4ff;
    border-radius: 2px;
    animation: crms-mouse-scroll 2s infinite;
}

@keyframes crms-mouse-scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.crms-pain-points-section {
    position: relative;
    padding: 120px 0;
    background: #0a0a0a;
}

.crms-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 149, 255, 0.05) 0%, transparent 40%);
}

.crms-pain-container {
    position: relative;
    z-index: 2;
}

.crms-section-header {
    margin-bottom: 80px;
}

.crms-section-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 30px;
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
}

.crms-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.crms-section-subtitle {
    font-size: 1.25rem;
    color: #b8b8b8;
}

.crms-pain-grid {
    gap: 30px 0;
}

.crms-pain-col {
    margin-bottom: 30px;
}

.crms-pain-card {
    position: relative;
    padding: 40px 35px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 46, 0.6) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
}

.crms-pain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 149, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.crms-pain-card:hover .crms-pain-overlay {
    opacity: 1;
}

.crms-pain-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 149, 255, 0.3);
}

.crms-pain-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.crms-pain-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.crms-pain-description {
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.crms-tools-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #12121c 50%, #0a0a0a 100%);
}

.crms-tools-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 20%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(0, 149, 255, 0.06) 0%, transparent 50%);
}

.crms-tools-container {
    position: relative;
    z-index: 2;
}

.crms-tools-grid {
    gap: 30px 0;
}

.crms-tool-category-col {
    margin-bottom: 30px;
}

.crms-tool-category-card {
    position: relative;
    padding: 45px 40px;
    background: rgba(15, 15, 30, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 25px;
    height: 100%;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.crms-tool-category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 25px 70px rgba(0, 149, 255, 0.2);
}

.crms-tool-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.crms-tool-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.crms-tool-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin: 0;
}

.crms-tool-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.crms-tool-item {
    padding: 12px 0;
    padding-left: 30px;
    color: #e0e0e0;
    font-size: 1.05rem;
    position: relative;
    transition: all 0.3s ease;
}

.crms-tool-item::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    transition: all 0.3s ease;
}

.crms-tool-item:hover {
    color: #00d4ff;
    padding-left: 40px;
}

.crms-tool-item:hover::before {
    left: 10px;
}

.crms-tool-visual {
    margin-top: 25px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.crms-tool-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.crms-tool-category-card:hover .crms-tool-img {
    transform: scale(1.05);
}

.crms-tool-category-card.crms-full-width {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.9) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.crms-horizontal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.crms-horizontal-list .crms-tool-item {
    flex: 0 1 calc(25% - 20px);
    padding: 15px 20px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    text-align: center;
}

.crms-horizontal-list .crms-tool-item::before {
    display: none;
}

.crms-why-choose-section {
    position: relative;
    padding: 120px 0;
    background: #000000;
}

.crms-why-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 149, 255, 0.06) 0%, transparent 50%);
}

.crms-why-container {
    position: relative;
    z-index: 2;
}

.crms-why-grid {
    margin-top: 60px;
}

.crms-why-col {
    margin-bottom: 30px;
}

.crms-why-card {
    position: relative;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(15, 15, 30, 0.8) 100%);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.crms-why-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 25px 70px rgba(0, 149, 255, 0.4);
}

.crms-why-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.crms-why-icon-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 149, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    animation: crms-pulse 2s ease-in-out infinite;
}

@keyframes crms-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.crms-why-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 800;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.crms-why-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.crms-why-description {
    font-size: 1rem;
    color: #b8b8b8;
}

.crms-cta-section {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.crms-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
}

.crms-cta-container {
    position: relative;
    z-index: 2;
}

.crms-cta-content {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.8) 0%, rgba(26, 26, 46, 0.7) 100%);
    padding: 80px 60px;
    border-radius: 30px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 30px 90px rgba(0, 149, 255, 0.3);
}

.crms-cta-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.6));
}

.crms-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crms-cta-description {
    font-size: 1.25rem;
    color: #d0d0d0;
    margin-bottom: 45px;
    line-height: 1.8;
}

.crms-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.crms-btn {
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
}

.crms-btn-primary {
    background: linear-gradient(135deg, #0095ff 0%, #00d4ff 100%);
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 149, 255, 0.4);
}

.crms-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 149, 255, 0.6);
}

.crms-btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.crms-btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 149, 255, 0.3);
}

@media (max-width: 992px) {
    .crms-main-heading {
        font-size: 2.5rem;
    }

    .crms-section-title {
        font-size: 2.25rem;
    }

    .crms-cta-title {
        font-size: 2.25rem;
    }

    .crms-cta-content {
        padding: 60px 40px;
    }

    .crms-horizontal-list .crms-tool-item {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .crms-main-heading {
        font-size: 2rem;
    }

    .crms-section-title {
        font-size: 1.85rem;
    }

    .crms-cta-title {
        font-size: 1.85rem;
    }

    .crms-hero-section {
        padding: 80px 0;
    }

    .crms-pain-points-section,
    .crms-tools-section,
    .crms-why-choose-section {
        padding: 80px 0;
    }

    .crms-cta-section {
        padding: 100px 0;
    }

    .crms-cta-content {
        padding: 50px 30px;
    }

    .crms-cta-buttons {
        flex-direction: column;
    }

    .crms-btn {
        width: 100%;
        text-align: center;
    }

    .crms-horizontal-list .crms-tool-item {
        flex: 0 1 100%;
    }

    .crms-hero-visual {
        margin-top: 50px;
    }
}