.dk-crm-public-wrap {
    max-width: 1200px;
    margin: 40px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.dk-crm-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.dk-crm-service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid #f0f2f5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.dk-crm-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 61, 58, 0.12);
    border-color: rgba(15, 61, 58, 0.2);
}

.dk-crm-card-header {
    margin-bottom: 20px;
}

.dk-crm-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px;
}

.dk-crm-card-price {
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.dk-crm-price-value {
    font-size: 48px;
    font-weight: 800;
    color: #0f3d3a;
    display: block;
    line-height: 1;
}

.dk-crm-price-cycle {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    display: block;
}

.dk-crm-card-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.dk-crm-card-btn {
    padding: 14px 24px;
    background: #f8fafc;
    color: #0f3d3a;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.dk-crm-service-card:hover .dk-crm-card-btn {
    background: #0f3d3a;
    color: white;
    border-color: #0f3d3a;
}

.dk-crm-subscribe-section {
    max-width: 700px;
    margin: 0 auto;
}

.dk-crm-subscribe-form {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    border: 1px solid #f0f2f5;
}

.dk-crm-form-header {
    margin-bottom: 30px;
    text-align: center;
}

.dk-crm-form-header h2 {
    font-size: 28px;
    color: #1e293b;
    margin: 0 0 10px;
    font-weight: 700;
}

.dk-crm-form-header p {
    color: #64748b;
    margin: 0;
}

.dk-crm-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dk-crm-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dk-crm-form-group.is-full {
    grid-column: span 2;
}

.dk-crm-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.dk-crm-form-group input,
.dk-crm-form-group select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s ease;
    outline: none;
    background: #f8fafc;
}

.dk-crm-form-group input:focus,
.dk-crm-form-group select:focus {
    border-color: #0f3d3a;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(15, 61, 58, 0.1);
}

.dk-crm-form-footer {
    margin-top: 30px;
}

.dk-crm-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0f3d3a 0%, #1a5c57 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dk-crm-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 61, 58, 0.3);
}

.dk-crm-alert {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-weight: 500;
}

.dk-crm-alert.is-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

@media (max-width: 600px) {
    .dk-crm-form-grid {
        grid-template-columns: 1fr;
    }
    .dk-crm-form-group.is-full {
        grid-column: span 1;
    }
    .dk-crm-subscribe-form {
        padding: 24px;
    }
}
