/* CRM Page CSS */
:root {
    --crm-blue: #001f3f;
    --crm-accent: #0d4d4d;
    --crm-light: #faf8f5;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--crm-blue);
}

.crm-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 76px;
}

.crm-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

.crm-section {
    padding: 80px 0;
}

.light-bg {
    background-color: var(--crm-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--crm-accent);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-top: 15px;
    color: var(--crm-accent);
}

.crm-list {
    list-style: none;
    padding: 0;
}

.crm-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.crm-list li::before {
    content: "✓";
    color: var(--crm-accent);
    margin-right: 15px;
    font-weight: bold;
}

.usecase-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.usecase-grid > div {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.usecase-grid h4 {
    color: var(--crm-blue);
    font-weight: bold;
    margin-bottom: 15px;
}

.crm-cta {
    background: linear-gradient(135deg, var(--crm-blue) 0%, var(--crm-accent) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.crm-cta h2 {
    color: white;
}

.btn-crm {
    background: white;
    color: var(--crm-blue);
    padding: 15px 40px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    display: inline-block;
}
